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.
- {a3_python-0.1.11 → a3_python-0.1.12}/PKG-INFO +1 -1
- a3_python-0.1.12/a3_python/__init__.py +14 -0
- a3_python-0.1.12/a3_python/__main__.py +11 -0
- a3_python-0.1.12/a3_python/analyzer.py +6210 -0
- a3_python-0.1.12/a3_python/barriers/__init__.py +544 -0
- a3_python-0.1.12/a3_python/barriers/abstraction.py +1262 -0
- a3_python-0.1.12/a3_python/barriers/advanced.py +1375 -0
- a3_python-0.1.12/a3_python/barriers/assume_guarantee.py +2215 -0
- a3_python-0.1.12/a3_python/barriers/bayesian_fp_scorer.py +204 -0
- a3_python-0.1.12/a3_python/barriers/boolean_programs.py +2059 -0
- a3_python-0.1.12/a3_python/barriers/cegar_refinement.py +2340 -0
- a3_python-0.1.12/a3_python/barriers/cegis.py +961 -0
- a3_python-0.1.12/a3_python/barriers/certificate_core.py +1482 -0
- a3_python-0.1.12/a3_python/barriers/context_aware_verification.py +592 -0
- a3_python-0.1.12/a3_python/barriers/deep_barrier_theory.py +590 -0
- a3_python-0.1.12/a3_python/barriers/dsos_sdsos.py +2175 -0
- a3_python-0.1.12/a3_python/barriers/enhanced_barrier_theory.py +631 -0
- a3_python-0.1.12/a3_python/barriers/extreme_verification.py +2439 -0
- a3_python-0.1.12/a3_python/barriers/fast_barrier_filters.py +1332 -0
- a3_python-0.1.12/a3_python/barriers/foundations.py +1602 -0
- a3_python-0.1.12/a3_python/barriers/guard_to_barrier.py +478 -0
- a3_python-0.1.12/a3_python/barriers/houdini.py +2150 -0
- a3_python-0.1.12/a3_python/barriers/hscc2004.py +370 -0
- a3_python-0.1.12/a3_python/barriers/hybrid_barrier.py +2060 -0
- a3_python-0.1.12/a3_python/barriers/ic3_pdr.py +2258 -0
- a3_python-0.1.12/a3_python/barriers/ice.py +105 -0
- a3_python-0.1.12/a3_python/barriers/ice_learning.py +2477 -0
- a3_python-0.1.12/a3_python/barriers/impact_lazy.py +2156 -0
- a3_python-0.1.12/a3_python/barriers/int_bmc.py +90 -0
- a3_python-0.1.12/a3_python/barriers/interpolation_imc.py +2166 -0
- a3_python-0.1.12/a3_python/barriers/invariants.py +357 -0
- a3_python-0.1.12/a3_python/barriers/kitchensink_taxonomy.py +1252 -0
- a3_python-0.1.12/a3_python/barriers/lasserre_hierarchy.py +2212 -0
- a3_python-0.1.12/a3_python/barriers/learned_invariants.py +247 -0
- a3_python-0.1.12/a3_python/barriers/learning.py +1112 -0
- a3_python-0.1.12/a3_python/barriers/papers_11_to_15_complete.py +1216 -0
- a3_python-0.1.12/a3_python/barriers/papers_16_to_20_complete.py +1030 -0
- a3_python-0.1.12/a3_python/barriers/papers_1_to_5_complete.py +1066 -0
- a3_python-0.1.12/a3_python/barriers/papers_6_to_10_complete.py +891 -0
- a3_python-0.1.12/a3_python/barriers/parrilo_sos_sdp.py +2329 -0
- a3_python-0.1.12/a3_python/barriers/path_validation.py +269 -0
- a3_python-0.1.12/a3_python/barriers/pdr_spacer.py +92 -0
- a3_python-0.1.12/a3_python/barriers/positivstellensatz.py +2116 -0
- a3_python-0.1.12/a3_python/barriers/predicate_abstraction.py +2056 -0
- a3_python-0.1.12/a3_python/barriers/program_analysis.py +366 -0
- a3_python-0.1.12/a3_python/barriers/quick_precheck.py +136 -0
- a3_python-0.1.12/a3_python/barriers/ranking.py +634 -0
- a3_python-0.1.12/a3_python/barriers/ranking_synthesis.py +423 -0
- a3_python-0.1.12/a3_python/barriers/sos_safety.py +2125 -0
- a3_python-0.1.12/a3_python/barriers/sos_toolbox.py +364 -0
- a3_python-0.1.12/a3_python/barriers/sos_unified.py +617 -0
- a3_python-0.1.12/a3_python/barriers/sostools.py +2227 -0
- a3_python-0.1.12/a3_python/barriers/spacer_chc.py +2069 -0
- a3_python-0.1.12/a3_python/barriers/sparse_sos.py +2796 -0
- a3_python-0.1.12/a3_python/barriers/step_relation.py +483 -0
- a3_python-0.1.12/a3_python/barriers/stochastic_barrier.py +2069 -0
- a3_python-0.1.12/a3_python/barriers/sygus_synthesis.py +2538 -0
- a3_python-0.1.12/a3_python/barriers/synthesis.py +441 -0
- a3_python-0.1.12/a3_python/barriers/synthesis_engine.py +1006 -0
- a3_python-0.1.12/a3_python/barriers/templates.py +909 -0
- a3_python-0.1.12/a3_python/barriers/type_inference_verification.py +202 -0
- a3_python-0.1.12/a3_python/barriers/unified_sota_912.py +761 -0
- a3_python-0.1.12/a3_python/cfg/__init__.py +60 -0
- a3_python-0.1.12/a3_python/cfg/affine_loop_model.py +271 -0
- a3_python-0.1.12/a3_python/cfg/call_graph.py +741 -0
- a3_python-0.1.12/a3_python/cfg/control_flow.py +2807 -0
- a3_python-0.1.12/a3_python/cfg/dataflow.py +1319 -0
- a3_python-0.1.12/a3_python/cfg/loop_analysis.py +257 -0
- a3_python-0.1.12/a3_python/ci/__init__.py +11 -0
- a3_python-0.1.12/a3_python/ci/baseline.py +247 -0
- a3_python-0.1.12/a3_python/ci/config.py +143 -0
- a3_python-0.1.12/a3_python/ci/sarif.py +504 -0
- a3_python-0.1.12/a3_python/ci/triage.py +764 -0
- a3_python-0.1.12/a3_python/cli.py +943 -0
- a3_python-0.1.12/a3_python/confidence_interval.py +121 -0
- a3_python-0.1.12/a3_python/confidence_scoring.py +471 -0
- a3_python-0.1.12/a3_python/contracts/__init__.py +33 -0
- a3_python-0.1.12/a3_python/contracts/barriers/__init__.py +210 -0
- a3_python-0.1.12/a3_python/contracts/barriers/abstract_values.py +1303 -0
- a3_python-0.1.12/a3_python/contracts/barriers/contracts.py +963 -0
- a3_python-0.1.12/a3_python/contracts/barriers/deferred.py +913 -0
- a3_python-0.1.12/a3_python/contracts/barriers/device_analyzer.py +584 -0
- a3_python-0.1.12/a3_python/contracts/barriers/intervals.py +1105 -0
- a3_python-0.1.12/a3_python/contracts/barriers/test_barriers.py +477 -0
- a3_python-0.1.12/a3_python/contracts/barriers/torch/__init__.py +161 -0
- a3_python-0.1.12/a3_python/contracts/barriers/torch/accelerators.py +474 -0
- a3_python-0.1.12/a3_python/contracts/barriers/torch/amp.py +655 -0
- a3_python-0.1.12/a3_python/contracts/barriers/torch/autograd.py +920 -0
- a3_python-0.1.12/a3_python/contracts/barriers/torch/backends.py +723 -0
- a3_python-0.1.12/a3_python/contracts/barriers/torch/core.py +2642 -0
- a3_python-0.1.12/a3_python/contracts/barriers/torch/cuda.py +1392 -0
- a3_python-0.1.12/a3_python/contracts/barriers/torch/data.py +663 -0
- a3_python-0.1.12/a3_python/contracts/barriers/torch/distributed.py +1066 -0
- a3_python-0.1.12/a3_python/contracts/barriers/torch/distributions.py +621 -0
- a3_python-0.1.12/a3_python/contracts/barriers/torch/experimental.py +985 -0
- a3_python-0.1.12/a3_python/contracts/barriers/torch/export_compile.py +974 -0
- a3_python-0.1.12/a3_python/contracts/barriers/torch/fft.py +206 -0
- a3_python-0.1.12/a3_python/contracts/barriers/torch/hub_package.py +536 -0
- a3_python-0.1.12/a3_python/contracts/barriers/torch/jit.py +629 -0
- a3_python-0.1.12/a3_python/contracts/barriers/torch/linalg.py +383 -0
- a3_python-0.1.12/a3_python/contracts/barriers/torch/nn_functional.py +1150 -0
- a3_python-0.1.12/a3_python/contracts/barriers/torch/nn_modules.py +1337 -0
- a3_python-0.1.12/a3_python/contracts/barriers/torch/onnx.py +347 -0
- a3_python-0.1.12/a3_python/contracts/barriers/torch/optim.py +873 -0
- a3_python-0.1.12/a3_python/contracts/barriers/torch/profiler.py +633 -0
- a3_python-0.1.12/a3_python/contracts/barriers/torch/quantization.py +786 -0
- a3_python-0.1.12/a3_python/contracts/barriers/torch/registry.py +314 -0
- a3_python-0.1.12/a3_python/contracts/barriers/torch/sparse.py +960 -0
- a3_python-0.1.12/a3_python/contracts/barriers/torch/special.py +575 -0
- a3_python-0.1.12/a3_python/contracts/barriers/torch/tensor.py +4144 -0
- a3_python-0.1.12/a3_python/contracts/barriers/torch/utils.py +798 -0
- a3_python-0.1.12/a3_python/contracts/base.py +1145 -0
- a3_python-0.1.12/a3_python/contracts/builtin_relations.py +990 -0
- a3_python-0.1.12/a3_python/contracts/checker.py +689 -0
- a3_python-0.1.12/a3_python/contracts/relations.py +172 -0
- a3_python-0.1.12/a3_python/contracts/schema.py +190 -0
- a3_python-0.1.12/a3_python/contracts/security.py +994 -0
- a3_python-0.1.12/a3_python/contracts/security_lattice.py +2966 -0
- a3_python-0.1.12/a3_python/contracts/stdlib.py +909 -0
- a3_python-0.1.12/a3_python/contracts/stdlib_module_relations.py +499 -0
- a3_python-0.1.12/a3_python/contracts/stdlib_stubs.py +876 -0
- a3_python-0.1.12/a3_python/contracts/torch_contracts.py +1523 -0
- a3_python-0.1.12/a3_python/dse/__init__.py +72 -0
- a3_python-0.1.12/a3_python/dse/concolic.py +491 -0
- a3_python-0.1.12/a3_python/dse/constraint_solver.py +301 -0
- a3_python-0.1.12/a3_python/dse/hybrid.py +107 -0
- a3_python-0.1.12/a3_python/dse/lockstep.py +148 -0
- a3_python-0.1.12/a3_python/dse/path_condition.py +854 -0
- a3_python-0.1.12/a3_python/dse/selective_concolic.py +513 -0
- a3_python-0.1.12/a3_python/dse/stochastic_replay.py +78 -0
- a3_python-0.1.12/a3_python/dse/value_flow.py +995 -0
- a3_python-0.1.12/a3_python/evaluation/__init__.py +1 -0
- a3_python-0.1.12/a3_python/evaluation/deduplication.py +280 -0
- a3_python-0.1.12/a3_python/evaluation/repo_list.py +165 -0
- a3_python-0.1.12/a3_python/evaluation/scanner.py +362 -0
- a3_python-0.1.12/a3_python/fp_context.py +579 -0
- a3_python-0.1.12/a3_python/frontend/__init__.py +1 -0
- a3_python-0.1.12/a3_python/frontend/entry_points.py +423 -0
- a3_python-0.1.12/a3_python/frontend/loader.py +51 -0
- a3_python-0.1.12/a3_python/semantics/__init__.py +1 -0
- a3_python-0.1.12/a3_python/semantics/ast_guard_analysis.py +698 -0
- a3_python-0.1.12/a3_python/semantics/bmc.py +81 -0
- a3_python-0.1.12/a3_python/semantics/bytecode_summaries.py +1978 -0
- a3_python-0.1.12/a3_python/semantics/concrete_vm.py +264 -0
- a3_python-0.1.12/a3_python/semantics/crash_summaries.py +2642 -0
- a3_python-0.1.12/a3_python/semantics/framework_mocks.py +262 -0
- a3_python-0.1.12/a3_python/semantics/intent_detector.py +557 -0
- a3_python-0.1.12/a3_python/semantics/interprocedural_barriers.py +794 -0
- a3_python-0.1.12/a3_python/semantics/interprocedural_bugs.py +1765 -0
- a3_python-0.1.12/a3_python/semantics/interprocedural_guards.py +1455 -0
- a3_python-0.1.12/a3_python/semantics/interprocedural_taint.py +724 -0
- a3_python-0.1.12/a3_python/semantics/intraprocedural_taint.py +1800 -0
- a3_python-0.1.12/a3_python/semantics/invariant_integration.py +391 -0
- a3_python-0.1.12/a3_python/semantics/oracles.py +102 -0
- a3_python-0.1.12/a3_python/semantics/security_tracker.py +364 -0
- a3_python-0.1.12/a3_python/semantics/security_tracker_lattice.py +1142 -0
- a3_python-0.1.12/a3_python/semantics/sota_interprocedural.py +738 -0
- a3_python-0.1.12/a3_python/semantics/sota_intraprocedural.py +1785 -0
- a3_python-0.1.12/a3_python/semantics/state.py +55 -0
- a3_python-0.1.12/a3_python/semantics/summaries.py +1323 -0
- a3_python-0.1.12/a3_python/semantics/symbolic_vm.py +7900 -0
- a3_python-0.1.12/a3_python/semantics/termination_integration.py +402 -0
- a3_python-0.1.12/a3_python/stochastic_risk.py +92 -0
- a3_python-0.1.12/a3_python/unsafe/__init__.py +1 -0
- a3_python-0.1.12/a3_python/unsafe/assert_fail.py +54 -0
- a3_python-0.1.12/a3_python/unsafe/bounds.py +117 -0
- a3_python-0.1.12/a3_python/unsafe/collection_bugs.py +24 -0
- a3_python-0.1.12/a3_python/unsafe/data_race.py +272 -0
- a3_python-0.1.12/a3_python/unsafe/deadlock.py +599 -0
- a3_python-0.1.12/a3_python/unsafe/div_zero.py +113 -0
- a3_python-0.1.12/a3_python/unsafe/double_free.py +148 -0
- a3_python-0.1.12/a3_python/unsafe/exception_bugs.py +888 -0
- a3_python-0.1.12/a3_python/unsafe/fp_domain.py +67 -0
- a3_python-0.1.12/a3_python/unsafe/info_leak.py +188 -0
- a3_python-0.1.12/a3_python/unsafe/integer_overflow.py +61 -0
- a3_python-0.1.12/a3_python/unsafe/iterator_invalid.py +78 -0
- a3_python-0.1.12/a3_python/unsafe/memory_leak.py +99 -0
- a3_python-0.1.12/a3_python/unsafe/non_termination.py +200 -0
- a3_python-0.1.12/a3_python/unsafe/null_ptr.py +130 -0
- a3_python-0.1.12/a3_python/unsafe/panic.py +101 -0
- a3_python-0.1.12/a3_python/unsafe/registry.py +317 -0
- a3_python-0.1.12/a3_python/unsafe/security/__init__.py +163 -0
- a3_python-0.1.12/a3_python/unsafe/security/cleartext.py +100 -0
- a3_python-0.1.12/a3_python/unsafe/security/code_injection.py +68 -0
- a3_python-0.1.12/a3_python/unsafe/security/command_injection.py +67 -0
- a3_python-0.1.12/a3_python/unsafe/security/config.py +128 -0
- a3_python-0.1.12/a3_python/unsafe/security/crypto.py +130 -0
- a3_python-0.1.12/a3_python/unsafe/security/deserialization.py +65 -0
- a3_python-0.1.12/a3_python/unsafe/security/filesystem.py +154 -0
- a3_python-0.1.12/a3_python/unsafe/security/injection.py +197 -0
- a3_python-0.1.12/a3_python/unsafe/security/lattice_detectors.py +687 -0
- a3_python-0.1.12/a3_python/unsafe/security/path_injection.py +65 -0
- a3_python-0.1.12/a3_python/unsafe/security/regex.py +183 -0
- a3_python-0.1.12/a3_python/unsafe/security/sql_injection.py +103 -0
- a3_python-0.1.12/a3_python/unsafe/security/ssrf.py +66 -0
- a3_python-0.1.12/a3_python/unsafe/security/webapp.py +175 -0
- a3_python-0.1.12/a3_python/unsafe/security/xml.py +110 -0
- a3_python-0.1.12/a3_python/unsafe/security/xss.py +67 -0
- a3_python-0.1.12/a3_python/unsafe/security/xxe.py +66 -0
- a3_python-0.1.12/a3_python/unsafe/send_sync.py +279 -0
- a3_python-0.1.12/a3_python/unsafe/stack_overflow.py +79 -0
- a3_python-0.1.12/a3_python/unsafe/timing_channel.py +273 -0
- a3_python-0.1.12/a3_python/unsafe/type_confusion.py +129 -0
- a3_python-0.1.12/a3_python/unsafe/uninit_memory.py +148 -0
- a3_python-0.1.12/a3_python/unsafe/use_after_free.py +107 -0
- a3_python-0.1.12/a3_python/z3model/__init__.py +1 -0
- a3_python-0.1.12/a3_python/z3model/heap.py +339 -0
- a3_python-0.1.12/a3_python/z3model/taint.py +441 -0
- a3_python-0.1.12/a3_python/z3model/taint_lattice.py +1629 -0
- a3_python-0.1.12/a3_python/z3model/type_tracking.py +303 -0
- a3_python-0.1.12/a3_python/z3model/values.py +1299 -0
- {a3_python-0.1.11 → a3_python-0.1.12}/a3_python.egg-info/PKG-INFO +1 -1
- a3_python-0.1.12/a3_python.egg-info/SOURCES.txt +402 -0
- {a3_python-0.1.11 → a3_python-0.1.12}/pyproject.toml +1 -1
- a3_python-0.1.11/a3_python.egg-info/SOURCES.txt +0 -192
- {a3_python-0.1.11 → a3_python-0.1.12}/README.md +0 -0
- {a3_python-0.1.11 → a3_python-0.1.12}/a3_python/ci/init_cmd.py +0 -0
- {a3_python-0.1.11 → a3_python-0.1.12}/a3_python/ci/templates/a3-pr-scan.yml +0 -0
- {a3_python-0.1.11 → a3_python-0.1.12}/a3_python/ci/templates/a3-scheduled-scan.yml +0 -0
- {a3_python-0.1.11 → a3_python-0.1.12}/a3_python.egg-info/dependency_links.txt +0 -0
- {a3_python-0.1.11 → a3_python-0.1.12}/a3_python.egg-info/entry_points.txt +0 -0
- {a3_python-0.1.11 → a3_python-0.1.12}/a3_python.egg-info/requires.txt +0 -0
- {a3_python-0.1.11 → a3_python-0.1.12}/a3_python.egg-info/top_level.txt +0 -0
- {a3_python-0.1.11 → a3_python-0.1.12}/setup.cfg +0 -0
- {a3_python-0.1.11 → a3_python-0.1.12}/tests/test_all_security.py +0 -0
- {a3_python-0.1.11 → a3_python-0.1.12}/tests/test_analyzer_dse_integration.py +0 -0
- {a3_python-0.1.11 → a3_python-0.1.12}/tests/test_analyzer_hybrid_witness_integration.py +0 -0
- {a3_python-0.1.11 → a3_python-0.1.12}/tests/test_analyzer_safe_integration.py +0 -0
- {a3_python-0.1.11 → a3_python-0.1.12}/tests/test_auto_template_synthesis.py +0 -0
- {a3_python-0.1.11 → a3_python-0.1.12}/tests/test_barrier_analysis.py +0 -0
- {a3_python-0.1.11 → a3_python-0.1.12}/tests/test_barrier_on_qlib.py +0 -0
- {a3_python-0.1.11 → a3_python-0.1.12}/tests/test_barriers.py +0 -0
- {a3_python-0.1.11 → a3_python-0.1.12}/tests/test_barriers_ranking.py +0 -0
- {a3_python-0.1.11 → a3_python-0.1.12}/tests/test_binary_op_bitwise.py +0 -0
- {a3_python-0.1.11 → a3_python-0.1.12}/tests/test_binary_op_power.py +0 -0
- {a3_python-0.1.11 → a3_python-0.1.12}/tests/test_binary_ops_extended.py +0 -0
- {a3_python-0.1.11 → a3_python-0.1.12}/tests/test_build_list.py +0 -0
- {a3_python-0.1.11 → a3_python-0.1.12}/tests/test_build_map.py +0 -0
- {a3_python-0.1.11 → a3_python-0.1.12}/tests/test_build_set.py +0 -0
- {a3_python-0.1.11 → a3_python-0.1.12}/tests/test_build_string.py +0 -0
- {a3_python-0.1.11 → a3_python-0.1.12}/tests/test_call_intrinsic_1.py +0 -0
- {a3_python-0.1.11 → a3_python-0.1.12}/tests/test_call_kw.py +0 -0
- {a3_python-0.1.11 → a3_python-0.1.12}/tests/test_cegis_counterexamples.py +0 -0
- {a3_python-0.1.11 → a3_python-0.1.12}/tests/test_cegis_synthesis.py +0 -0
- {a3_python-0.1.11 → a3_python-0.1.12}/tests/test_cli.py +0 -0
- {a3_python-0.1.11 → a3_python-0.1.12}/tests/test_cli_termination.py +0 -0
- {a3_python-0.1.11 → a3_python-0.1.12}/tests/test_closures.py +0 -0
- {a3_python-0.1.11 → a3_python-0.1.12}/tests/test_cmd_inj.py +0 -0
- {a3_python-0.1.11 → a3_python-0.1.12}/tests/test_collection_bugs.py +0 -0
- {a3_python-0.1.11 → a3_python-0.1.12}/tests/test_concrete_taint_path.py +0 -0
- {a3_python-0.1.11 → a3_python-0.1.12}/tests/test_confidence_null_ptr_bounds.py +0 -0
- {a3_python-0.1.11 → a3_python-0.1.12}/tests/test_connection_pool_taint.py +0 -0
- {a3_python-0.1.11 → a3_python-0.1.12}/tests/test_constraint_solver.py +0 -0
- {a3_python-0.1.11 → a3_python-0.1.12}/tests/test_contains_dict.py +0 -0
- {a3_python-0.1.11 → a3_python-0.1.12}/tests/test_contains_op.py +0 -0
- {a3_python-0.1.11 → a3_python-0.1.12}/tests/test_context_precision_demo.py +0 -0
- {a3_python-0.1.11 → a3_python-0.1.12}/tests/test_context_sensitivity.py +0 -0
- {a3_python-0.1.11 → a3_python-0.1.12}/tests/test_contract_matching_specificity.py +0 -0
- {a3_python-0.1.11 → a3_python-0.1.12}/tests/test_contracts.py +0 -0
- {a3_python-0.1.11 → a3_python-0.1.12}/tests/test_contracts_integration.py +0 -0
- {a3_python-0.1.11 → a3_python-0.1.12}/tests/test_cookie_injection.py +0 -0
- {a3_python-0.1.11 → a3_python-0.1.12}/tests/test_crash_summaries_compact_proofs.py +0 -0
- {a3_python-0.1.11 → a3_python-0.1.12}/tests/test_cross_module_taint.py +0 -0
- {a3_python-0.1.11 → a3_python-0.1.12}/tests/test_cursor_taint.py +0 -0
- {a3_python-0.1.11 → a3_python-0.1.12}/tests/test_deduplication.py +0 -0
- {a3_python-0.1.11 → a3_python-0.1.12}/tests/test_deepspeed.py +0 -0
- {a3_python-0.1.11 → a3_python-0.1.12}/tests/test_deserialization_detection.py +0 -0
- {a3_python-0.1.11 → a3_python-0.1.12}/tests/test_dict_merge.py +0 -0
- {a3_python-0.1.11 → a3_python-0.1.12}/tests/test_dict_methods.py +0 -0
- {a3_python-0.1.11 → a3_python-0.1.12}/tests/test_dict_taint_tracking.py +0 -0
- {a3_python-0.1.11 → a3_python-0.1.12}/tests/test_dict_update.py +0 -0
- {a3_python-0.1.11 → a3_python-0.1.12}/tests/test_django_render_sanitizer.py +0 -0
- {a3_python-0.1.11 → a3_python-0.1.12}/tests/test_django_template_sanitization.py +0 -0
- {a3_python-0.1.11 → a3_python-0.1.12}/tests/test_dse.py +0 -0
- {a3_python-0.1.11 → a3_python-0.1.12}/tests/test_dse_context.py +0 -0
- {a3_python-0.1.11 → a3_python-0.1.12}/tests/test_e2e_taint_path_filtering.py +0 -0
- {a3_python-0.1.11 → a3_python-0.1.12}/tests/test_ellipsis_slice.py +0 -0
- {a3_python-0.1.11 → a3_python-0.1.12}/tests/test_exception_bug_types.py +0 -0
- {a3_python-0.1.11 → a3_python-0.1.12}/tests/test_exception_handlers.py +0 -0
- {a3_python-0.1.11 → a3_python-0.1.12}/tests/test_exception_path_forking.py +0 -0
- {a3_python-0.1.11 → a3_python-0.1.12}/tests/test_extended_arg.py +0 -0
- {a3_python-0.1.11 → a3_python-0.1.12}/tests/test_file_object_taint.py +0 -0
- {a3_python-0.1.11 → a3_python-0.1.12}/tests/test_file_object_taint_vm.py +0 -0
- {a3_python-0.1.11 → a3_python-0.1.12}/tests/test_flaml.py +0 -0
- {a3_python-0.1.11 → a3_python-0.1.12}/tests/test_flask_debug.py +0 -0
- {a3_python-0.1.11 → a3_python-0.1.12}/tests/test_function_level_termination.py +0 -0
- {a3_python-0.1.11 → a3_python-0.1.12}/tests/test_heap_observers.py +0 -0
- {a3_python-0.1.11 → a3_python-0.1.12}/tests/test_hscc2004_barrier_certificates.py +0 -0
- {a3_python-0.1.11 → a3_python-0.1.12}/tests/test_hybrid_concolic_symbolic_unknown_libs.py +0 -0
- {a3_python-0.1.11 → a3_python-0.1.12}/tests/test_ide_precision.py +0 -0
- {a3_python-0.1.11 → a3_python-0.1.12}/tests/test_ide_return_propagation.py +0 -0
- {a3_python-0.1.11 → a3_python-0.1.12}/tests/test_implicit_flow_security.py +0 -0
- {a3_python-0.1.11 → a3_python-0.1.12}/tests/test_import_from.py +0 -0
- {a3_python-0.1.11 → a3_python-0.1.12}/tests/test_import_tracking.py +0 -0
- {a3_python-0.1.11 → a3_python-0.1.12}/tests/test_insecure_cookie.py +0 -0
- {a3_python-0.1.11 → a3_python-0.1.12}/tests/test_interprocedural.py +0 -0
- {a3_python-0.1.11 → a3_python-0.1.12}/tests/test_interprocedural_crash_analysis.py +0 -0
- {a3_python-0.1.11 → a3_python-0.1.12}/tests/test_interprocedural_security.py +0 -0
- {a3_python-0.1.11 → a3_python-0.1.12}/tests/test_interprocedural_sigma.py +0 -0
- {a3_python-0.1.11 → a3_python-0.1.12}/tests/test_intraprocedural_analysis.py +0 -0
- {a3_python-0.1.11 → a3_python-0.1.12}/tests/test_intraprocedural_integration.py +0 -0
- {a3_python-0.1.11 → a3_python-0.1.12}/tests/test_intraprocedural_phase2.py +0 -0
- {a3_python-0.1.11 → a3_python-0.1.12}/tests/test_intraprocedural_phase3.py +0 -0
- {a3_python-0.1.11 → a3_python-0.1.12}/tests/test_intraprocedural_taint.py +0 -0
- {a3_python-0.1.11 → a3_python-0.1.12}/tests/test_invariant_integration.py +0 -0
- {a3_python-0.1.11 → a3_python-0.1.12}/tests/test_is_op.py +0 -0
- {a3_python-0.1.11 → a3_python-0.1.12}/tests/test_iteration_601.py +0 -0
- {a3_python-0.1.11 → a3_python-0.1.12}/tests/test_jump_forward.py +0 -0
- {a3_python-0.1.11 → a3_python-0.1.12}/tests/test_kitchensink_sota.py +0 -0
- {a3_python-0.1.11 → a3_python-0.1.12}/tests/test_kitchensink_taxonomy.py +0 -0
- {a3_python-0.1.11 → a3_python-0.1.12}/tests/test_lexicographic_ranking.py +0 -0
- {a3_python-0.1.11 → a3_python-0.1.12}/tests/test_lightgbm.py +0 -0
- {a3_python-0.1.11 → a3_python-0.1.12}/tests/test_list_append.py +0 -0
- {a3_python-0.1.11 → a3_python-0.1.12}/tests/test_load_fast_and_clear.py +0 -0
- {a3_python-0.1.11 → a3_python-0.1.12}/tests/test_load_fast_borrow.py +0 -0
- {a3_python-0.1.11 → a3_python-0.1.12}/tests/test_lockstep_concolic_replay.py +0 -0
- {a3_python-0.1.11 → a3_python-0.1.12}/tests/test_loop_opcodes.py +0 -0
- {a3_python-0.1.11 → a3_python-0.1.12}/tests/test_map_add.py +0 -0
- {a3_python-0.1.11 → a3_python-0.1.12}/tests/test_module_init_detection.py +0 -0
- {a3_python-0.1.11 → a3_python-0.1.12}/tests/test_module_init_filtering.py +0 -0
- {a3_python-0.1.11 → a3_python-0.1.12}/tests/test_module_vs_function_level_detection.py +0 -0
- {a3_python-0.1.11 → a3_python-0.1.12}/tests/test_no_concolic_mode.py +0 -0
- {a3_python-0.1.11 → a3_python-0.1.12}/tests/test_opcodes_build_tuple_format.py +0 -0
- {a3_python-0.1.11 → a3_python-0.1.12}/tests/test_open_exception_handler.py +0 -0
- {a3_python-0.1.11 → a3_python-0.1.12}/tests/test_orm_taint.py +0 -0
- {a3_python-0.1.11 → a3_python-0.1.12}/tests/test_path_forking_unit.py +0 -0
- {a3_python-0.1.11 → a3_python-0.1.12}/tests/test_path_injection_detection.py +0 -0
- {a3_python-0.1.11 → a3_python-0.1.12}/tests/test_path_limit_soundness.py +0 -0
- {a3_python-0.1.11 → a3_python-0.1.12}/tests/test_path_validation.py +0 -0
- {a3_python-0.1.11 → a3_python-0.1.12}/tests/test_polynomial_barriers.py +0 -0
- {a3_python-0.1.11 → a3_python-0.1.12}/tests/test_pop_jump_if_none.py +0 -0
- {a3_python-0.1.11 → a3_python-0.1.12}/tests/test_program_analysis.py +0 -0
- {a3_python-0.1.11 → a3_python-0.1.12}/tests/test_qlib_full_analyzer.py +0 -0
- {a3_python-0.1.11 → a3_python-0.1.12}/tests/test_qlib_known_bugs.py +0 -0
- {a3_python-0.1.11 → a3_python-0.1.12}/tests/test_qlib_models.py +0 -0
- {a3_python-0.1.11 → a3_python-0.1.12}/tests/test_ranking_synthesis.py +0 -0
- {a3_python-0.1.11 → a3_python-0.1.12}/tests/test_ranking_synthesis_lexicographic_integration.py +0 -0
- {a3_python-0.1.11 → a3_python-0.1.12}/tests/test_receiver_taint_vm.py +0 -0
- {a3_python-0.1.11 → a3_python-0.1.12}/tests/test_redos_detection.py +0 -0
- {a3_python-0.1.11 → a3_python-0.1.12}/tests/test_regex_pattern_contracts.py +0 -0
- {a3_python-0.1.11 → a3_python-0.1.12}/tests/test_regex_validation_sanitizers.py +0 -0
- {a3_python-0.1.11 → a3_python-0.1.12}/tests/test_relational_summaries.py +0 -0
- {a3_python-0.1.11 → a3_python-0.1.12}/tests/test_safe_proofs_e2e.py +0 -0
- {a3_python-0.1.11 → a3_python-0.1.12}/tests/test_security_api.py +0 -0
- {a3_python-0.1.11 → a3_python-0.1.12}/tests/test_security_bugs.py +0 -0
- {a3_python-0.1.11 → a3_python-0.1.12}/tests/test_semantics_concrete.py +0 -0
- {a3_python-0.1.11 → a3_python-0.1.12}/tests/test_semantics_generators.py +0 -0
- {a3_python-0.1.11 → a3_python-0.1.12}/tests/test_semantics_symbolic.py +0 -0
- {a3_python-0.1.11 → a3_python-0.1.12}/tests/test_sensitivity_inference.py +0 -0
- {a3_python-0.1.11 → a3_python-0.1.12}/tests/test_set_add.py +0 -0
- {a3_python-0.1.11 → a3_python-0.1.12}/tests/test_setup_annotations.py +0 -0
- {a3_python-0.1.11 → a3_python-0.1.12}/tests/test_sigma_taint_regression.py +0 -0
- {a3_python-0.1.11 → a3_python-0.1.12}/tests/test_socket_taint.py +0 -0
- {a3_python-0.1.11 → a3_python-0.1.12}/tests/test_sos_for_safety.py +0 -0
- {a3_python-0.1.11 → a3_python-0.1.12}/tests/test_sos_guarded_divzero.py +0 -0
- {a3_python-0.1.11 → a3_python-0.1.12}/tests/test_sos_toolbox.py +0 -0
- {a3_python-0.1.11 → a3_python-0.1.12}/tests/test_sota_interprocedural.py +0 -0
- {a3_python-0.1.11 → a3_python-0.1.12}/tests/test_sota_intraprocedural.py +0 -0
- {a3_python-0.1.11 → a3_python-0.1.12}/tests/test_sota_pdr_bmc_ice.py +0 -0
- {a3_python-0.1.11 → a3_python-0.1.12}/tests/test_ssrf_detection.py +0 -0
- {a3_python-0.1.11 → a3_python-0.1.12}/tests/test_star_import.py +0 -0
- {a3_python-0.1.11 → a3_python-0.1.12}/tests/test_stdlib_contracts_expansion.py +0 -0
- {a3_python-0.1.11 → a3_python-0.1.12}/tests/test_stdlib_module_relations.py +0 -0
- {a3_python-0.1.11 → a3_python-0.1.12}/tests/test_stdlib_stubs.py +0 -0
- {a3_python-0.1.11 → a3_python-0.1.12}/tests/test_step_relation.py +0 -0
- {a3_python-0.1.11 → a3_python-0.1.12}/tests/test_stochastic_precondition_risk.py +0 -0
- {a3_python-0.1.11 → a3_python-0.1.12}/tests/test_stochastic_replay.py +0 -0
- {a3_python-0.1.11 → a3_python-0.1.12}/tests/test_store_fast_load_fast.py +0 -0
- {a3_python-0.1.11 → a3_python-0.1.12}/tests/test_store_global.py +0 -0
- {a3_python-0.1.11 → a3_python-0.1.12}/tests/test_store_subscr.py +0 -0
- {a3_python-0.1.11 → a3_python-0.1.12}/tests/test_subprocess_shell_param.py +0 -0
- {a3_python-0.1.11 → a3_python-0.1.12}/tests/test_symbolic_violation_provenance.py +0 -0
- {a3_python-0.1.11 → a3_python-0.1.12}/tests/test_taint_lattice.py +0 -0
- {a3_python-0.1.11 → a3_python-0.1.12}/tests/test_tarslip_kwargs.py +0 -0
- {a3_python-0.1.11 → a3_python-0.1.12}/tests/test_termination_integration.py +0 -0
- {a3_python-0.1.11 → a3_python-0.1.12}/tests/test_type_annotations.py +0 -0
- {a3_python-0.1.11 → a3_python-0.1.12}/tests/test_type_based_sanitizers.py +0 -0
- {a3_python-0.1.11 → a3_python-0.1.12}/tests/test_type_tracking.py +0 -0
- {a3_python-0.1.11 → a3_python-0.1.12}/tests/test_unary_operations.py +0 -0
- {a3_python-0.1.11 → a3_python-0.1.12}/tests/test_unpack_sequence.py +0 -0
- {a3_python-0.1.11 → a3_python-0.1.12}/tests/test_unpack_sequence_fix.py +0 -0
- {a3_python-0.1.11 → a3_python-0.1.12}/tests/test_unsafe_assert_fail.py +0 -0
- {a3_python-0.1.11 → a3_python-0.1.12}/tests/test_unsafe_bounds.py +0 -0
- {a3_python-0.1.11 → a3_python-0.1.12}/tests/test_unsafe_data_race.py +0 -0
- {a3_python-0.1.11 → a3_python-0.1.12}/tests/test_unsafe_deadlock.py +0 -0
- {a3_python-0.1.11 → a3_python-0.1.12}/tests/test_unsafe_div_zero.py +0 -0
- {a3_python-0.1.11 → a3_python-0.1.12}/tests/test_unsafe_double_free.py +0 -0
- {a3_python-0.1.11 → a3_python-0.1.12}/tests/test_unsafe_fp_domain.py +0 -0
- {a3_python-0.1.11 → a3_python-0.1.12}/tests/test_unsafe_info_leak.py +0 -0
- {a3_python-0.1.11 → a3_python-0.1.12}/tests/test_unsafe_integer_overflow.py +0 -0
- {a3_python-0.1.11 → a3_python-0.1.12}/tests/test_unsafe_iterator_invalid.py +0 -0
- {a3_python-0.1.11 → a3_python-0.1.12}/tests/test_unsafe_memory_leak.py +0 -0
- {a3_python-0.1.11 → a3_python-0.1.12}/tests/test_unsafe_non_termination.py +0 -0
- {a3_python-0.1.11 → a3_python-0.1.12}/tests/test_unsafe_null_ptr.py +0 -0
- {a3_python-0.1.11 → a3_python-0.1.12}/tests/test_unsafe_panic.py +0 -0
- {a3_python-0.1.11 → a3_python-0.1.12}/tests/test_unsafe_send_sync.py +0 -0
- {a3_python-0.1.11 → a3_python-0.1.12}/tests/test_unsafe_stack_overflow.py +0 -0
- {a3_python-0.1.11 → a3_python-0.1.12}/tests/test_unsafe_timing_channel.py +0 -0
- {a3_python-0.1.11 → a3_python-0.1.12}/tests/test_unsafe_type_confusion.py +0 -0
- {a3_python-0.1.11 → a3_python-0.1.12}/tests/test_unsafe_uninit_memory.py +0 -0
- {a3_python-0.1.11 → a3_python-0.1.12}/tests/test_user_function_detection.py +0 -0
- {a3_python-0.1.11 → a3_python-0.1.12}/tests/test_user_function_module_init.py +0 -0
- {a3_python-0.1.11 → a3_python-0.1.12}/tests/test_xml_bomb.py +0 -0
- {a3_python-0.1.11 → a3_python-0.1.12}/tests/test_xxe_detection.py +0 -0
- {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.
|
|
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"
|