a3-python 0.1.11__tar.gz → 0.1.12__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 (405) hide show
  1. {a3_python-0.1.11 → a3_python-0.1.12}/PKG-INFO +1 -1
  2. a3_python-0.1.12/a3_python/__init__.py +14 -0
  3. a3_python-0.1.12/a3_python/__main__.py +11 -0
  4. a3_python-0.1.12/a3_python/analyzer.py +6210 -0
  5. a3_python-0.1.12/a3_python/barriers/__init__.py +544 -0
  6. a3_python-0.1.12/a3_python/barriers/abstraction.py +1262 -0
  7. a3_python-0.1.12/a3_python/barriers/advanced.py +1375 -0
  8. a3_python-0.1.12/a3_python/barriers/assume_guarantee.py +2215 -0
  9. a3_python-0.1.12/a3_python/barriers/bayesian_fp_scorer.py +204 -0
  10. a3_python-0.1.12/a3_python/barriers/boolean_programs.py +2059 -0
  11. a3_python-0.1.12/a3_python/barriers/cegar_refinement.py +2340 -0
  12. a3_python-0.1.12/a3_python/barriers/cegis.py +961 -0
  13. a3_python-0.1.12/a3_python/barriers/certificate_core.py +1482 -0
  14. a3_python-0.1.12/a3_python/barriers/context_aware_verification.py +592 -0
  15. a3_python-0.1.12/a3_python/barriers/deep_barrier_theory.py +590 -0
  16. a3_python-0.1.12/a3_python/barriers/dsos_sdsos.py +2175 -0
  17. a3_python-0.1.12/a3_python/barriers/enhanced_barrier_theory.py +631 -0
  18. a3_python-0.1.12/a3_python/barriers/extreme_verification.py +2439 -0
  19. a3_python-0.1.12/a3_python/barriers/fast_barrier_filters.py +1332 -0
  20. a3_python-0.1.12/a3_python/barriers/foundations.py +1602 -0
  21. a3_python-0.1.12/a3_python/barriers/guard_to_barrier.py +478 -0
  22. a3_python-0.1.12/a3_python/barriers/houdini.py +2150 -0
  23. a3_python-0.1.12/a3_python/barriers/hscc2004.py +370 -0
  24. a3_python-0.1.12/a3_python/barriers/hybrid_barrier.py +2060 -0
  25. a3_python-0.1.12/a3_python/barriers/ic3_pdr.py +2258 -0
  26. a3_python-0.1.12/a3_python/barriers/ice.py +105 -0
  27. a3_python-0.1.12/a3_python/barriers/ice_learning.py +2477 -0
  28. a3_python-0.1.12/a3_python/barriers/impact_lazy.py +2156 -0
  29. a3_python-0.1.12/a3_python/barriers/int_bmc.py +90 -0
  30. a3_python-0.1.12/a3_python/barriers/interpolation_imc.py +2166 -0
  31. a3_python-0.1.12/a3_python/barriers/invariants.py +357 -0
  32. a3_python-0.1.12/a3_python/barriers/kitchensink_taxonomy.py +1252 -0
  33. a3_python-0.1.12/a3_python/barriers/lasserre_hierarchy.py +2212 -0
  34. a3_python-0.1.12/a3_python/barriers/learned_invariants.py +247 -0
  35. a3_python-0.1.12/a3_python/barriers/learning.py +1112 -0
  36. a3_python-0.1.12/a3_python/barriers/papers_11_to_15_complete.py +1216 -0
  37. a3_python-0.1.12/a3_python/barriers/papers_16_to_20_complete.py +1030 -0
  38. a3_python-0.1.12/a3_python/barriers/papers_1_to_5_complete.py +1066 -0
  39. a3_python-0.1.12/a3_python/barriers/papers_6_to_10_complete.py +891 -0
  40. a3_python-0.1.12/a3_python/barriers/parrilo_sos_sdp.py +2329 -0
  41. a3_python-0.1.12/a3_python/barriers/path_validation.py +269 -0
  42. a3_python-0.1.12/a3_python/barriers/pdr_spacer.py +92 -0
  43. a3_python-0.1.12/a3_python/barriers/positivstellensatz.py +2116 -0
  44. a3_python-0.1.12/a3_python/barriers/predicate_abstraction.py +2056 -0
  45. a3_python-0.1.12/a3_python/barriers/program_analysis.py +366 -0
  46. a3_python-0.1.12/a3_python/barriers/quick_precheck.py +136 -0
  47. a3_python-0.1.12/a3_python/barriers/ranking.py +634 -0
  48. a3_python-0.1.12/a3_python/barriers/ranking_synthesis.py +423 -0
  49. a3_python-0.1.12/a3_python/barriers/sos_safety.py +2125 -0
  50. a3_python-0.1.12/a3_python/barriers/sos_toolbox.py +364 -0
  51. a3_python-0.1.12/a3_python/barriers/sos_unified.py +617 -0
  52. a3_python-0.1.12/a3_python/barriers/sostools.py +2227 -0
  53. a3_python-0.1.12/a3_python/barriers/spacer_chc.py +2069 -0
  54. a3_python-0.1.12/a3_python/barriers/sparse_sos.py +2796 -0
  55. a3_python-0.1.12/a3_python/barriers/step_relation.py +483 -0
  56. a3_python-0.1.12/a3_python/barriers/stochastic_barrier.py +2069 -0
  57. a3_python-0.1.12/a3_python/barriers/sygus_synthesis.py +2538 -0
  58. a3_python-0.1.12/a3_python/barriers/synthesis.py +441 -0
  59. a3_python-0.1.12/a3_python/barriers/synthesis_engine.py +1006 -0
  60. a3_python-0.1.12/a3_python/barriers/templates.py +909 -0
  61. a3_python-0.1.12/a3_python/barriers/type_inference_verification.py +202 -0
  62. a3_python-0.1.12/a3_python/barriers/unified_sota_912.py +761 -0
  63. a3_python-0.1.12/a3_python/cfg/__init__.py +60 -0
  64. a3_python-0.1.12/a3_python/cfg/affine_loop_model.py +271 -0
  65. a3_python-0.1.12/a3_python/cfg/call_graph.py +741 -0
  66. a3_python-0.1.12/a3_python/cfg/control_flow.py +2807 -0
  67. a3_python-0.1.12/a3_python/cfg/dataflow.py +1319 -0
  68. a3_python-0.1.12/a3_python/cfg/loop_analysis.py +257 -0
  69. a3_python-0.1.12/a3_python/ci/__init__.py +11 -0
  70. a3_python-0.1.12/a3_python/ci/baseline.py +247 -0
  71. a3_python-0.1.12/a3_python/ci/config.py +143 -0
  72. a3_python-0.1.12/a3_python/ci/sarif.py +504 -0
  73. a3_python-0.1.12/a3_python/ci/triage.py +764 -0
  74. a3_python-0.1.12/a3_python/cli.py +943 -0
  75. a3_python-0.1.12/a3_python/confidence_interval.py +121 -0
  76. a3_python-0.1.12/a3_python/confidence_scoring.py +471 -0
  77. a3_python-0.1.12/a3_python/contracts/__init__.py +33 -0
  78. a3_python-0.1.12/a3_python/contracts/barriers/__init__.py +210 -0
  79. a3_python-0.1.12/a3_python/contracts/barriers/abstract_values.py +1303 -0
  80. a3_python-0.1.12/a3_python/contracts/barriers/contracts.py +963 -0
  81. a3_python-0.1.12/a3_python/contracts/barriers/deferred.py +913 -0
  82. a3_python-0.1.12/a3_python/contracts/barriers/device_analyzer.py +584 -0
  83. a3_python-0.1.12/a3_python/contracts/barriers/intervals.py +1105 -0
  84. a3_python-0.1.12/a3_python/contracts/barriers/test_barriers.py +477 -0
  85. a3_python-0.1.12/a3_python/contracts/barriers/torch/__init__.py +161 -0
  86. a3_python-0.1.12/a3_python/contracts/barriers/torch/accelerators.py +474 -0
  87. a3_python-0.1.12/a3_python/contracts/barriers/torch/amp.py +655 -0
  88. a3_python-0.1.12/a3_python/contracts/barriers/torch/autograd.py +920 -0
  89. a3_python-0.1.12/a3_python/contracts/barriers/torch/backends.py +723 -0
  90. a3_python-0.1.12/a3_python/contracts/barriers/torch/core.py +2642 -0
  91. a3_python-0.1.12/a3_python/contracts/barriers/torch/cuda.py +1392 -0
  92. a3_python-0.1.12/a3_python/contracts/barriers/torch/data.py +663 -0
  93. a3_python-0.1.12/a3_python/contracts/barriers/torch/distributed.py +1066 -0
  94. a3_python-0.1.12/a3_python/contracts/barriers/torch/distributions.py +621 -0
  95. a3_python-0.1.12/a3_python/contracts/barriers/torch/experimental.py +985 -0
  96. a3_python-0.1.12/a3_python/contracts/barriers/torch/export_compile.py +974 -0
  97. a3_python-0.1.12/a3_python/contracts/barriers/torch/fft.py +206 -0
  98. a3_python-0.1.12/a3_python/contracts/barriers/torch/hub_package.py +536 -0
  99. a3_python-0.1.12/a3_python/contracts/barriers/torch/jit.py +629 -0
  100. a3_python-0.1.12/a3_python/contracts/barriers/torch/linalg.py +383 -0
  101. a3_python-0.1.12/a3_python/contracts/barriers/torch/nn_functional.py +1150 -0
  102. a3_python-0.1.12/a3_python/contracts/barriers/torch/nn_modules.py +1337 -0
  103. a3_python-0.1.12/a3_python/contracts/barriers/torch/onnx.py +347 -0
  104. a3_python-0.1.12/a3_python/contracts/barriers/torch/optim.py +873 -0
  105. a3_python-0.1.12/a3_python/contracts/barriers/torch/profiler.py +633 -0
  106. a3_python-0.1.12/a3_python/contracts/barriers/torch/quantization.py +786 -0
  107. a3_python-0.1.12/a3_python/contracts/barriers/torch/registry.py +314 -0
  108. a3_python-0.1.12/a3_python/contracts/barriers/torch/sparse.py +960 -0
  109. a3_python-0.1.12/a3_python/contracts/barriers/torch/special.py +575 -0
  110. a3_python-0.1.12/a3_python/contracts/barriers/torch/tensor.py +4144 -0
  111. a3_python-0.1.12/a3_python/contracts/barriers/torch/utils.py +798 -0
  112. a3_python-0.1.12/a3_python/contracts/base.py +1145 -0
  113. a3_python-0.1.12/a3_python/contracts/builtin_relations.py +990 -0
  114. a3_python-0.1.12/a3_python/contracts/checker.py +689 -0
  115. a3_python-0.1.12/a3_python/contracts/relations.py +172 -0
  116. a3_python-0.1.12/a3_python/contracts/schema.py +190 -0
  117. a3_python-0.1.12/a3_python/contracts/security.py +994 -0
  118. a3_python-0.1.12/a3_python/contracts/security_lattice.py +2966 -0
  119. a3_python-0.1.12/a3_python/contracts/stdlib.py +909 -0
  120. a3_python-0.1.12/a3_python/contracts/stdlib_module_relations.py +499 -0
  121. a3_python-0.1.12/a3_python/contracts/stdlib_stubs.py +876 -0
  122. a3_python-0.1.12/a3_python/contracts/torch_contracts.py +1523 -0
  123. a3_python-0.1.12/a3_python/dse/__init__.py +72 -0
  124. a3_python-0.1.12/a3_python/dse/concolic.py +491 -0
  125. a3_python-0.1.12/a3_python/dse/constraint_solver.py +301 -0
  126. a3_python-0.1.12/a3_python/dse/hybrid.py +107 -0
  127. a3_python-0.1.12/a3_python/dse/lockstep.py +148 -0
  128. a3_python-0.1.12/a3_python/dse/path_condition.py +854 -0
  129. a3_python-0.1.12/a3_python/dse/selective_concolic.py +513 -0
  130. a3_python-0.1.12/a3_python/dse/stochastic_replay.py +78 -0
  131. a3_python-0.1.12/a3_python/dse/value_flow.py +995 -0
  132. a3_python-0.1.12/a3_python/evaluation/__init__.py +1 -0
  133. a3_python-0.1.12/a3_python/evaluation/deduplication.py +280 -0
  134. a3_python-0.1.12/a3_python/evaluation/repo_list.py +165 -0
  135. a3_python-0.1.12/a3_python/evaluation/scanner.py +362 -0
  136. a3_python-0.1.12/a3_python/fp_context.py +579 -0
  137. a3_python-0.1.12/a3_python/frontend/__init__.py +1 -0
  138. a3_python-0.1.12/a3_python/frontend/entry_points.py +423 -0
  139. a3_python-0.1.12/a3_python/frontend/loader.py +51 -0
  140. a3_python-0.1.12/a3_python/semantics/__init__.py +1 -0
  141. a3_python-0.1.12/a3_python/semantics/ast_guard_analysis.py +698 -0
  142. a3_python-0.1.12/a3_python/semantics/bmc.py +81 -0
  143. a3_python-0.1.12/a3_python/semantics/bytecode_summaries.py +1978 -0
  144. a3_python-0.1.12/a3_python/semantics/concrete_vm.py +264 -0
  145. a3_python-0.1.12/a3_python/semantics/crash_summaries.py +2642 -0
  146. a3_python-0.1.12/a3_python/semantics/framework_mocks.py +262 -0
  147. a3_python-0.1.12/a3_python/semantics/intent_detector.py +557 -0
  148. a3_python-0.1.12/a3_python/semantics/interprocedural_barriers.py +794 -0
  149. a3_python-0.1.12/a3_python/semantics/interprocedural_bugs.py +1765 -0
  150. a3_python-0.1.12/a3_python/semantics/interprocedural_guards.py +1455 -0
  151. a3_python-0.1.12/a3_python/semantics/interprocedural_taint.py +724 -0
  152. a3_python-0.1.12/a3_python/semantics/intraprocedural_taint.py +1800 -0
  153. a3_python-0.1.12/a3_python/semantics/invariant_integration.py +391 -0
  154. a3_python-0.1.12/a3_python/semantics/oracles.py +102 -0
  155. a3_python-0.1.12/a3_python/semantics/security_tracker.py +364 -0
  156. a3_python-0.1.12/a3_python/semantics/security_tracker_lattice.py +1142 -0
  157. a3_python-0.1.12/a3_python/semantics/sota_interprocedural.py +738 -0
  158. a3_python-0.1.12/a3_python/semantics/sota_intraprocedural.py +1785 -0
  159. a3_python-0.1.12/a3_python/semantics/state.py +55 -0
  160. a3_python-0.1.12/a3_python/semantics/summaries.py +1323 -0
  161. a3_python-0.1.12/a3_python/semantics/symbolic_vm.py +7900 -0
  162. a3_python-0.1.12/a3_python/semantics/termination_integration.py +402 -0
  163. a3_python-0.1.12/a3_python/stochastic_risk.py +92 -0
  164. a3_python-0.1.12/a3_python/unsafe/__init__.py +1 -0
  165. a3_python-0.1.12/a3_python/unsafe/assert_fail.py +54 -0
  166. a3_python-0.1.12/a3_python/unsafe/bounds.py +117 -0
  167. a3_python-0.1.12/a3_python/unsafe/collection_bugs.py +24 -0
  168. a3_python-0.1.12/a3_python/unsafe/data_race.py +272 -0
  169. a3_python-0.1.12/a3_python/unsafe/deadlock.py +599 -0
  170. a3_python-0.1.12/a3_python/unsafe/div_zero.py +113 -0
  171. a3_python-0.1.12/a3_python/unsafe/double_free.py +148 -0
  172. a3_python-0.1.12/a3_python/unsafe/exception_bugs.py +888 -0
  173. a3_python-0.1.12/a3_python/unsafe/fp_domain.py +67 -0
  174. a3_python-0.1.12/a3_python/unsafe/info_leak.py +188 -0
  175. a3_python-0.1.12/a3_python/unsafe/integer_overflow.py +61 -0
  176. a3_python-0.1.12/a3_python/unsafe/iterator_invalid.py +78 -0
  177. a3_python-0.1.12/a3_python/unsafe/memory_leak.py +99 -0
  178. a3_python-0.1.12/a3_python/unsafe/non_termination.py +200 -0
  179. a3_python-0.1.12/a3_python/unsafe/null_ptr.py +130 -0
  180. a3_python-0.1.12/a3_python/unsafe/panic.py +101 -0
  181. a3_python-0.1.12/a3_python/unsafe/registry.py +317 -0
  182. a3_python-0.1.12/a3_python/unsafe/security/__init__.py +163 -0
  183. a3_python-0.1.12/a3_python/unsafe/security/cleartext.py +100 -0
  184. a3_python-0.1.12/a3_python/unsafe/security/code_injection.py +68 -0
  185. a3_python-0.1.12/a3_python/unsafe/security/command_injection.py +67 -0
  186. a3_python-0.1.12/a3_python/unsafe/security/config.py +128 -0
  187. a3_python-0.1.12/a3_python/unsafe/security/crypto.py +130 -0
  188. a3_python-0.1.12/a3_python/unsafe/security/deserialization.py +65 -0
  189. a3_python-0.1.12/a3_python/unsafe/security/filesystem.py +154 -0
  190. a3_python-0.1.12/a3_python/unsafe/security/injection.py +197 -0
  191. a3_python-0.1.12/a3_python/unsafe/security/lattice_detectors.py +687 -0
  192. a3_python-0.1.12/a3_python/unsafe/security/path_injection.py +65 -0
  193. a3_python-0.1.12/a3_python/unsafe/security/regex.py +183 -0
  194. a3_python-0.1.12/a3_python/unsafe/security/sql_injection.py +103 -0
  195. a3_python-0.1.12/a3_python/unsafe/security/ssrf.py +66 -0
  196. a3_python-0.1.12/a3_python/unsafe/security/webapp.py +175 -0
  197. a3_python-0.1.12/a3_python/unsafe/security/xml.py +110 -0
  198. a3_python-0.1.12/a3_python/unsafe/security/xss.py +67 -0
  199. a3_python-0.1.12/a3_python/unsafe/security/xxe.py +66 -0
  200. a3_python-0.1.12/a3_python/unsafe/send_sync.py +279 -0
  201. a3_python-0.1.12/a3_python/unsafe/stack_overflow.py +79 -0
  202. a3_python-0.1.12/a3_python/unsafe/timing_channel.py +273 -0
  203. a3_python-0.1.12/a3_python/unsafe/type_confusion.py +129 -0
  204. a3_python-0.1.12/a3_python/unsafe/uninit_memory.py +148 -0
  205. a3_python-0.1.12/a3_python/unsafe/use_after_free.py +107 -0
  206. a3_python-0.1.12/a3_python/z3model/__init__.py +1 -0
  207. a3_python-0.1.12/a3_python/z3model/heap.py +339 -0
  208. a3_python-0.1.12/a3_python/z3model/taint.py +441 -0
  209. a3_python-0.1.12/a3_python/z3model/taint_lattice.py +1629 -0
  210. a3_python-0.1.12/a3_python/z3model/type_tracking.py +303 -0
  211. a3_python-0.1.12/a3_python/z3model/values.py +1299 -0
  212. {a3_python-0.1.11 → a3_python-0.1.12}/a3_python.egg-info/PKG-INFO +1 -1
  213. a3_python-0.1.12/a3_python.egg-info/SOURCES.txt +402 -0
  214. {a3_python-0.1.11 → a3_python-0.1.12}/pyproject.toml +1 -1
  215. a3_python-0.1.11/a3_python.egg-info/SOURCES.txt +0 -192
  216. {a3_python-0.1.11 → a3_python-0.1.12}/README.md +0 -0
  217. {a3_python-0.1.11 → a3_python-0.1.12}/a3_python/ci/init_cmd.py +0 -0
  218. {a3_python-0.1.11 → a3_python-0.1.12}/a3_python/ci/templates/a3-pr-scan.yml +0 -0
  219. {a3_python-0.1.11 → a3_python-0.1.12}/a3_python/ci/templates/a3-scheduled-scan.yml +0 -0
  220. {a3_python-0.1.11 → a3_python-0.1.12}/a3_python.egg-info/dependency_links.txt +0 -0
  221. {a3_python-0.1.11 → a3_python-0.1.12}/a3_python.egg-info/entry_points.txt +0 -0
  222. {a3_python-0.1.11 → a3_python-0.1.12}/a3_python.egg-info/requires.txt +0 -0
  223. {a3_python-0.1.11 → a3_python-0.1.12}/a3_python.egg-info/top_level.txt +0 -0
  224. {a3_python-0.1.11 → a3_python-0.1.12}/setup.cfg +0 -0
  225. {a3_python-0.1.11 → a3_python-0.1.12}/tests/test_all_security.py +0 -0
  226. {a3_python-0.1.11 → a3_python-0.1.12}/tests/test_analyzer_dse_integration.py +0 -0
  227. {a3_python-0.1.11 → a3_python-0.1.12}/tests/test_analyzer_hybrid_witness_integration.py +0 -0
  228. {a3_python-0.1.11 → a3_python-0.1.12}/tests/test_analyzer_safe_integration.py +0 -0
  229. {a3_python-0.1.11 → a3_python-0.1.12}/tests/test_auto_template_synthesis.py +0 -0
  230. {a3_python-0.1.11 → a3_python-0.1.12}/tests/test_barrier_analysis.py +0 -0
  231. {a3_python-0.1.11 → a3_python-0.1.12}/tests/test_barrier_on_qlib.py +0 -0
  232. {a3_python-0.1.11 → a3_python-0.1.12}/tests/test_barriers.py +0 -0
  233. {a3_python-0.1.11 → a3_python-0.1.12}/tests/test_barriers_ranking.py +0 -0
  234. {a3_python-0.1.11 → a3_python-0.1.12}/tests/test_binary_op_bitwise.py +0 -0
  235. {a3_python-0.1.11 → a3_python-0.1.12}/tests/test_binary_op_power.py +0 -0
  236. {a3_python-0.1.11 → a3_python-0.1.12}/tests/test_binary_ops_extended.py +0 -0
  237. {a3_python-0.1.11 → a3_python-0.1.12}/tests/test_build_list.py +0 -0
  238. {a3_python-0.1.11 → a3_python-0.1.12}/tests/test_build_map.py +0 -0
  239. {a3_python-0.1.11 → a3_python-0.1.12}/tests/test_build_set.py +0 -0
  240. {a3_python-0.1.11 → a3_python-0.1.12}/tests/test_build_string.py +0 -0
  241. {a3_python-0.1.11 → a3_python-0.1.12}/tests/test_call_intrinsic_1.py +0 -0
  242. {a3_python-0.1.11 → a3_python-0.1.12}/tests/test_call_kw.py +0 -0
  243. {a3_python-0.1.11 → a3_python-0.1.12}/tests/test_cegis_counterexamples.py +0 -0
  244. {a3_python-0.1.11 → a3_python-0.1.12}/tests/test_cegis_synthesis.py +0 -0
  245. {a3_python-0.1.11 → a3_python-0.1.12}/tests/test_cli.py +0 -0
  246. {a3_python-0.1.11 → a3_python-0.1.12}/tests/test_cli_termination.py +0 -0
  247. {a3_python-0.1.11 → a3_python-0.1.12}/tests/test_closures.py +0 -0
  248. {a3_python-0.1.11 → a3_python-0.1.12}/tests/test_cmd_inj.py +0 -0
  249. {a3_python-0.1.11 → a3_python-0.1.12}/tests/test_collection_bugs.py +0 -0
  250. {a3_python-0.1.11 → a3_python-0.1.12}/tests/test_concrete_taint_path.py +0 -0
  251. {a3_python-0.1.11 → a3_python-0.1.12}/tests/test_confidence_null_ptr_bounds.py +0 -0
  252. {a3_python-0.1.11 → a3_python-0.1.12}/tests/test_connection_pool_taint.py +0 -0
  253. {a3_python-0.1.11 → a3_python-0.1.12}/tests/test_constraint_solver.py +0 -0
  254. {a3_python-0.1.11 → a3_python-0.1.12}/tests/test_contains_dict.py +0 -0
  255. {a3_python-0.1.11 → a3_python-0.1.12}/tests/test_contains_op.py +0 -0
  256. {a3_python-0.1.11 → a3_python-0.1.12}/tests/test_context_precision_demo.py +0 -0
  257. {a3_python-0.1.11 → a3_python-0.1.12}/tests/test_context_sensitivity.py +0 -0
  258. {a3_python-0.1.11 → a3_python-0.1.12}/tests/test_contract_matching_specificity.py +0 -0
  259. {a3_python-0.1.11 → a3_python-0.1.12}/tests/test_contracts.py +0 -0
  260. {a3_python-0.1.11 → a3_python-0.1.12}/tests/test_contracts_integration.py +0 -0
  261. {a3_python-0.1.11 → a3_python-0.1.12}/tests/test_cookie_injection.py +0 -0
  262. {a3_python-0.1.11 → a3_python-0.1.12}/tests/test_crash_summaries_compact_proofs.py +0 -0
  263. {a3_python-0.1.11 → a3_python-0.1.12}/tests/test_cross_module_taint.py +0 -0
  264. {a3_python-0.1.11 → a3_python-0.1.12}/tests/test_cursor_taint.py +0 -0
  265. {a3_python-0.1.11 → a3_python-0.1.12}/tests/test_deduplication.py +0 -0
  266. {a3_python-0.1.11 → a3_python-0.1.12}/tests/test_deepspeed.py +0 -0
  267. {a3_python-0.1.11 → a3_python-0.1.12}/tests/test_deserialization_detection.py +0 -0
  268. {a3_python-0.1.11 → a3_python-0.1.12}/tests/test_dict_merge.py +0 -0
  269. {a3_python-0.1.11 → a3_python-0.1.12}/tests/test_dict_methods.py +0 -0
  270. {a3_python-0.1.11 → a3_python-0.1.12}/tests/test_dict_taint_tracking.py +0 -0
  271. {a3_python-0.1.11 → a3_python-0.1.12}/tests/test_dict_update.py +0 -0
  272. {a3_python-0.1.11 → a3_python-0.1.12}/tests/test_django_render_sanitizer.py +0 -0
  273. {a3_python-0.1.11 → a3_python-0.1.12}/tests/test_django_template_sanitization.py +0 -0
  274. {a3_python-0.1.11 → a3_python-0.1.12}/tests/test_dse.py +0 -0
  275. {a3_python-0.1.11 → a3_python-0.1.12}/tests/test_dse_context.py +0 -0
  276. {a3_python-0.1.11 → a3_python-0.1.12}/tests/test_e2e_taint_path_filtering.py +0 -0
  277. {a3_python-0.1.11 → a3_python-0.1.12}/tests/test_ellipsis_slice.py +0 -0
  278. {a3_python-0.1.11 → a3_python-0.1.12}/tests/test_exception_bug_types.py +0 -0
  279. {a3_python-0.1.11 → a3_python-0.1.12}/tests/test_exception_handlers.py +0 -0
  280. {a3_python-0.1.11 → a3_python-0.1.12}/tests/test_exception_path_forking.py +0 -0
  281. {a3_python-0.1.11 → a3_python-0.1.12}/tests/test_extended_arg.py +0 -0
  282. {a3_python-0.1.11 → a3_python-0.1.12}/tests/test_file_object_taint.py +0 -0
  283. {a3_python-0.1.11 → a3_python-0.1.12}/tests/test_file_object_taint_vm.py +0 -0
  284. {a3_python-0.1.11 → a3_python-0.1.12}/tests/test_flaml.py +0 -0
  285. {a3_python-0.1.11 → a3_python-0.1.12}/tests/test_flask_debug.py +0 -0
  286. {a3_python-0.1.11 → a3_python-0.1.12}/tests/test_function_level_termination.py +0 -0
  287. {a3_python-0.1.11 → a3_python-0.1.12}/tests/test_heap_observers.py +0 -0
  288. {a3_python-0.1.11 → a3_python-0.1.12}/tests/test_hscc2004_barrier_certificates.py +0 -0
  289. {a3_python-0.1.11 → a3_python-0.1.12}/tests/test_hybrid_concolic_symbolic_unknown_libs.py +0 -0
  290. {a3_python-0.1.11 → a3_python-0.1.12}/tests/test_ide_precision.py +0 -0
  291. {a3_python-0.1.11 → a3_python-0.1.12}/tests/test_ide_return_propagation.py +0 -0
  292. {a3_python-0.1.11 → a3_python-0.1.12}/tests/test_implicit_flow_security.py +0 -0
  293. {a3_python-0.1.11 → a3_python-0.1.12}/tests/test_import_from.py +0 -0
  294. {a3_python-0.1.11 → a3_python-0.1.12}/tests/test_import_tracking.py +0 -0
  295. {a3_python-0.1.11 → a3_python-0.1.12}/tests/test_insecure_cookie.py +0 -0
  296. {a3_python-0.1.11 → a3_python-0.1.12}/tests/test_interprocedural.py +0 -0
  297. {a3_python-0.1.11 → a3_python-0.1.12}/tests/test_interprocedural_crash_analysis.py +0 -0
  298. {a3_python-0.1.11 → a3_python-0.1.12}/tests/test_interprocedural_security.py +0 -0
  299. {a3_python-0.1.11 → a3_python-0.1.12}/tests/test_interprocedural_sigma.py +0 -0
  300. {a3_python-0.1.11 → a3_python-0.1.12}/tests/test_intraprocedural_analysis.py +0 -0
  301. {a3_python-0.1.11 → a3_python-0.1.12}/tests/test_intraprocedural_integration.py +0 -0
  302. {a3_python-0.1.11 → a3_python-0.1.12}/tests/test_intraprocedural_phase2.py +0 -0
  303. {a3_python-0.1.11 → a3_python-0.1.12}/tests/test_intraprocedural_phase3.py +0 -0
  304. {a3_python-0.1.11 → a3_python-0.1.12}/tests/test_intraprocedural_taint.py +0 -0
  305. {a3_python-0.1.11 → a3_python-0.1.12}/tests/test_invariant_integration.py +0 -0
  306. {a3_python-0.1.11 → a3_python-0.1.12}/tests/test_is_op.py +0 -0
  307. {a3_python-0.1.11 → a3_python-0.1.12}/tests/test_iteration_601.py +0 -0
  308. {a3_python-0.1.11 → a3_python-0.1.12}/tests/test_jump_forward.py +0 -0
  309. {a3_python-0.1.11 → a3_python-0.1.12}/tests/test_kitchensink_sota.py +0 -0
  310. {a3_python-0.1.11 → a3_python-0.1.12}/tests/test_kitchensink_taxonomy.py +0 -0
  311. {a3_python-0.1.11 → a3_python-0.1.12}/tests/test_lexicographic_ranking.py +0 -0
  312. {a3_python-0.1.11 → a3_python-0.1.12}/tests/test_lightgbm.py +0 -0
  313. {a3_python-0.1.11 → a3_python-0.1.12}/tests/test_list_append.py +0 -0
  314. {a3_python-0.1.11 → a3_python-0.1.12}/tests/test_load_fast_and_clear.py +0 -0
  315. {a3_python-0.1.11 → a3_python-0.1.12}/tests/test_load_fast_borrow.py +0 -0
  316. {a3_python-0.1.11 → a3_python-0.1.12}/tests/test_lockstep_concolic_replay.py +0 -0
  317. {a3_python-0.1.11 → a3_python-0.1.12}/tests/test_loop_opcodes.py +0 -0
  318. {a3_python-0.1.11 → a3_python-0.1.12}/tests/test_map_add.py +0 -0
  319. {a3_python-0.1.11 → a3_python-0.1.12}/tests/test_module_init_detection.py +0 -0
  320. {a3_python-0.1.11 → a3_python-0.1.12}/tests/test_module_init_filtering.py +0 -0
  321. {a3_python-0.1.11 → a3_python-0.1.12}/tests/test_module_vs_function_level_detection.py +0 -0
  322. {a3_python-0.1.11 → a3_python-0.1.12}/tests/test_no_concolic_mode.py +0 -0
  323. {a3_python-0.1.11 → a3_python-0.1.12}/tests/test_opcodes_build_tuple_format.py +0 -0
  324. {a3_python-0.1.11 → a3_python-0.1.12}/tests/test_open_exception_handler.py +0 -0
  325. {a3_python-0.1.11 → a3_python-0.1.12}/tests/test_orm_taint.py +0 -0
  326. {a3_python-0.1.11 → a3_python-0.1.12}/tests/test_path_forking_unit.py +0 -0
  327. {a3_python-0.1.11 → a3_python-0.1.12}/tests/test_path_injection_detection.py +0 -0
  328. {a3_python-0.1.11 → a3_python-0.1.12}/tests/test_path_limit_soundness.py +0 -0
  329. {a3_python-0.1.11 → a3_python-0.1.12}/tests/test_path_validation.py +0 -0
  330. {a3_python-0.1.11 → a3_python-0.1.12}/tests/test_polynomial_barriers.py +0 -0
  331. {a3_python-0.1.11 → a3_python-0.1.12}/tests/test_pop_jump_if_none.py +0 -0
  332. {a3_python-0.1.11 → a3_python-0.1.12}/tests/test_program_analysis.py +0 -0
  333. {a3_python-0.1.11 → a3_python-0.1.12}/tests/test_qlib_full_analyzer.py +0 -0
  334. {a3_python-0.1.11 → a3_python-0.1.12}/tests/test_qlib_known_bugs.py +0 -0
  335. {a3_python-0.1.11 → a3_python-0.1.12}/tests/test_qlib_models.py +0 -0
  336. {a3_python-0.1.11 → a3_python-0.1.12}/tests/test_ranking_synthesis.py +0 -0
  337. {a3_python-0.1.11 → a3_python-0.1.12}/tests/test_ranking_synthesis_lexicographic_integration.py +0 -0
  338. {a3_python-0.1.11 → a3_python-0.1.12}/tests/test_receiver_taint_vm.py +0 -0
  339. {a3_python-0.1.11 → a3_python-0.1.12}/tests/test_redos_detection.py +0 -0
  340. {a3_python-0.1.11 → a3_python-0.1.12}/tests/test_regex_pattern_contracts.py +0 -0
  341. {a3_python-0.1.11 → a3_python-0.1.12}/tests/test_regex_validation_sanitizers.py +0 -0
  342. {a3_python-0.1.11 → a3_python-0.1.12}/tests/test_relational_summaries.py +0 -0
  343. {a3_python-0.1.11 → a3_python-0.1.12}/tests/test_safe_proofs_e2e.py +0 -0
  344. {a3_python-0.1.11 → a3_python-0.1.12}/tests/test_security_api.py +0 -0
  345. {a3_python-0.1.11 → a3_python-0.1.12}/tests/test_security_bugs.py +0 -0
  346. {a3_python-0.1.11 → a3_python-0.1.12}/tests/test_semantics_concrete.py +0 -0
  347. {a3_python-0.1.11 → a3_python-0.1.12}/tests/test_semantics_generators.py +0 -0
  348. {a3_python-0.1.11 → a3_python-0.1.12}/tests/test_semantics_symbolic.py +0 -0
  349. {a3_python-0.1.11 → a3_python-0.1.12}/tests/test_sensitivity_inference.py +0 -0
  350. {a3_python-0.1.11 → a3_python-0.1.12}/tests/test_set_add.py +0 -0
  351. {a3_python-0.1.11 → a3_python-0.1.12}/tests/test_setup_annotations.py +0 -0
  352. {a3_python-0.1.11 → a3_python-0.1.12}/tests/test_sigma_taint_regression.py +0 -0
  353. {a3_python-0.1.11 → a3_python-0.1.12}/tests/test_socket_taint.py +0 -0
  354. {a3_python-0.1.11 → a3_python-0.1.12}/tests/test_sos_for_safety.py +0 -0
  355. {a3_python-0.1.11 → a3_python-0.1.12}/tests/test_sos_guarded_divzero.py +0 -0
  356. {a3_python-0.1.11 → a3_python-0.1.12}/tests/test_sos_toolbox.py +0 -0
  357. {a3_python-0.1.11 → a3_python-0.1.12}/tests/test_sota_interprocedural.py +0 -0
  358. {a3_python-0.1.11 → a3_python-0.1.12}/tests/test_sota_intraprocedural.py +0 -0
  359. {a3_python-0.1.11 → a3_python-0.1.12}/tests/test_sota_pdr_bmc_ice.py +0 -0
  360. {a3_python-0.1.11 → a3_python-0.1.12}/tests/test_ssrf_detection.py +0 -0
  361. {a3_python-0.1.11 → a3_python-0.1.12}/tests/test_star_import.py +0 -0
  362. {a3_python-0.1.11 → a3_python-0.1.12}/tests/test_stdlib_contracts_expansion.py +0 -0
  363. {a3_python-0.1.11 → a3_python-0.1.12}/tests/test_stdlib_module_relations.py +0 -0
  364. {a3_python-0.1.11 → a3_python-0.1.12}/tests/test_stdlib_stubs.py +0 -0
  365. {a3_python-0.1.11 → a3_python-0.1.12}/tests/test_step_relation.py +0 -0
  366. {a3_python-0.1.11 → a3_python-0.1.12}/tests/test_stochastic_precondition_risk.py +0 -0
  367. {a3_python-0.1.11 → a3_python-0.1.12}/tests/test_stochastic_replay.py +0 -0
  368. {a3_python-0.1.11 → a3_python-0.1.12}/tests/test_store_fast_load_fast.py +0 -0
  369. {a3_python-0.1.11 → a3_python-0.1.12}/tests/test_store_global.py +0 -0
  370. {a3_python-0.1.11 → a3_python-0.1.12}/tests/test_store_subscr.py +0 -0
  371. {a3_python-0.1.11 → a3_python-0.1.12}/tests/test_subprocess_shell_param.py +0 -0
  372. {a3_python-0.1.11 → a3_python-0.1.12}/tests/test_symbolic_violation_provenance.py +0 -0
  373. {a3_python-0.1.11 → a3_python-0.1.12}/tests/test_taint_lattice.py +0 -0
  374. {a3_python-0.1.11 → a3_python-0.1.12}/tests/test_tarslip_kwargs.py +0 -0
  375. {a3_python-0.1.11 → a3_python-0.1.12}/tests/test_termination_integration.py +0 -0
  376. {a3_python-0.1.11 → a3_python-0.1.12}/tests/test_type_annotations.py +0 -0
  377. {a3_python-0.1.11 → a3_python-0.1.12}/tests/test_type_based_sanitizers.py +0 -0
  378. {a3_python-0.1.11 → a3_python-0.1.12}/tests/test_type_tracking.py +0 -0
  379. {a3_python-0.1.11 → a3_python-0.1.12}/tests/test_unary_operations.py +0 -0
  380. {a3_python-0.1.11 → a3_python-0.1.12}/tests/test_unpack_sequence.py +0 -0
  381. {a3_python-0.1.11 → a3_python-0.1.12}/tests/test_unpack_sequence_fix.py +0 -0
  382. {a3_python-0.1.11 → a3_python-0.1.12}/tests/test_unsafe_assert_fail.py +0 -0
  383. {a3_python-0.1.11 → a3_python-0.1.12}/tests/test_unsafe_bounds.py +0 -0
  384. {a3_python-0.1.11 → a3_python-0.1.12}/tests/test_unsafe_data_race.py +0 -0
  385. {a3_python-0.1.11 → a3_python-0.1.12}/tests/test_unsafe_deadlock.py +0 -0
  386. {a3_python-0.1.11 → a3_python-0.1.12}/tests/test_unsafe_div_zero.py +0 -0
  387. {a3_python-0.1.11 → a3_python-0.1.12}/tests/test_unsafe_double_free.py +0 -0
  388. {a3_python-0.1.11 → a3_python-0.1.12}/tests/test_unsafe_fp_domain.py +0 -0
  389. {a3_python-0.1.11 → a3_python-0.1.12}/tests/test_unsafe_info_leak.py +0 -0
  390. {a3_python-0.1.11 → a3_python-0.1.12}/tests/test_unsafe_integer_overflow.py +0 -0
  391. {a3_python-0.1.11 → a3_python-0.1.12}/tests/test_unsafe_iterator_invalid.py +0 -0
  392. {a3_python-0.1.11 → a3_python-0.1.12}/tests/test_unsafe_memory_leak.py +0 -0
  393. {a3_python-0.1.11 → a3_python-0.1.12}/tests/test_unsafe_non_termination.py +0 -0
  394. {a3_python-0.1.11 → a3_python-0.1.12}/tests/test_unsafe_null_ptr.py +0 -0
  395. {a3_python-0.1.11 → a3_python-0.1.12}/tests/test_unsafe_panic.py +0 -0
  396. {a3_python-0.1.11 → a3_python-0.1.12}/tests/test_unsafe_send_sync.py +0 -0
  397. {a3_python-0.1.11 → a3_python-0.1.12}/tests/test_unsafe_stack_overflow.py +0 -0
  398. {a3_python-0.1.11 → a3_python-0.1.12}/tests/test_unsafe_timing_channel.py +0 -0
  399. {a3_python-0.1.11 → a3_python-0.1.12}/tests/test_unsafe_type_confusion.py +0 -0
  400. {a3_python-0.1.11 → a3_python-0.1.12}/tests/test_unsafe_uninit_memory.py +0 -0
  401. {a3_python-0.1.11 → a3_python-0.1.12}/tests/test_user_function_detection.py +0 -0
  402. {a3_python-0.1.11 → a3_python-0.1.12}/tests/test_user_function_module_init.py +0 -0
  403. {a3_python-0.1.11 → a3_python-0.1.12}/tests/test_xml_bomb.py +0 -0
  404. {a3_python-0.1.11 → a3_python-0.1.12}/tests/test_xxe_detection.py +0 -0
  405. {a3_python-0.1.11 → a3_python-0.1.12}/tests/test_z3_variable_tracking.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: a3-python
3
- Version: 0.1.11
3
+ Version: 0.1.12
4
4
  Summary: Catch real Python bugs before production — 99%+ accuracy, Z3 symbolic execution, LLM-powered false-positive filtering, zero-config GitHub CI
5
5
  Requires-Python: >=3.11
6
6
  Description-Content-Type: text/markdown
@@ -0,0 +1,14 @@
1
+ """
2
+ A³: Advanced Automated Analysis for Python
3
+
4
+ Stateful, Continuous Python Semantics + Barrier-Certificate Verifier
5
+
6
+ A program analysis toolchain that produces:
7
+ 1. BUG: model-checked reachable unsafe state with concrete counterexample trace
8
+ 2. SAFE: proof (barrier certificate / inductive invariant) of unreachability
9
+ 3. UNKNOWN: neither proof nor counterexample
10
+
11
+ No heuristics. Grounded in Python→Z3 heap/transition/barrier model.
12
+ """
13
+
14
+ __version__ = "0.1.10"
@@ -0,0 +1,11 @@
1
+ """
2
+ Allow running pyfromscratch as a module:
3
+
4
+ python3.11 -m pyfromscratch <target> [options]
5
+
6
+ Delegates to pyfromscratch.cli:main().
7
+ """
8
+ import sys
9
+ from .cli import main
10
+
11
+ sys.exit(main())