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.
Files changed (83) hide show
  1. {python_ta-2.8.0/python_ta.egg-info → python_ta-2.8.1}/PKG-INFO +1 -1
  2. {python_ta-2.8.0 → python_ta-2.8.1}/python_ta/__init__.py +1 -1
  3. {python_ta-2.8.0 → python_ta-2.8.1}/python_ta/cfg/graph.py +1 -1
  4. python_ta-2.8.1/python_ta/util/__init__.py +0 -0
  5. {python_ta-2.8.0 → python_ta-2.8.1/python_ta.egg-info}/PKG-INFO +1 -1
  6. python_ta-2.8.0/python_ta/transforms/__init__.py +0 -1
  7. {python_ta-2.8.0 → python_ta-2.8.1}/LICENSE +0 -0
  8. {python_ta-2.8.0 → python_ta-2.8.1}/MANIFEST.in +0 -0
  9. {python_ta-2.8.0 → python_ta-2.8.1}/README.md +0 -0
  10. {python_ta-2.8.0 → python_ta-2.8.1}/pyproject.toml +0 -0
  11. {python_ta-2.8.0 → python_ta-2.8.1}/python_ta/__main__.py +0 -0
  12. {python_ta-2.8.0 → python_ta-2.8.1}/python_ta/cfg/__init__.py +0 -0
  13. {python_ta-2.8.0 → python_ta-2.8.1}/python_ta/cfg/cfg_generator.py +0 -0
  14. {python_ta-2.8.0 → python_ta-2.8.1}/python_ta/cfg/visitor.py +0 -0
  15. {python_ta-2.8.0 → python_ta-2.8.1}/python_ta/checkers/__init__.py +0 -0
  16. {python_ta-2.8.0 → python_ta-2.8.1}/python_ta/checkers/forbidden_import_checker.py +0 -0
  17. {python_ta-2.8.0 → python_ta-2.8.1}/python_ta/checkers/forbidden_io_function_checker.py +0 -0
  18. {python_ta-2.8.0 → python_ta-2.8.1}/python_ta/checkers/forbidden_python_syntax_checker.py +0 -0
  19. {python_ta-2.8.0 → python_ta-2.8.1}/python_ta/checkers/global_variables_checker.py +0 -0
  20. {python_ta-2.8.0 → python_ta-2.8.1}/python_ta/checkers/inconsistent_or_missing_returns_checker.py +0 -0
  21. {python_ta-2.8.0 → python_ta-2.8.1}/python_ta/checkers/invalid_for_target_checker.py +0 -0
  22. {python_ta-2.8.0 → python_ta-2.8.1}/python_ta/checkers/invalid_name_checker.py +0 -0
  23. {python_ta-2.8.0 → python_ta-2.8.1}/python_ta/checkers/invalid_range_index_checker.py +0 -0
  24. {python_ta-2.8.0 → python_ta-2.8.1}/python_ta/checkers/missing_space_in_doctest_checker.py +0 -0
  25. {python_ta-2.8.0 → python_ta-2.8.1}/python_ta/checkers/one_iteration_checker.py +0 -0
  26. {python_ta-2.8.0 → python_ta-2.8.1}/python_ta/checkers/possibly_undefined_checker.py +0 -0
  27. {python_ta-2.8.0 → python_ta-2.8.1}/python_ta/checkers/pycodestyle_checker.py +0 -0
  28. {python_ta-2.8.0 → python_ta-2.8.1}/python_ta/checkers/redundant_assignment_checker.py +0 -0
  29. {python_ta-2.8.0 → python_ta-2.8.1}/python_ta/checkers/shadowing_in_comprehension_checker.py +0 -0
  30. {python_ta-2.8.0 → python_ta-2.8.1}/python_ta/checkers/top_level_code_checker.py +0 -0
  31. {python_ta-2.8.0 → python_ta-2.8.1}/python_ta/checkers/type_annotation_checker.py +0 -0
  32. {python_ta-2.8.0 → python_ta-2.8.1}/python_ta/checkers/unnecessary_indexing_checker.py +0 -0
  33. {python_ta-2.8.0 → python_ta-2.8.1}/python_ta/config/.pylintrc +0 -0
  34. {python_ta-2.8.0 → python_ta-2.8.1}/python_ta/config/__init__.py +0 -0
  35. {python_ta-2.8.0 → python_ta-2.8.1}/python_ta/config/messages_config.toml +0 -0
  36. {python_ta-2.8.0 → python_ta-2.8.1}/python_ta/contracts/__init__.py +0 -0
  37. {python_ta-2.8.0 → python_ta-2.8.1}/python_ta/contracts/__main__.py +0 -0
  38. {python_ta-2.8.0 → python_ta-2.8.1}/python_ta/debug/__init__.py +0 -0
  39. {python_ta-2.8.0 → python_ta-2.8.1}/python_ta/debug/accumulation_table.py +0 -0
  40. {python_ta-2.8.0 → python_ta-2.8.1}/python_ta/debug/recursion_table.py +0 -0
  41. {python_ta-2.8.0 → python_ta-2.8.1}/python_ta/debug/snapshot.py +0 -0
  42. {python_ta-2.8.0 → python_ta-2.8.1}/python_ta/patches/__init__.py +0 -0
  43. {python_ta-2.8.0 → python_ta-2.8.1}/python_ta/patches/checkers.py +0 -0
  44. {python_ta-2.8.0 → python_ta-2.8.1}/python_ta/patches/error_messages.py +0 -0
  45. {python_ta-2.8.0 → python_ta-2.8.1}/python_ta/patches/messages.py +0 -0
  46. {python_ta-2.8.0 → python_ta-2.8.1}/python_ta/patches/transforms.py +0 -0
  47. {python_ta-2.8.0 → python_ta-2.8.1}/python_ta/reporters/__init__.py +0 -0
  48. {python_ta-2.8.0 → python_ta-2.8.1}/python_ta/reporters/color_reporter.py +0 -0
  49. {python_ta-2.8.0 → python_ta-2.8.1}/python_ta/reporters/core.py +0 -0
  50. {python_ta-2.8.0 → python_ta-2.8.1}/python_ta/reporters/html_reporter.py +0 -0
  51. {python_ta-2.8.0 → python_ta-2.8.1}/python_ta/reporters/json_reporter.py +0 -0
  52. {python_ta-2.8.0 → python_ta-2.8.1}/python_ta/reporters/node_printers.py +0 -0
  53. {python_ta-2.8.0 → python_ta-2.8.1}/python_ta/reporters/plain_reporter.py +0 -0
  54. {python_ta-2.8.0 → python_ta-2.8.1}/python_ta/reporters/stat_reporter.py +0 -0
  55. {python_ta-2.8.0 → python_ta-2.8.1}/python_ta/reporters/templates/jquery-3.7.1.slim.min.js +0 -0
  56. {python_ta-2.8.0 → python_ta-2.8.1}/python_ta/reporters/templates/pyta_logo_markdown.png +0 -0
  57. {python_ta-2.8.0 → python_ta-2.8.1}/python_ta/reporters/templates/script.js +0 -0
  58. {python_ta-2.8.0 → python_ta-2.8.1}/python_ta/reporters/templates/stylesheet.css +0 -0
  59. {python_ta-2.8.0 → python_ta-2.8.1}/python_ta/reporters/templates/template.html.jinja +0 -0
  60. {python_ta-2.8.0 → python_ta-2.8.1}/python_ta/transforms/ExprWrapper.py +0 -0
  61. {python_ta-2.8.0/python_ta/util → python_ta-2.8.1/python_ta/transforms}/__init__.py +0 -0
  62. {python_ta-2.8.0 → python_ta-2.8.1}/python_ta/transforms/setendings.py +0 -0
  63. {python_ta-2.8.0 → python_ta-2.8.1}/python_ta/transforms/z3_visitor.py +0 -0
  64. {python_ta-2.8.0 → python_ta-2.8.1}/python_ta/upload.py +0 -0
  65. {python_ta-2.8.0 → python_ta-2.8.1}/python_ta/util/tree.py +0 -0
  66. {python_ta-2.8.0 → python_ta-2.8.1}/python_ta/utils.py +0 -0
  67. {python_ta-2.8.0 → python_ta-2.8.1}/python_ta.egg-info/SOURCES.txt +0 -0
  68. {python_ta-2.8.0 → python_ta-2.8.1}/python_ta.egg-info/dependency_links.txt +0 -0
  69. {python_ta-2.8.0 → python_ta-2.8.1}/python_ta.egg-info/entry_points.txt +0 -0
  70. {python_ta-2.8.0 → python_ta-2.8.1}/python_ta.egg-info/not-zip-safe +0 -0
  71. {python_ta-2.8.0 → python_ta-2.8.1}/python_ta.egg-info/requires.txt +0 -0
  72. {python_ta-2.8.0 → python_ta-2.8.1}/python_ta.egg-info/top_level.txt +0 -0
  73. {python_ta-2.8.0 → python_ta-2.8.1}/setup.cfg +0 -0
  74. {python_ta-2.8.0 → python_ta-2.8.1}/setup.py +0 -0
  75. {python_ta-2.8.0 → python_ta-2.8.1}/tests/test_black.py +0 -0
  76. {python_ta-2.8.0 → python_ta-2.8.1}/tests/test_check.py +0 -0
  77. {python_ta-2.8.0 → python_ta-2.8.1}/tests/test_examples.py +0 -0
  78. {python_ta-2.8.0 → python_ta-2.8.1}/tests/test_init_logging.py +0 -0
  79. {python_ta-2.8.0 → python_ta-2.8.1}/tests/test_main.py +0 -0
  80. {python_ta-2.8.0 → python_ta-2.8.1}/tests/test_setendings.py +0 -0
  81. {python_ta-2.8.0 → python_ta-2.8.1}/tests/test_subclass_contracts.py +0 -0
  82. {python_ta-2.8.0 → python_ta-2.8.1}/tests/test_validate_invariants.py +0 -0
  83. {python_ta-2.8.0 → python_ta-2.8.1}/tests/test_z3_visitor.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: python-ta
3
- Version: 2.8.0
3
+ Version: 2.8.1
4
4
  Summary: Code checking tool for teaching Python
5
5
  Author-email: David Liu <david@cs.toronto.edu>
6
6
  License: MIT
@@ -15,7 +15,7 @@ if __name__ == '__main__':
15
15
  python_ta.check_all()
16
16
  """
17
17
 
18
- __version__ = "2.8.0" # Version number
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,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: python-ta
3
- Version: 2.8.0
3
+ Version: 2.8.1
4
4
  Summary: Code checking tool for teaching Python
5
5
  Author-email: David Liu <david@cs.toronto.edu>
6
6
  License: MIT
@@ -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