ya-tagscript 1.3.0__tar.gz → 1.3.2__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {ya_tagscript-1.3.0 → ya_tagscript-1.3.2}/CHANGELOG.md +12 -0
- {ya_tagscript-1.3.0 → ya_tagscript-1.3.2}/PKG-INFO +3 -3
- {ya_tagscript-1.3.0 → ya_tagscript-1.3.2}/README.md +2 -2
- {ya_tagscript-1.3.0 → ya_tagscript-1.3.2}/docs/conf.py +1 -1
- {ya_tagscript-1.3.0 → ya_tagscript-1.3.2}/make_release.py +2 -1
- {ya_tagscript-1.3.0 → ya_tagscript-1.3.2}/pyproject.toml +1 -1
- {ya_tagscript-1.3.0 → ya_tagscript-1.3.2}/src/ya_tagscript/blocks/discord/embed_block.py +3 -3
- {ya_tagscript-1.3.0 → ya_tagscript-1.3.2}/src/ya_tagscript/blocks/math/math_block.py +1 -1
- {ya_tagscript-1.3.0 → ya_tagscript-1.3.2}/src/ya_tagscript/blocks/strings/python_block.py +1 -1
- {ya_tagscript-1.3.0 → ya_tagscript-1.3.2}/tests/ya_tagscript/blocks/math/test_math_block.py +8 -0
- {ya_tagscript-1.3.0 → ya_tagscript-1.3.2}/uv.lock +1 -1
- {ya_tagscript-1.3.0 → ya_tagscript-1.3.2}/.github/workflows/black.yml +0 -0
- {ya_tagscript-1.3.0 → ya_tagscript-1.3.2}/.github/workflows/publish.yml +0 -0
- {ya_tagscript-1.3.0 → ya_tagscript-1.3.2}/.github/workflows/test.yml +0 -0
- {ya_tagscript-1.3.0 → ya_tagscript-1.3.2}/.gitignore +0 -0
- {ya_tagscript-1.3.0 → ya_tagscript-1.3.2}/.pre-commit-config.yaml +0 -0
- {ya_tagscript-1.3.0 → ya_tagscript-1.3.2}/.python-version +0 -0
- {ya_tagscript-1.3.0 → ya_tagscript-1.3.2}/.readthedocs.yaml +0 -0
- {ya_tagscript-1.3.0 → ya_tagscript-1.3.2}/LICENSE.md +0 -0
- {ya_tagscript-1.3.0 → ya_tagscript-1.3.2}/docs/Makefile +0 -0
- {ya_tagscript-1.3.0 → ya_tagscript-1.3.2}/docs/_ext/glossary_backlink_checker.py +0 -0
- {ya_tagscript-1.3.0 → ya_tagscript-1.3.2}/docs/_ext/styled_list_directive.py +0 -0
- {ya_tagscript-1.3.0 → ya_tagscript-1.3.2}/docs/adapters.rst +0 -0
- {ya_tagscript-1.3.0 → ya_tagscript-1.3.2}/docs/blocks.rst +0 -0
- {ya_tagscript-1.3.0 → ya_tagscript-1.3.2}/docs/changelog.rst +0 -0
- {ya_tagscript-1.3.0 → ya_tagscript-1.3.2}/docs/code_examples/adapters/int_adapter_example.py +0 -0
- {ya_tagscript-1.3.0 → ya_tagscript-1.3.2}/docs/code_examples/adapters/member_adapter_example.py +0 -0
- {ya_tagscript-1.3.0 → ya_tagscript-1.3.2}/docs/code_examples/nested_blocks_example.py +0 -0
- {ya_tagscript-1.3.0 → ya_tagscript-1.3.2}/docs/code_examples/quickstart_example.py +0 -0
- {ya_tagscript-1.3.0 → ya_tagscript-1.3.2}/docs/credits.rst +0 -0
- {ya_tagscript-1.3.0 → ya_tagscript-1.3.2}/docs/exceptions.rst +0 -0
- {ya_tagscript-1.3.0 → ya_tagscript-1.3.2}/docs/glossary.rst +0 -0
- {ya_tagscript-1.3.0 → ya_tagscript-1.3.2}/docs/index.rst +0 -0
- {ya_tagscript-1.3.0 → ya_tagscript-1.3.2}/docs/interfaces.rst +0 -0
- {ya_tagscript-1.3.0 → ya_tagscript-1.3.2}/docs/interpreter.rst +0 -0
- {ya_tagscript-1.3.0 → ya_tagscript-1.3.2}/docs/intro.rst +0 -0
- {ya_tagscript-1.3.0 → ya_tagscript-1.3.2}/docs/make.bat +0 -0
- {ya_tagscript-1.3.0 → ya_tagscript-1.3.2}/docs/numeric_parser.rst +0 -0
- {ya_tagscript-1.3.0 → ya_tagscript-1.3.2}/docs/quickstart.rst +0 -0
- {ya_tagscript-1.3.0 → ya_tagscript-1.3.2}/docs/requirements.txt +0 -0
- {ya_tagscript-1.3.0 → ya_tagscript-1.3.2}/src/__init__.py +0 -0
- {ya_tagscript-1.3.0 → ya_tagscript-1.3.2}/src/ya_tagscript/__init__.py +0 -0
- {ya_tagscript-1.3.0 → ya_tagscript-1.3.2}/src/ya_tagscript/adapters/__init__.py +0 -0
- {ya_tagscript-1.3.0 → ya_tagscript-1.3.2}/src/ya_tagscript/adapters/discord_adapters/__init__.py +0 -0
- {ya_tagscript-1.3.0 → ya_tagscript-1.3.2}/src/ya_tagscript/adapters/discord_adapters/attribute_adapter.py +0 -0
- {ya_tagscript-1.3.0 → ya_tagscript-1.3.2}/src/ya_tagscript/adapters/discord_adapters/channel_adapter.py +0 -0
- {ya_tagscript-1.3.0 → ya_tagscript-1.3.2}/src/ya_tagscript/adapters/discord_adapters/guild_adapter.py +0 -0
- {ya_tagscript-1.3.0 → ya_tagscript-1.3.2}/src/ya_tagscript/adapters/discord_adapters/member_adapter.py +0 -0
- {ya_tagscript-1.3.0 → ya_tagscript-1.3.2}/src/ya_tagscript/adapters/function_adapter.py +0 -0
- {ya_tagscript-1.3.0 → ya_tagscript-1.3.2}/src/ya_tagscript/adapters/int_adapter.py +0 -0
- {ya_tagscript-1.3.0 → ya_tagscript-1.3.2}/src/ya_tagscript/adapters/object_adapter.py +0 -0
- {ya_tagscript-1.3.0 → ya_tagscript-1.3.2}/src/ya_tagscript/adapters/string_adapter.py +0 -0
- {ya_tagscript-1.3.0 → ya_tagscript-1.3.2}/src/ya_tagscript/blocks/__init__.py +0 -0
- {ya_tagscript-1.3.0 → ya_tagscript-1.3.2}/src/ya_tagscript/blocks/actions/__init__.py +0 -0
- {ya_tagscript-1.3.0 → ya_tagscript-1.3.2}/src/ya_tagscript/blocks/actions/command_block.py +0 -0
- {ya_tagscript-1.3.0 → ya_tagscript-1.3.2}/src/ya_tagscript/blocks/actions/delete_block.py +0 -0
- {ya_tagscript-1.3.0 → ya_tagscript-1.3.2}/src/ya_tagscript/blocks/actions/override_block.py +0 -0
- {ya_tagscript-1.3.0 → ya_tagscript-1.3.2}/src/ya_tagscript/blocks/actions/react_block.py +0 -0
- {ya_tagscript-1.3.0 → ya_tagscript-1.3.2}/src/ya_tagscript/blocks/actions/redirect_block.py +0 -0
- {ya_tagscript-1.3.0 → ya_tagscript-1.3.2}/src/ya_tagscript/blocks/actions/silence_block.py +0 -0
- {ya_tagscript-1.3.0 → ya_tagscript-1.3.2}/src/ya_tagscript/blocks/conditional/__init__.py +0 -0
- {ya_tagscript-1.3.0 → ya_tagscript-1.3.2}/src/ya_tagscript/blocks/conditional/all_block.py +0 -0
- {ya_tagscript-1.3.0 → ya_tagscript-1.3.2}/src/ya_tagscript/blocks/conditional/any_block.py +0 -0
- {ya_tagscript-1.3.0 → ya_tagscript-1.3.2}/src/ya_tagscript/blocks/conditional/if_block.py +0 -0
- {ya_tagscript-1.3.0 → ya_tagscript-1.3.2}/src/ya_tagscript/blocks/discord/__init__.py +0 -0
- {ya_tagscript-1.3.0 → ya_tagscript-1.3.2}/src/ya_tagscript/blocks/discord/cooldown_block.py +0 -0
- {ya_tagscript-1.3.0 → ya_tagscript-1.3.2}/src/ya_tagscript/blocks/flow/__init__.py +0 -0
- {ya_tagscript-1.3.0 → ya_tagscript-1.3.2}/src/ya_tagscript/blocks/flow/break_block.py +0 -0
- {ya_tagscript-1.3.0 → ya_tagscript-1.3.2}/src/ya_tagscript/blocks/flow/shortcutredirect_block.py +0 -0
- {ya_tagscript-1.3.0 → ya_tagscript-1.3.2}/src/ya_tagscript/blocks/flow/stop_block.py +0 -0
- {ya_tagscript-1.3.0 → ya_tagscript-1.3.2}/src/ya_tagscript/blocks/limiters/__init__.py +0 -0
- {ya_tagscript-1.3.0 → ya_tagscript-1.3.2}/src/ya_tagscript/blocks/limiters/blacklist_block.py +0 -0
- {ya_tagscript-1.3.0 → ya_tagscript-1.3.2}/src/ya_tagscript/blocks/limiters/require_block.py +0 -0
- {ya_tagscript-1.3.0 → ya_tagscript-1.3.2}/src/ya_tagscript/blocks/lists/__init__.py +0 -0
- {ya_tagscript-1.3.0 → ya_tagscript-1.3.2}/src/ya_tagscript/blocks/lists/cycle_block.py +0 -0
- {ya_tagscript-1.3.0 → ya_tagscript-1.3.2}/src/ya_tagscript/blocks/lists/list_block.py +0 -0
- {ya_tagscript-1.3.0 → ya_tagscript-1.3.2}/src/ya_tagscript/blocks/math/__init__.py +0 -0
- {ya_tagscript-1.3.0 → ya_tagscript-1.3.2}/src/ya_tagscript/blocks/math/ordinal_block.py +0 -0
- {ya_tagscript-1.3.0 → ya_tagscript-1.3.2}/src/ya_tagscript/blocks/meta/__init__.py +0 -0
- {ya_tagscript-1.3.0 → ya_tagscript-1.3.2}/src/ya_tagscript/blocks/meta/comment_block.py +0 -0
- {ya_tagscript-1.3.0 → ya_tagscript-1.3.2}/src/ya_tagscript/blocks/meta/debug_block.py +0 -0
- {ya_tagscript-1.3.0 → ya_tagscript-1.3.2}/src/ya_tagscript/blocks/rng/__init__.py +0 -0
- {ya_tagscript-1.3.0 → ya_tagscript-1.3.2}/src/ya_tagscript/blocks/rng/fiftyfifty_block.py +0 -0
- {ya_tagscript-1.3.0 → ya_tagscript-1.3.2}/src/ya_tagscript/blocks/rng/random_block.py +0 -0
- {ya_tagscript-1.3.0 → ya_tagscript-1.3.2}/src/ya_tagscript/blocks/rng/range_block.py +0 -0
- {ya_tagscript-1.3.0 → ya_tagscript-1.3.2}/src/ya_tagscript/blocks/strings/__init__.py +0 -0
- {ya_tagscript-1.3.0 → ya_tagscript-1.3.2}/src/ya_tagscript/blocks/strings/case_block.py +0 -0
- {ya_tagscript-1.3.0 → ya_tagscript-1.3.2}/src/ya_tagscript/blocks/strings/join_block.py +0 -0
- {ya_tagscript-1.3.0 → ya_tagscript-1.3.2}/src/ya_tagscript/blocks/strings/replace_block.py +0 -0
- {ya_tagscript-1.3.0 → ya_tagscript-1.3.2}/src/ya_tagscript/blocks/strings/substring_block.py +0 -0
- {ya_tagscript-1.3.0 → ya_tagscript-1.3.2}/src/ya_tagscript/blocks/strings/urldecode_block.py +0 -0
- {ya_tagscript-1.3.0 → ya_tagscript-1.3.2}/src/ya_tagscript/blocks/strings/urlencode_block.py +0 -0
- {ya_tagscript-1.3.0 → ya_tagscript-1.3.2}/src/ya_tagscript/blocks/time/__init__.py +0 -0
- {ya_tagscript-1.3.0 → ya_tagscript-1.3.2}/src/ya_tagscript/blocks/time/strf_block.py +0 -0
- {ya_tagscript-1.3.0 → ya_tagscript-1.3.2}/src/ya_tagscript/blocks/time/timedelta_block.py +0 -0
- {ya_tagscript-1.3.0 → ya_tagscript-1.3.2}/src/ya_tagscript/blocks/variables/__init__.py +0 -0
- {ya_tagscript-1.3.0 → ya_tagscript-1.3.2}/src/ya_tagscript/blocks/variables/assign_block.py +0 -0
- {ya_tagscript-1.3.0 → ya_tagscript-1.3.2}/src/ya_tagscript/blocks/variables/loose_variable_getter_block.py +0 -0
- {ya_tagscript-1.3.0 → ya_tagscript-1.3.2}/src/ya_tagscript/blocks/variables/strict_variable_getter_block.py +0 -0
- {ya_tagscript-1.3.0 → ya_tagscript-1.3.2}/src/ya_tagscript/exceptions/__init__.py +0 -0
- {ya_tagscript-1.3.0 → ya_tagscript-1.3.2}/src/ya_tagscript/exceptions/exceptions.py +0 -0
- {ya_tagscript-1.3.0 → ya_tagscript-1.3.2}/src/ya_tagscript/interfaces/__init__.py +0 -0
- {ya_tagscript-1.3.0 → ya_tagscript-1.3.2}/src/ya_tagscript/interfaces/adapterabc.py +0 -0
- {ya_tagscript-1.3.0 → ya_tagscript-1.3.2}/src/ya_tagscript/interfaces/blockabc.py +0 -0
- {ya_tagscript-1.3.0 → ya_tagscript-1.3.2}/src/ya_tagscript/interfaces/interpreterabc.py +0 -0
- {ya_tagscript-1.3.0 → ya_tagscript-1.3.2}/src/ya_tagscript/interfaces/nodeabc.py +0 -0
- {ya_tagscript-1.3.0 → ya_tagscript-1.3.2}/src/ya_tagscript/interpreter/__init__.py +0 -0
- {ya_tagscript-1.3.0 → ya_tagscript-1.3.2}/src/ya_tagscript/interpreter/context.py +0 -0
- {ya_tagscript-1.3.0 → ya_tagscript-1.3.2}/src/ya_tagscript/interpreter/interpreter.py +0 -0
- {ya_tagscript-1.3.0 → ya_tagscript-1.3.2}/src/ya_tagscript/interpreter/node.py +0 -0
- {ya_tagscript-1.3.0 → ya_tagscript-1.3.2}/src/ya_tagscript/interpreter/parse_state.py +0 -0
- {ya_tagscript-1.3.0 → ya_tagscript-1.3.2}/src/ya_tagscript/interpreter/response.py +0 -0
- {ya_tagscript-1.3.0 → ya_tagscript-1.3.2}/src/ya_tagscript/interpreter/ts_parser.py +0 -0
- {ya_tagscript-1.3.0 → ya_tagscript-1.3.2}/src/ya_tagscript/py.typed +0 -0
- {ya_tagscript-1.3.0 → ya_tagscript-1.3.2}/src/ya_tagscript/util/__init__.py +0 -0
- {ya_tagscript-1.3.0 → ya_tagscript-1.3.2}/src/ya_tagscript/util/conditionals.py +0 -0
- {ya_tagscript-1.3.0 → ya_tagscript-1.3.2}/src/ya_tagscript/util/escaping.py +0 -0
- {ya_tagscript-1.3.0 → ya_tagscript-1.3.2}/src/ya_tagscript/util/splitter.py +0 -0
- {ya_tagscript-1.3.0 → ya_tagscript-1.3.2}/tests/.coveragerc +0 -0
- {ya_tagscript-1.3.0 → ya_tagscript-1.3.2}/tests/__init__.py +0 -0
- {ya_tagscript-1.3.0 → ya_tagscript-1.3.2}/tests/ya_tagscript/__init__.py +0 -0
- {ya_tagscript-1.3.0 → ya_tagscript-1.3.2}/tests/ya_tagscript/adapters/__init__.py +0 -0
- {ya_tagscript-1.3.0 → ya_tagscript-1.3.2}/tests/ya_tagscript/adapters/discord_adapters/__init__.py +0 -0
- {ya_tagscript-1.3.0 → ya_tagscript-1.3.2}/tests/ya_tagscript/adapters/discord_adapters/test_attribute_adapter.py +0 -0
- {ya_tagscript-1.3.0 → ya_tagscript-1.3.2}/tests/ya_tagscript/adapters/discord_adapters/test_channel_adapter.py +0 -0
- {ya_tagscript-1.3.0 → ya_tagscript-1.3.2}/tests/ya_tagscript/adapters/discord_adapters/test_guild_adapter.py +0 -0
- {ya_tagscript-1.3.0 → ya_tagscript-1.3.2}/tests/ya_tagscript/adapters/discord_adapters/test_member_adapter.py +0 -0
- {ya_tagscript-1.3.0 → ya_tagscript-1.3.2}/tests/ya_tagscript/adapters/test_function_adapter.py +0 -0
- {ya_tagscript-1.3.0 → ya_tagscript-1.3.2}/tests/ya_tagscript/adapters/test_int_adapter.py +0 -0
- {ya_tagscript-1.3.0 → ya_tagscript-1.3.2}/tests/ya_tagscript/adapters/test_object_adapter.py +0 -0
- {ya_tagscript-1.3.0 → ya_tagscript-1.3.2}/tests/ya_tagscript/adapters/test_string_adapter.py +0 -0
- {ya_tagscript-1.3.0 → ya_tagscript-1.3.2}/tests/ya_tagscript/blocks/__init__.py +0 -0
- {ya_tagscript-1.3.0 → ya_tagscript-1.3.2}/tests/ya_tagscript/blocks/actions/__init__.py +0 -0
- {ya_tagscript-1.3.0 → ya_tagscript-1.3.2}/tests/ya_tagscript/blocks/actions/test_command_block.py +0 -0
- {ya_tagscript-1.3.0 → ya_tagscript-1.3.2}/tests/ya_tagscript/blocks/actions/test_delete_block.py +0 -0
- {ya_tagscript-1.3.0 → ya_tagscript-1.3.2}/tests/ya_tagscript/blocks/actions/test_override_block.py +0 -0
- {ya_tagscript-1.3.0 → ya_tagscript-1.3.2}/tests/ya_tagscript/blocks/actions/test_react_block.py +0 -0
- {ya_tagscript-1.3.0 → ya_tagscript-1.3.2}/tests/ya_tagscript/blocks/actions/test_redirect_block.py +0 -0
- {ya_tagscript-1.3.0 → ya_tagscript-1.3.2}/tests/ya_tagscript/blocks/actions/test_silence_block.py +0 -0
- {ya_tagscript-1.3.0 → ya_tagscript-1.3.2}/tests/ya_tagscript/blocks/conditional/__init__.py +0 -0
- {ya_tagscript-1.3.0 → ya_tagscript-1.3.2}/tests/ya_tagscript/blocks/conditional/test_all_block.py +0 -0
- {ya_tagscript-1.3.0 → ya_tagscript-1.3.2}/tests/ya_tagscript/blocks/conditional/test_any_block.py +0 -0
- {ya_tagscript-1.3.0 → ya_tagscript-1.3.2}/tests/ya_tagscript/blocks/conditional/test_if_block.py +0 -0
- {ya_tagscript-1.3.0 → ya_tagscript-1.3.2}/tests/ya_tagscript/blocks/discord/__init__.py +0 -0
- {ya_tagscript-1.3.0 → ya_tagscript-1.3.2}/tests/ya_tagscript/blocks/discord/test_cooldown_block.py +0 -0
- {ya_tagscript-1.3.0 → ya_tagscript-1.3.2}/tests/ya_tagscript/blocks/discord/test_embed_block.py +0 -0
- {ya_tagscript-1.3.0 → ya_tagscript-1.3.2}/tests/ya_tagscript/blocks/flow/__init__.py +0 -0
- {ya_tagscript-1.3.0 → ya_tagscript-1.3.2}/tests/ya_tagscript/blocks/flow/test_break_block.py +0 -0
- {ya_tagscript-1.3.0 → ya_tagscript-1.3.2}/tests/ya_tagscript/blocks/flow/test_shortcutredirect_block.py +0 -0
- {ya_tagscript-1.3.0 → ya_tagscript-1.3.2}/tests/ya_tagscript/blocks/flow/test_stop_block.py +0 -0
- {ya_tagscript-1.3.0 → ya_tagscript-1.3.2}/tests/ya_tagscript/blocks/limiters/__init__.py +0 -0
- {ya_tagscript-1.3.0 → ya_tagscript-1.3.2}/tests/ya_tagscript/blocks/limiters/test_blacklist_block.py +0 -0
- {ya_tagscript-1.3.0 → ya_tagscript-1.3.2}/tests/ya_tagscript/blocks/limiters/test_require_block.py +0 -0
- {ya_tagscript-1.3.0 → ya_tagscript-1.3.2}/tests/ya_tagscript/blocks/lists/__init__.py +0 -0
- {ya_tagscript-1.3.0 → ya_tagscript-1.3.2}/tests/ya_tagscript/blocks/lists/test_cycle_block.py +0 -0
- {ya_tagscript-1.3.0 → ya_tagscript-1.3.2}/tests/ya_tagscript/blocks/lists/test_list_block.py +0 -0
- {ya_tagscript-1.3.0 → ya_tagscript-1.3.2}/tests/ya_tagscript/blocks/math/__init__.py +0 -0
- {ya_tagscript-1.3.0 → ya_tagscript-1.3.2}/tests/ya_tagscript/blocks/math/test_ordinal_block.py +0 -0
- {ya_tagscript-1.3.0 → ya_tagscript-1.3.2}/tests/ya_tagscript/blocks/meta/__init__.py +0 -0
- {ya_tagscript-1.3.0 → ya_tagscript-1.3.2}/tests/ya_tagscript/blocks/meta/test_comment_block.py +0 -0
- {ya_tagscript-1.3.0 → ya_tagscript-1.3.2}/tests/ya_tagscript/blocks/meta/test_debug_block.py +0 -0
- {ya_tagscript-1.3.0 → ya_tagscript-1.3.2}/tests/ya_tagscript/blocks/rng/__init__.py +0 -0
- {ya_tagscript-1.3.0 → ya_tagscript-1.3.2}/tests/ya_tagscript/blocks/rng/test_fiftyfifty_block.py +0 -0
- {ya_tagscript-1.3.0 → ya_tagscript-1.3.2}/tests/ya_tagscript/blocks/rng/test_random_block.py +0 -0
- {ya_tagscript-1.3.0 → ya_tagscript-1.3.2}/tests/ya_tagscript/blocks/rng/test_range_block.py +0 -0
- {ya_tagscript-1.3.0 → ya_tagscript-1.3.2}/tests/ya_tagscript/blocks/strings/__init__.py +0 -0
- {ya_tagscript-1.3.0 → ya_tagscript-1.3.2}/tests/ya_tagscript/blocks/strings/test_case_block.py +0 -0
- {ya_tagscript-1.3.0 → ya_tagscript-1.3.2}/tests/ya_tagscript/blocks/strings/test_join_block.py +0 -0
- {ya_tagscript-1.3.0 → ya_tagscript-1.3.2}/tests/ya_tagscript/blocks/strings/test_python_block.py +0 -0
- {ya_tagscript-1.3.0 → ya_tagscript-1.3.2}/tests/ya_tagscript/blocks/strings/test_replace_block.py +0 -0
- {ya_tagscript-1.3.0 → ya_tagscript-1.3.2}/tests/ya_tagscript/blocks/strings/test_substring_block.py +0 -0
- {ya_tagscript-1.3.0 → ya_tagscript-1.3.2}/tests/ya_tagscript/blocks/strings/test_urldecode_block.py +0 -0
- {ya_tagscript-1.3.0 → ya_tagscript-1.3.2}/tests/ya_tagscript/blocks/strings/test_urlencode_block.py +0 -0
- {ya_tagscript-1.3.0 → ya_tagscript-1.3.2}/tests/ya_tagscript/blocks/time/__init__.py +0 -0
- {ya_tagscript-1.3.0 → ya_tagscript-1.3.2}/tests/ya_tagscript/blocks/time/test_strf_block.py +0 -0
- {ya_tagscript-1.3.0 → ya_tagscript-1.3.2}/tests/ya_tagscript/blocks/time/test_timedelta_block.py +0 -0
- {ya_tagscript-1.3.0 → ya_tagscript-1.3.2}/tests/ya_tagscript/blocks/variables/__init__.py +0 -0
- {ya_tagscript-1.3.0 → ya_tagscript-1.3.2}/tests/ya_tagscript/blocks/variables/test_assign_block.py +0 -0
- {ya_tagscript-1.3.0 → ya_tagscript-1.3.2}/tests/ya_tagscript/blocks/variables/test_loose_variable_getter_block.py +0 -0
- {ya_tagscript-1.3.0 → ya_tagscript-1.3.2}/tests/ya_tagscript/blocks/variables/test_strict_variable_getter_block.py +0 -0
- {ya_tagscript-1.3.0 → ya_tagscript-1.3.2}/tests/ya_tagscript/interpreter/__init__.py +0 -0
- {ya_tagscript-1.3.0 → ya_tagscript-1.3.2}/tests/ya_tagscript/interpreter/test_interpreter.py +0 -0
- {ya_tagscript-1.3.0 → ya_tagscript-1.3.2}/tests/ya_tagscript/interpreter/test_node.py +0 -0
- {ya_tagscript-1.3.0 → ya_tagscript-1.3.2}/tests/ya_tagscript/interpreter/test_parse_state.py +0 -0
- {ya_tagscript-1.3.0 → ya_tagscript-1.3.2}/tests/ya_tagscript/interpreter/test_ts_parser.py +0 -0
- {ya_tagscript-1.3.0 → ya_tagscript-1.3.2}/tests/ya_tagscript/util/__init__.py +0 -0
- {ya_tagscript-1.3.0 → ya_tagscript-1.3.2}/tests/ya_tagscript/util/test_conditionals.py +0 -0
- {ya_tagscript-1.3.0 → ya_tagscript-1.3.2}/tests/ya_tagscript/util/test_escaping.py +0 -0
- {ya_tagscript-1.3.0 → ya_tagscript-1.3.2}/tests/ya_tagscript/util/test_splitter.py +0 -0
|
@@ -2,7 +2,19 @@
|
|
|
2
2
|
|
|
3
3
|
*Currently none*
|
|
4
4
|
|
|
5
|
+
# v1.3.2
|
|
6
|
+
|
|
7
|
+
- Reject division by zero in `MathBlock`
|
|
8
|
+
- Blocks that divide by zero are now rejected instead of throwing an exception into
|
|
9
|
+
the interpreter
|
|
10
|
+
|
|
11
|
+
# v1.3.1
|
|
12
|
+
|
|
13
|
+
- Fix copy/paste errors in `EmbedBlock`'s documentation
|
|
14
|
+
- The `field` section contained copy/pasted `footer` text, this has been fixed
|
|
15
|
+
|
|
5
16
|
# v1.3.0
|
|
17
|
+
|
|
6
18
|
- Fix undefined guild-specific or global nicknames causing blocks to be rejected
|
|
7
19
|
- For `discord.Member` objects, `MemberAdapter` now falls back to `global_name` if
|
|
8
20
|
`nick` is undefined and further to `name` if `global_name` is also undefined
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: ya_tagscript
|
|
3
|
-
Version: 1.3.
|
|
3
|
+
Version: 1.3.2
|
|
4
4
|
Summary: Yet Another TagScript fork. An easy drop in user-provided Templating system.
|
|
5
5
|
Project-URL: GitHub, https://github.com/MajorTanya/ya_tagscript
|
|
6
6
|
Project-URL: Issues, https://github.com/MajorTanya/ya_tagscript/issues
|
|
@@ -22,7 +22,7 @@ Description-Content-Type: text/markdown
|
|
|
22
22
|
|
|
23
23
|
# ya_tagscript - Yet Another TagScript fork
|
|
24
24
|
|
|
25
|
-
Current stable version: v1.3.
|
|
25
|
+
Current stable version: v1.3.2
|
|
26
26
|
|
|
27
27
|
## Information
|
|
28
28
|
|
|
@@ -84,7 +84,7 @@ or
|
|
|
84
84
|
<!--VERSIONED TAG SECTION START-->
|
|
85
85
|
|
|
86
86
|
```
|
|
87
|
-
pip install git+https://github.com/MajorTanya/ya_tagscript.git@v1.3.
|
|
87
|
+
pip install git+https://github.com/MajorTanya/ya_tagscript.git@v1.3.2
|
|
88
88
|
```
|
|
89
89
|
|
|
90
90
|
<!--VERSIONED TAG SECTION END-->
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# ya_tagscript - Yet Another TagScript fork
|
|
2
2
|
|
|
3
|
-
Current stable version: v1.3.
|
|
3
|
+
Current stable version: v1.3.2
|
|
4
4
|
|
|
5
5
|
## Information
|
|
6
6
|
|
|
@@ -62,7 +62,7 @@ or
|
|
|
62
62
|
<!--VERSIONED TAG SECTION START-->
|
|
63
63
|
|
|
64
64
|
```
|
|
65
|
-
pip install git+https://github.com/MajorTanya/ya_tagscript.git@v1.3.
|
|
65
|
+
pip install git+https://github.com/MajorTanya/ya_tagscript.git@v1.3.2
|
|
66
66
|
```
|
|
67
67
|
|
|
68
68
|
<!--VERSIONED TAG SECTION END-->
|
|
@@ -158,6 +158,7 @@ def update_changelog(project_version: str, *, dry_run: bool, verbose: bool):
|
|
|
158
158
|
*Currently none*
|
|
159
159
|
|
|
160
160
|
# v{project_version}
|
|
161
|
+
|
|
161
162
|
"""
|
|
162
163
|
)
|
|
163
164
|
+ release_content
|
|
@@ -185,7 +186,7 @@ def update_pyproject(project_version: str, *, dry_run: bool, verbose: bool):
|
|
|
185
186
|
old_pyproject_content = pypf.read()
|
|
186
187
|
|
|
187
188
|
match = re.search(
|
|
188
|
-
r'(.+?)(\[project]\nname = "ya_tagscript"\nversion = "
|
|
189
|
+
r'(.+?)(\[project]\nname = "ya_tagscript"\nversion = ".+?")',
|
|
189
190
|
old_pyproject_content,
|
|
190
191
|
flags=re.MULTILINE | re.DOTALL,
|
|
191
192
|
)
|
|
@@ -236,9 +236,9 @@ class EmbedBlock(BlockABC):
|
|
|
236
236
|
|
|
237
237
|
Valid ``field`` formats::
|
|
238
238
|
|
|
239
|
-
{embed(
|
|
240
|
-
{embed(
|
|
241
|
-
{embed(
|
|
239
|
+
{embed(field):name|value}
|
|
240
|
+
{embed(field):name|value|true}
|
|
241
|
+
{embed(field):name|value|false}
|
|
242
242
|
|
|
243
243
|
**Usage**: ``{embed(<attribute>):<value>}``
|
|
244
244
|
|
|
@@ -345,6 +345,6 @@ class MathBlock(BlockABC):
|
|
|
345
345
|
parsed_payload = ctx.interpret_segment(payload)
|
|
346
346
|
try:
|
|
347
347
|
return str(self._NSP.eval(parsed_payload))
|
|
348
|
-
except (ValueError, OverflowError) as e:
|
|
348
|
+
except (ValueError, OverflowError, ZeroDivisionError) as e:
|
|
349
349
|
_log.debug(e)
|
|
350
350
|
return None
|
|
@@ -46,7 +46,7 @@ class PythonBlock(BlockABC):
|
|
|
46
46
|
{index(pie):I love to eat food. everyone does.}
|
|
47
47
|
# -1
|
|
48
48
|
|
|
49
|
-
..versionchanged:: 1.3
|
|
49
|
+
.. versionchanged:: 1.3
|
|
50
50
|
This block was moved from ``blocks.conditional`` to ``blocks.strings``.
|
|
51
51
|
Users should import blocks by doing
|
|
52
52
|
``from ya_tagscript.blocks import PythonBlock`` so this change should affect
|
|
@@ -113,6 +113,14 @@ def test_dec_math_docs_example_three(
|
|
|
113
113
|
assert result == "3.33"
|
|
114
114
|
|
|
115
115
|
|
|
116
|
+
def test_dec_math_division_by_zero_is_rejected(
|
|
117
|
+
ts_interpreter: TagScriptInterpreter,
|
|
118
|
+
):
|
|
119
|
+
script = "{math:10 / 0}"
|
|
120
|
+
result = ts_interpreter.process(script).body
|
|
121
|
+
assert result == script
|
|
122
|
+
|
|
123
|
+
|
|
116
124
|
# region 001-110: 110 random expressions, tested with the 'math' declaration
|
|
117
125
|
|
|
118
126
|
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{ya_tagscript-1.3.0 → ya_tagscript-1.3.2}/docs/code_examples/adapters/int_adapter_example.py
RENAMED
|
File without changes
|
{ya_tagscript-1.3.0 → ya_tagscript-1.3.2}/docs/code_examples/adapters/member_adapter_example.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{ya_tagscript-1.3.0 → ya_tagscript-1.3.2}/src/ya_tagscript/adapters/discord_adapters/__init__.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{ya_tagscript-1.3.0 → ya_tagscript-1.3.2}/src/ya_tagscript/blocks/flow/shortcutredirect_block.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
{ya_tagscript-1.3.0 → ya_tagscript-1.3.2}/src/ya_tagscript/blocks/limiters/blacklist_block.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{ya_tagscript-1.3.0 → ya_tagscript-1.3.2}/src/ya_tagscript/blocks/strings/substring_block.py
RENAMED
|
File without changes
|
{ya_tagscript-1.3.0 → ya_tagscript-1.3.2}/src/ya_tagscript/blocks/strings/urldecode_block.py
RENAMED
|
File without changes
|
{ya_tagscript-1.3.0 → ya_tagscript-1.3.2}/src/ya_tagscript/blocks/strings/urlencode_block.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{ya_tagscript-1.3.0 → ya_tagscript-1.3.2}/tests/ya_tagscript/adapters/discord_adapters/__init__.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{ya_tagscript-1.3.0 → ya_tagscript-1.3.2}/tests/ya_tagscript/adapters/test_function_adapter.py
RENAMED
|
File without changes
|
|
File without changes
|
{ya_tagscript-1.3.0 → ya_tagscript-1.3.2}/tests/ya_tagscript/adapters/test_object_adapter.py
RENAMED
|
File without changes
|
{ya_tagscript-1.3.0 → ya_tagscript-1.3.2}/tests/ya_tagscript/adapters/test_string_adapter.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
{ya_tagscript-1.3.0 → ya_tagscript-1.3.2}/tests/ya_tagscript/blocks/actions/test_command_block.py
RENAMED
|
File without changes
|
{ya_tagscript-1.3.0 → ya_tagscript-1.3.2}/tests/ya_tagscript/blocks/actions/test_delete_block.py
RENAMED
|
File without changes
|
{ya_tagscript-1.3.0 → ya_tagscript-1.3.2}/tests/ya_tagscript/blocks/actions/test_override_block.py
RENAMED
|
File without changes
|
{ya_tagscript-1.3.0 → ya_tagscript-1.3.2}/tests/ya_tagscript/blocks/actions/test_react_block.py
RENAMED
|
File without changes
|
{ya_tagscript-1.3.0 → ya_tagscript-1.3.2}/tests/ya_tagscript/blocks/actions/test_redirect_block.py
RENAMED
|
File without changes
|
{ya_tagscript-1.3.0 → ya_tagscript-1.3.2}/tests/ya_tagscript/blocks/actions/test_silence_block.py
RENAMED
|
File without changes
|
|
File without changes
|
{ya_tagscript-1.3.0 → ya_tagscript-1.3.2}/tests/ya_tagscript/blocks/conditional/test_all_block.py
RENAMED
|
File without changes
|
{ya_tagscript-1.3.0 → ya_tagscript-1.3.2}/tests/ya_tagscript/blocks/conditional/test_any_block.py
RENAMED
|
File without changes
|
{ya_tagscript-1.3.0 → ya_tagscript-1.3.2}/tests/ya_tagscript/blocks/conditional/test_if_block.py
RENAMED
|
File without changes
|
|
File without changes
|
{ya_tagscript-1.3.0 → ya_tagscript-1.3.2}/tests/ya_tagscript/blocks/discord/test_cooldown_block.py
RENAMED
|
File without changes
|
{ya_tagscript-1.3.0 → ya_tagscript-1.3.2}/tests/ya_tagscript/blocks/discord/test_embed_block.py
RENAMED
|
File without changes
|
|
File without changes
|
{ya_tagscript-1.3.0 → ya_tagscript-1.3.2}/tests/ya_tagscript/blocks/flow/test_break_block.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{ya_tagscript-1.3.0 → ya_tagscript-1.3.2}/tests/ya_tagscript/blocks/limiters/test_blacklist_block.py
RENAMED
|
File without changes
|
{ya_tagscript-1.3.0 → ya_tagscript-1.3.2}/tests/ya_tagscript/blocks/limiters/test_require_block.py
RENAMED
|
File without changes
|
|
File without changes
|
{ya_tagscript-1.3.0 → ya_tagscript-1.3.2}/tests/ya_tagscript/blocks/lists/test_cycle_block.py
RENAMED
|
File without changes
|
{ya_tagscript-1.3.0 → ya_tagscript-1.3.2}/tests/ya_tagscript/blocks/lists/test_list_block.py
RENAMED
|
File without changes
|
|
File without changes
|
{ya_tagscript-1.3.0 → ya_tagscript-1.3.2}/tests/ya_tagscript/blocks/math/test_ordinal_block.py
RENAMED
|
File without changes
|
|
File without changes
|
{ya_tagscript-1.3.0 → ya_tagscript-1.3.2}/tests/ya_tagscript/blocks/meta/test_comment_block.py
RENAMED
|
File without changes
|
{ya_tagscript-1.3.0 → ya_tagscript-1.3.2}/tests/ya_tagscript/blocks/meta/test_debug_block.py
RENAMED
|
File without changes
|
|
File without changes
|
{ya_tagscript-1.3.0 → ya_tagscript-1.3.2}/tests/ya_tagscript/blocks/rng/test_fiftyfifty_block.py
RENAMED
|
File without changes
|
{ya_tagscript-1.3.0 → ya_tagscript-1.3.2}/tests/ya_tagscript/blocks/rng/test_random_block.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
{ya_tagscript-1.3.0 → ya_tagscript-1.3.2}/tests/ya_tagscript/blocks/strings/test_case_block.py
RENAMED
|
File without changes
|
{ya_tagscript-1.3.0 → ya_tagscript-1.3.2}/tests/ya_tagscript/blocks/strings/test_join_block.py
RENAMED
|
File without changes
|
{ya_tagscript-1.3.0 → ya_tagscript-1.3.2}/tests/ya_tagscript/blocks/strings/test_python_block.py
RENAMED
|
File without changes
|
{ya_tagscript-1.3.0 → ya_tagscript-1.3.2}/tests/ya_tagscript/blocks/strings/test_replace_block.py
RENAMED
|
File without changes
|
{ya_tagscript-1.3.0 → ya_tagscript-1.3.2}/tests/ya_tagscript/blocks/strings/test_substring_block.py
RENAMED
|
File without changes
|
{ya_tagscript-1.3.0 → ya_tagscript-1.3.2}/tests/ya_tagscript/blocks/strings/test_urldecode_block.py
RENAMED
|
File without changes
|
{ya_tagscript-1.3.0 → ya_tagscript-1.3.2}/tests/ya_tagscript/blocks/strings/test_urlencode_block.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
{ya_tagscript-1.3.0 → ya_tagscript-1.3.2}/tests/ya_tagscript/blocks/time/test_timedelta_block.py
RENAMED
|
File without changes
|
|
File without changes
|
{ya_tagscript-1.3.0 → ya_tagscript-1.3.2}/tests/ya_tagscript/blocks/variables/test_assign_block.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{ya_tagscript-1.3.0 → ya_tagscript-1.3.2}/tests/ya_tagscript/interpreter/test_interpreter.py
RENAMED
|
File without changes
|
|
File without changes
|
{ya_tagscript-1.3.0 → ya_tagscript-1.3.2}/tests/ya_tagscript/interpreter/test_parse_state.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|