python-ta 2.8.0__tar.gz → 2.8.1__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.
- {python_ta-2.8.0/python_ta.egg-info → python_ta-2.8.1}/PKG-INFO +1 -1
- {python_ta-2.8.0 → python_ta-2.8.1}/python_ta/__init__.py +1 -1
- {python_ta-2.8.0 → python_ta-2.8.1}/python_ta/cfg/graph.py +1 -1
- python_ta-2.8.1/python_ta/util/__init__.py +0 -0
- {python_ta-2.8.0 → python_ta-2.8.1/python_ta.egg-info}/PKG-INFO +1 -1
- python_ta-2.8.0/python_ta/transforms/__init__.py +0 -1
- {python_ta-2.8.0 → python_ta-2.8.1}/LICENSE +0 -0
- {python_ta-2.8.0 → python_ta-2.8.1}/MANIFEST.in +0 -0
- {python_ta-2.8.0 → python_ta-2.8.1}/README.md +0 -0
- {python_ta-2.8.0 → python_ta-2.8.1}/pyproject.toml +0 -0
- {python_ta-2.8.0 → python_ta-2.8.1}/python_ta/__main__.py +0 -0
- {python_ta-2.8.0 → python_ta-2.8.1}/python_ta/cfg/__init__.py +0 -0
- {python_ta-2.8.0 → python_ta-2.8.1}/python_ta/cfg/cfg_generator.py +0 -0
- {python_ta-2.8.0 → python_ta-2.8.1}/python_ta/cfg/visitor.py +0 -0
- {python_ta-2.8.0 → python_ta-2.8.1}/python_ta/checkers/__init__.py +0 -0
- {python_ta-2.8.0 → python_ta-2.8.1}/python_ta/checkers/forbidden_import_checker.py +0 -0
- {python_ta-2.8.0 → python_ta-2.8.1}/python_ta/checkers/forbidden_io_function_checker.py +0 -0
- {python_ta-2.8.0 → python_ta-2.8.1}/python_ta/checkers/forbidden_python_syntax_checker.py +0 -0
- {python_ta-2.8.0 → python_ta-2.8.1}/python_ta/checkers/global_variables_checker.py +0 -0
- {python_ta-2.8.0 → python_ta-2.8.1}/python_ta/checkers/inconsistent_or_missing_returns_checker.py +0 -0
- {python_ta-2.8.0 → python_ta-2.8.1}/python_ta/checkers/invalid_for_target_checker.py +0 -0
- {python_ta-2.8.0 → python_ta-2.8.1}/python_ta/checkers/invalid_name_checker.py +0 -0
- {python_ta-2.8.0 → python_ta-2.8.1}/python_ta/checkers/invalid_range_index_checker.py +0 -0
- {python_ta-2.8.0 → python_ta-2.8.1}/python_ta/checkers/missing_space_in_doctest_checker.py +0 -0
- {python_ta-2.8.0 → python_ta-2.8.1}/python_ta/checkers/one_iteration_checker.py +0 -0
- {python_ta-2.8.0 → python_ta-2.8.1}/python_ta/checkers/possibly_undefined_checker.py +0 -0
- {python_ta-2.8.0 → python_ta-2.8.1}/python_ta/checkers/pycodestyle_checker.py +0 -0
- {python_ta-2.8.0 → python_ta-2.8.1}/python_ta/checkers/redundant_assignment_checker.py +0 -0
- {python_ta-2.8.0 → python_ta-2.8.1}/python_ta/checkers/shadowing_in_comprehension_checker.py +0 -0
- {python_ta-2.8.0 → python_ta-2.8.1}/python_ta/checkers/top_level_code_checker.py +0 -0
- {python_ta-2.8.0 → python_ta-2.8.1}/python_ta/checkers/type_annotation_checker.py +0 -0
- {python_ta-2.8.0 → python_ta-2.8.1}/python_ta/checkers/unnecessary_indexing_checker.py +0 -0
- {python_ta-2.8.0 → python_ta-2.8.1}/python_ta/config/.pylintrc +0 -0
- {python_ta-2.8.0 → python_ta-2.8.1}/python_ta/config/__init__.py +0 -0
- {python_ta-2.8.0 → python_ta-2.8.1}/python_ta/config/messages_config.toml +0 -0
- {python_ta-2.8.0 → python_ta-2.8.1}/python_ta/contracts/__init__.py +0 -0
- {python_ta-2.8.0 → python_ta-2.8.1}/python_ta/contracts/__main__.py +0 -0
- {python_ta-2.8.0 → python_ta-2.8.1}/python_ta/debug/__init__.py +0 -0
- {python_ta-2.8.0 → python_ta-2.8.1}/python_ta/debug/accumulation_table.py +0 -0
- {python_ta-2.8.0 → python_ta-2.8.1}/python_ta/debug/recursion_table.py +0 -0
- {python_ta-2.8.0 → python_ta-2.8.1}/python_ta/debug/snapshot.py +0 -0
- {python_ta-2.8.0 → python_ta-2.8.1}/python_ta/patches/__init__.py +0 -0
- {python_ta-2.8.0 → python_ta-2.8.1}/python_ta/patches/checkers.py +0 -0
- {python_ta-2.8.0 → python_ta-2.8.1}/python_ta/patches/error_messages.py +0 -0
- {python_ta-2.8.0 → python_ta-2.8.1}/python_ta/patches/messages.py +0 -0
- {python_ta-2.8.0 → python_ta-2.8.1}/python_ta/patches/transforms.py +0 -0
- {python_ta-2.8.0 → python_ta-2.8.1}/python_ta/reporters/__init__.py +0 -0
- {python_ta-2.8.0 → python_ta-2.8.1}/python_ta/reporters/color_reporter.py +0 -0
- {python_ta-2.8.0 → python_ta-2.8.1}/python_ta/reporters/core.py +0 -0
- {python_ta-2.8.0 → python_ta-2.8.1}/python_ta/reporters/html_reporter.py +0 -0
- {python_ta-2.8.0 → python_ta-2.8.1}/python_ta/reporters/json_reporter.py +0 -0
- {python_ta-2.8.0 → python_ta-2.8.1}/python_ta/reporters/node_printers.py +0 -0
- {python_ta-2.8.0 → python_ta-2.8.1}/python_ta/reporters/plain_reporter.py +0 -0
- {python_ta-2.8.0 → python_ta-2.8.1}/python_ta/reporters/stat_reporter.py +0 -0
- {python_ta-2.8.0 → python_ta-2.8.1}/python_ta/reporters/templates/jquery-3.7.1.slim.min.js +0 -0
- {python_ta-2.8.0 → python_ta-2.8.1}/python_ta/reporters/templates/pyta_logo_markdown.png +0 -0
- {python_ta-2.8.0 → python_ta-2.8.1}/python_ta/reporters/templates/script.js +0 -0
- {python_ta-2.8.0 → python_ta-2.8.1}/python_ta/reporters/templates/stylesheet.css +0 -0
- {python_ta-2.8.0 → python_ta-2.8.1}/python_ta/reporters/templates/template.html.jinja +0 -0
- {python_ta-2.8.0 → python_ta-2.8.1}/python_ta/transforms/ExprWrapper.py +0 -0
- {python_ta-2.8.0/python_ta/util → python_ta-2.8.1/python_ta/transforms}/__init__.py +0 -0
- {python_ta-2.8.0 → python_ta-2.8.1}/python_ta/transforms/setendings.py +0 -0
- {python_ta-2.8.0 → python_ta-2.8.1}/python_ta/transforms/z3_visitor.py +0 -0
- {python_ta-2.8.0 → python_ta-2.8.1}/python_ta/upload.py +0 -0
- {python_ta-2.8.0 → python_ta-2.8.1}/python_ta/util/tree.py +0 -0
- {python_ta-2.8.0 → python_ta-2.8.1}/python_ta/utils.py +0 -0
- {python_ta-2.8.0 → python_ta-2.8.1}/python_ta.egg-info/SOURCES.txt +0 -0
- {python_ta-2.8.0 → python_ta-2.8.1}/python_ta.egg-info/dependency_links.txt +0 -0
- {python_ta-2.8.0 → python_ta-2.8.1}/python_ta.egg-info/entry_points.txt +0 -0
- {python_ta-2.8.0 → python_ta-2.8.1}/python_ta.egg-info/not-zip-safe +0 -0
- {python_ta-2.8.0 → python_ta-2.8.1}/python_ta.egg-info/requires.txt +0 -0
- {python_ta-2.8.0 → python_ta-2.8.1}/python_ta.egg-info/top_level.txt +0 -0
- {python_ta-2.8.0 → python_ta-2.8.1}/setup.cfg +0 -0
- {python_ta-2.8.0 → python_ta-2.8.1}/setup.py +0 -0
- {python_ta-2.8.0 → python_ta-2.8.1}/tests/test_black.py +0 -0
- {python_ta-2.8.0 → python_ta-2.8.1}/tests/test_check.py +0 -0
- {python_ta-2.8.0 → python_ta-2.8.1}/tests/test_examples.py +0 -0
- {python_ta-2.8.0 → python_ta-2.8.1}/tests/test_init_logging.py +0 -0
- {python_ta-2.8.0 → python_ta-2.8.1}/tests/test_main.py +0 -0
- {python_ta-2.8.0 → python_ta-2.8.1}/tests/test_setendings.py +0 -0
- {python_ta-2.8.0 → python_ta-2.8.1}/tests/test_subclass_contracts.py +0 -0
- {python_ta-2.8.0 → python_ta-2.8.1}/tests/test_validate_invariants.py +0 -0
- {python_ta-2.8.0 → python_ta-2.8.1}/tests/test_z3_visitor.py +0 -0
|
@@ -15,7 +15,7 @@ if __name__ == '__main__':
|
|
|
15
15
|
python_ta.check_all()
|
|
16
16
|
"""
|
|
17
17
|
|
|
18
|
-
__version__ = "2.8.
|
|
18
|
+
__version__ = "2.8.1" # Version number
|
|
19
19
|
|
|
20
20
|
# First, remove underscore from builtins if it has been bound in the REPL.
|
|
21
21
|
# Must appear before other imports from pylint/python_ta.
|
|
@@ -5,7 +5,7 @@ from typing import Any, Dict, Generator, List, Optional, Set
|
|
|
5
5
|
try:
|
|
6
6
|
from z3 import Z3_OP_UNINTERPRETED, ExprRef, Not, Z3Exception, is_const
|
|
7
7
|
|
|
8
|
-
from ..transforms import ExprWrapper, Z3ParseException
|
|
8
|
+
from ..transforms.ExprWrapper import ExprWrapper, Z3ParseException
|
|
9
9
|
|
|
10
10
|
z3_dependency_available = True
|
|
11
11
|
except ImportError:
|
|
File without changes
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
from .ExprWrapper import ExprWrapper, Z3ParseException
|
|
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
|
{python_ta-2.8.0 → python_ta-2.8.1}/python_ta/checkers/inconsistent_or_missing_returns_checker.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
|
{python_ta-2.8.0 → python_ta-2.8.1}/python_ta/checkers/shadowing_in_comprehension_checker.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
|
|
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
|