crosshair-tool 0.0.97__cp314-cp314-win32.whl

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.

Potentially problematic release.


This version of crosshair-tool might be problematic. Click here for more details.

Files changed (176) hide show
  1. _crosshair_tracers.cp314-win32.pyd +0 -0
  2. crosshair/__init__.py +42 -0
  3. crosshair/__main__.py +8 -0
  4. crosshair/_mark_stacks.h +790 -0
  5. crosshair/_preliminaries_test.py +18 -0
  6. crosshair/_tracers.h +94 -0
  7. crosshair/_tracers_pycompat.h +522 -0
  8. crosshair/_tracers_test.py +138 -0
  9. crosshair/abcstring.py +245 -0
  10. crosshair/auditwall.py +190 -0
  11. crosshair/auditwall_test.py +77 -0
  12. crosshair/codeconfig.py +113 -0
  13. crosshair/codeconfig_test.py +117 -0
  14. crosshair/condition_parser.py +1237 -0
  15. crosshair/condition_parser_test.py +497 -0
  16. crosshair/conftest.py +30 -0
  17. crosshair/copyext.py +145 -0
  18. crosshair/copyext_test.py +74 -0
  19. crosshair/core.py +1759 -0
  20. crosshair/core_and_libs.py +149 -0
  21. crosshair/core_regestered_types_test.py +82 -0
  22. crosshair/core_test.py +1313 -0
  23. crosshair/diff_behavior.py +314 -0
  24. crosshair/diff_behavior_test.py +261 -0
  25. crosshair/dynamic_typing.py +346 -0
  26. crosshair/dynamic_typing_test.py +210 -0
  27. crosshair/enforce.py +282 -0
  28. crosshair/enforce_test.py +182 -0
  29. crosshair/examples/PEP316/__init__.py +1 -0
  30. crosshair/examples/PEP316/bugs_detected/__init__.py +0 -0
  31. crosshair/examples/PEP316/bugs_detected/getattr_magic.py +16 -0
  32. crosshair/examples/PEP316/bugs_detected/hash_consistent_with_equals.py +31 -0
  33. crosshair/examples/PEP316/bugs_detected/shopping_cart.py +24 -0
  34. crosshair/examples/PEP316/bugs_detected/showcase.py +39 -0
  35. crosshair/examples/PEP316/correct_code/__init__.py +0 -0
  36. crosshair/examples/PEP316/correct_code/arith.py +60 -0
  37. crosshair/examples/PEP316/correct_code/chess.py +77 -0
  38. crosshair/examples/PEP316/correct_code/nesting_inference.py +17 -0
  39. crosshair/examples/PEP316/correct_code/numpy_examples.py +132 -0
  40. crosshair/examples/PEP316/correct_code/rolling_average.py +35 -0
  41. crosshair/examples/PEP316/correct_code/showcase.py +104 -0
  42. crosshair/examples/__init__.py +0 -0
  43. crosshair/examples/check_examples_test.py +146 -0
  44. crosshair/examples/deal/__init__.py +1 -0
  45. crosshair/examples/icontract/__init__.py +1 -0
  46. crosshair/examples/icontract/bugs_detected/__init__.py +0 -0
  47. crosshair/examples/icontract/bugs_detected/showcase.py +41 -0
  48. crosshair/examples/icontract/bugs_detected/wrong_sign.py +8 -0
  49. crosshair/examples/icontract/correct_code/__init__.py +0 -0
  50. crosshair/examples/icontract/correct_code/arith.py +51 -0
  51. crosshair/examples/icontract/correct_code/showcase.py +94 -0
  52. crosshair/fnutil.py +391 -0
  53. crosshair/fnutil_test.py +75 -0
  54. crosshair/fuzz_core_test.py +516 -0
  55. crosshair/libimpl/__init__.py +0 -0
  56. crosshair/libimpl/arraylib.py +161 -0
  57. crosshair/libimpl/binascii_ch_test.py +30 -0
  58. crosshair/libimpl/binascii_test.py +67 -0
  59. crosshair/libimpl/binasciilib.py +150 -0
  60. crosshair/libimpl/bisectlib_test.py +23 -0
  61. crosshair/libimpl/builtinslib.py +5133 -0
  62. crosshair/libimpl/builtinslib_ch_test.py +1191 -0
  63. crosshair/libimpl/builtinslib_test.py +3705 -0
  64. crosshair/libimpl/codecslib.py +86 -0
  65. crosshair/libimpl/codecslib_test.py +86 -0
  66. crosshair/libimpl/collectionslib.py +264 -0
  67. crosshair/libimpl/collectionslib_ch_test.py +252 -0
  68. crosshair/libimpl/collectionslib_test.py +332 -0
  69. crosshair/libimpl/copylib.py +23 -0
  70. crosshair/libimpl/copylib_test.py +18 -0
  71. crosshair/libimpl/datetimelib.py +2546 -0
  72. crosshair/libimpl/datetimelib_ch_test.py +349 -0
  73. crosshair/libimpl/datetimelib_test.py +112 -0
  74. crosshair/libimpl/decimallib.py +5257 -0
  75. crosshair/libimpl/decimallib_ch_test.py +78 -0
  76. crosshair/libimpl/decimallib_test.py +76 -0
  77. crosshair/libimpl/encodings/__init__.py +23 -0
  78. crosshair/libimpl/encodings/_encutil.py +187 -0
  79. crosshair/libimpl/encodings/ascii.py +44 -0
  80. crosshair/libimpl/encodings/latin_1.py +40 -0
  81. crosshair/libimpl/encodings/utf_8.py +93 -0
  82. crosshair/libimpl/encodings_ch_test.py +83 -0
  83. crosshair/libimpl/fractionlib.py +16 -0
  84. crosshair/libimpl/fractionlib_test.py +80 -0
  85. crosshair/libimpl/functoolslib.py +34 -0
  86. crosshair/libimpl/functoolslib_test.py +56 -0
  87. crosshair/libimpl/hashliblib.py +30 -0
  88. crosshair/libimpl/hashliblib_test.py +18 -0
  89. crosshair/libimpl/heapqlib.py +47 -0
  90. crosshair/libimpl/heapqlib_test.py +21 -0
  91. crosshair/libimpl/importliblib.py +18 -0
  92. crosshair/libimpl/importliblib_test.py +38 -0
  93. crosshair/libimpl/iolib.py +216 -0
  94. crosshair/libimpl/iolib_ch_test.py +128 -0
  95. crosshair/libimpl/iolib_test.py +19 -0
  96. crosshair/libimpl/ipaddresslib.py +8 -0
  97. crosshair/libimpl/itertoolslib.py +44 -0
  98. crosshair/libimpl/itertoolslib_test.py +44 -0
  99. crosshair/libimpl/jsonlib.py +984 -0
  100. crosshair/libimpl/jsonlib_ch_test.py +42 -0
  101. crosshair/libimpl/jsonlib_test.py +51 -0
  102. crosshair/libimpl/mathlib.py +179 -0
  103. crosshair/libimpl/mathlib_ch_test.py +44 -0
  104. crosshair/libimpl/mathlib_test.py +67 -0
  105. crosshair/libimpl/oslib.py +7 -0
  106. crosshair/libimpl/pathliblib_test.py +10 -0
  107. crosshair/libimpl/randomlib.py +177 -0
  108. crosshair/libimpl/randomlib_test.py +120 -0
  109. crosshair/libimpl/relib.py +846 -0
  110. crosshair/libimpl/relib_ch_test.py +169 -0
  111. crosshair/libimpl/relib_test.py +493 -0
  112. crosshair/libimpl/timelib.py +72 -0
  113. crosshair/libimpl/timelib_test.py +82 -0
  114. crosshair/libimpl/typeslib.py +15 -0
  115. crosshair/libimpl/typeslib_test.py +36 -0
  116. crosshair/libimpl/unicodedatalib.py +75 -0
  117. crosshair/libimpl/unicodedatalib_test.py +42 -0
  118. crosshair/libimpl/urlliblib.py +23 -0
  119. crosshair/libimpl/urlliblib_test.py +19 -0
  120. crosshair/libimpl/weakreflib.py +13 -0
  121. crosshair/libimpl/weakreflib_test.py +69 -0
  122. crosshair/libimpl/zliblib.py +15 -0
  123. crosshair/libimpl/zliblib_test.py +13 -0
  124. crosshair/lsp_server.py +250 -0
  125. crosshair/lsp_server_test.py +30 -0
  126. crosshair/main.py +973 -0
  127. crosshair/main_test.py +543 -0
  128. crosshair/objectproxy.py +376 -0
  129. crosshair/objectproxy_test.py +41 -0
  130. crosshair/opcode_intercept.py +601 -0
  131. crosshair/opcode_intercept_test.py +304 -0
  132. crosshair/options.py +218 -0
  133. crosshair/options_test.py +10 -0
  134. crosshair/patch_equivalence_test.py +75 -0
  135. crosshair/path_cover.py +209 -0
  136. crosshair/path_cover_test.py +138 -0
  137. crosshair/path_search.py +161 -0
  138. crosshair/path_search_test.py +52 -0
  139. crosshair/pathing_oracle.py +271 -0
  140. crosshair/pathing_oracle_test.py +21 -0
  141. crosshair/pure_importer.py +27 -0
  142. crosshair/pure_importer_test.py +16 -0
  143. crosshair/py.typed +0 -0
  144. crosshair/register_contract.py +273 -0
  145. crosshair/register_contract_test.py +190 -0
  146. crosshair/simplestructs.py +1161 -0
  147. crosshair/simplestructs_test.py +283 -0
  148. crosshair/smtlib.py +24 -0
  149. crosshair/smtlib_test.py +14 -0
  150. crosshair/statespace.py +1196 -0
  151. crosshair/statespace_test.py +99 -0
  152. crosshair/stubs_parser.py +352 -0
  153. crosshair/stubs_parser_test.py +43 -0
  154. crosshair/test_util.py +329 -0
  155. crosshair/test_util_test.py +26 -0
  156. crosshair/tools/__init__.py +0 -0
  157. crosshair/tools/check_help_in_doc.py +264 -0
  158. crosshair/tools/check_init_and_setup_coincide.py +119 -0
  159. crosshair/tools/generate_demo_table.py +127 -0
  160. crosshair/tracers.py +525 -0
  161. crosshair/tracers_test.py +154 -0
  162. crosshair/type_repo.py +151 -0
  163. crosshair/unicode_categories.py +589 -0
  164. crosshair/unicode_categories_test.py +27 -0
  165. crosshair/util.py +736 -0
  166. crosshair/util_test.py +173 -0
  167. crosshair/watcher.py +307 -0
  168. crosshair/watcher_test.py +107 -0
  169. crosshair/z3util.py +76 -0
  170. crosshair/z3util_test.py +11 -0
  171. crosshair_tool-0.0.97.dist-info/METADATA +145 -0
  172. crosshair_tool-0.0.97.dist-info/RECORD +176 -0
  173. crosshair_tool-0.0.97.dist-info/WHEEL +5 -0
  174. crosshair_tool-0.0.97.dist-info/entry_points.txt +3 -0
  175. crosshair_tool-0.0.97.dist-info/licenses/LICENSE +93 -0
  176. crosshair_tool-0.0.97.dist-info/top_level.txt +2 -0
@@ -0,0 +1,145 @@
1
+ Metadata-Version: 2.4
2
+ Name: crosshair-tool
3
+ Version: 0.0.97
4
+ Summary: Analyze Python code for correctness using symbolic execution.
5
+ Home-page: https://github.com/pschanely/CrossHair
6
+ Author: Phillip Schanely
7
+ Author-email: pschanely+vE7F@gmail.com
8
+ License: MIT
9
+ Classifier: Development Status :: 3 - Alpha
10
+ Classifier: Intended Audience :: Developers
11
+ Classifier: Operating System :: OS Independent
12
+ Classifier: Programming Language :: Python :: 3
13
+ Classifier: Programming Language :: Python :: 3.8
14
+ Classifier: Programming Language :: Python :: 3.9
15
+ Classifier: Programming Language :: Python :: 3.10
16
+ Classifier: Programming Language :: Python :: 3.11
17
+ Classifier: Programming Language :: Python :: 3.12
18
+ Classifier: Programming Language :: Python :: 3.13
19
+ Classifier: Programming Language :: Python :: Implementation :: CPython
20
+ Classifier: Topic :: Software Development :: Quality Assurance
21
+ Classifier: Topic :: Software Development :: Testing
22
+ Requires-Python: >=3.8
23
+ Description-Content-Type: text/markdown
24
+ License-File: LICENSE
25
+ Requires-Dist: packaging
26
+ Requires-Dist: typing-inspect>=0.7.1
27
+ Requires-Dist: typing_extensions>=3.10.0
28
+ Requires-Dist: z3-solver>=4.13.0.0
29
+ Requires-Dist: importlib_metadata>=4.0.0
30
+ Requires-Dist: pygls>=1.0.0
31
+ Requires-Dist: typeshed-client>=2.0.5
32
+ Provides-Extra: dev
33
+ Requires-Dist: autodocsumm<1,>=0.2.2; extra == "dev"
34
+ Requires-Dist: black==25.9.0; extra == "dev"
35
+ Requires-Dist: deal>=4.13.0; extra == "dev"
36
+ Requires-Dist: icontract>=2.4.0; extra == "dev"
37
+ Requires-Dist: isort==5.11.5; extra == "dev"
38
+ Requires-Dist: mypy==1.18.1; extra == "dev"
39
+ Requires-Dist: numpy==1.23.4; python_version < "3.12" and extra == "dev"
40
+ Requires-Dist: numpy==1.26.0; (python_version >= "3.12" and python_version < "3.13") and extra == "dev"
41
+ Requires-Dist: numpy==2.3.3; python_version >= "3.13" and extra == "dev"
42
+ Requires-Dist: pre-commit~=2.20; extra == "dev"
43
+ Requires-Dist: pytest; extra == "dev"
44
+ Requires-Dist: pytest-xdist; extra == "dev"
45
+ Requires-Dist: setuptools; extra == "dev"
46
+ Requires-Dist: sphinx>=3.4.3; extra == "dev"
47
+ Requires-Dist: sphinx-rtd-theme>=0.5.1; extra == "dev"
48
+ Requires-Dist: rst2pdf>=0.102; extra == "dev"
49
+ Requires-Dist: z3-solver==4.14.1.0; extra == "dev"
50
+ Dynamic: author
51
+ Dynamic: author-email
52
+ Dynamic: classifier
53
+ Dynamic: description
54
+ Dynamic: description-content-type
55
+ Dynamic: home-page
56
+ Dynamic: license
57
+ Dynamic: license-file
58
+ Dynamic: provides-extra
59
+ Dynamic: requires-dist
60
+ Dynamic: requires-python
61
+ Dynamic: summary
62
+
63
+ <img src="https://raw.githubusercontent.com/pschanely/CrossHair/main/doc/source/logo-gray.png" width="5%" align="left">
64
+
65
+ # CrossHair
66
+
67
+ [![Join the chat on Discord](https://img.shields.io/discord/1346219754519789719?logo=discord&logoColor=white)](https://discord.gg/rUeTaYTWbb)
68
+ [![Check status](https://github.com/pschanely/CrossHair/actions/workflows/check.yml/badge.svg?branch=main&event=push)](https://github.com/pschanely/CrossHair/actions?query=workflow%3ACheck+event%3Apush)
69
+ [![Downloads](https://static.pepy.tech/badge/crosshair-tool/week)](https://pepy.tech/project/crosshair-tool)
70
+
71
+ An analysis tool for Python that blurs the line between testing and
72
+ type systems.
73
+
74
+ > **_THE LATEST NEWS:_**
75
+ Python's most popular property-based testing tool,
76
+ [Hypothesis](https://hypothesis.readthedocs.io/en/latest/),
77
+ now supports running CrossHair as an
78
+ [optional backend](https://hypothesis.readthedocs.io/en/latest/strategies.html#alternative-backends)!
79
+
80
+
81
+ If you have a function with
82
+ [type annotations](https://www.python.org/dev/peps/pep-0484/) and add a
83
+ contract
84
+ [in a supported syntax](https://crosshair.readthedocs.io/en/latest/kinds_of_contracts.html),
85
+ CrossHair will attempt to find counterexamples for you:
86
+
87
+ ![Animated GIF demonstrating the verification of a python function](https://raw.githubusercontent.com/pschanely/CrossHair/main/doc/source/duplicate_list.gif)
88
+
89
+ CrossHair works by repeatedly calling your functions with symbolic inputs.
90
+ It uses an [SMT solver] (a kind of theorem prover) to explore viable
91
+ execution paths and find counterexamples for you.
92
+ This is not a new idea; a Python approach was first described in
93
+ [this paper].
94
+ However, to my knowledge, CrossHair is the most complete implementation:
95
+ it can use symbolic reasoning for the built-in types, user-defined classes, and much
96
+ of the standard library.
97
+
98
+ [SMT solver]: https://en.wikipedia.org/wiki/Satisfiability_modulo_theories
99
+ [this paper]: https://hoheinzollern.files.wordpress.com/2008/04/seer1.pdf
100
+
101
+ Try CrossHair right now, in your browser, at [crosshair-web.org]!
102
+
103
+ CrossHair has [IDE integrations] for [VS Code], [PyCharm], and more.
104
+
105
+ Finally, CrossHair can do more than check contracts. It can also
106
+ [generate unit tests](https://crosshair.readthedocs.io/en/latest/cover.html)
107
+ and
108
+ [find behavioral differences](https://crosshair.readthedocs.io/en/latest/diff_behavior.html)
109
+ between functions.
110
+
111
+ [IDE integrations]: https://crosshair.readthedocs.io/en/latest/ide_integrations.html
112
+ [VS Code]: https://marketplace.visualstudio.com/items?itemName=CrossHair.crosshair
113
+ [PyCharm]: https://plugins.jetbrains.com/plugin/16266-crosshair-pycharm
114
+
115
+ [crosshair-web.org]: https://crosshair-web.org
116
+
117
+ Want to help?
118
+ Sign up for
119
+ [email](http://eepurl.com/hGTLRH)
120
+ or
121
+ [RSS](https://pschanely.github.io/feed.xml)
122
+ updates.
123
+ Star ⭐️ the repository.
124
+ There are
125
+ [other ways to help](https://crosshair.readthedocs.io/en/latest/how_can_i_help.html)
126
+ too.
127
+
128
+ ## [Documentation](https://crosshair.readthedocs.io/en/latest)
129
+
130
+ * [Introduction](https://crosshair.readthedocs.io/en/latest/introduction.html)
131
+ * [Get Started](https://crosshair.readthedocs.io/en/latest/get_started.html)
132
+ * [The Details: Contracts](https://crosshair.readthedocs.io/en/latest/contracts.html)
133
+ * [The Details: cover](https://crosshair.readthedocs.io/en/latest/cover.html)
134
+ * [The Details: diffbehavior](https://crosshair.readthedocs.io/en/latest/diff_behavior.html)
135
+ * [Kinds of Contracts](https://crosshair.readthedocs.io/en/latest/kinds_of_contracts.html)
136
+ * [Hints for Your Classes](https://crosshair.readthedocs.io/en/latest/hints_for_your_classes.html)
137
+ * [IDE Integrations](https://crosshair.readthedocs.io/en/latest/ide_integrations.html)
138
+ * [Case Studies](https://crosshair.readthedocs.io/en/latest/case_studies.html)
139
+ * [Limitations](https://crosshair.readthedocs.io/en/latest/limitations.html)
140
+ * [Plugins](https://crosshair.readthedocs.io/en/latest/plugins.html)
141
+ * [How Does It Work?](https://crosshair.readthedocs.io/en/latest/how_does_it_work.html)
142
+ * [How Can I Help?](https://crosshair.readthedocs.io/en/latest/how_can_i_help.html)
143
+ * [Related Work](https://crosshair.readthedocs.io/en/latest/related_work.html)
144
+ * [Contributing](https://crosshair.readthedocs.io/en/latest/contributing.html)
145
+ * [Changelog](https://crosshair.readthedocs.io/en/latest/changelog.html)
@@ -0,0 +1,176 @@
1
+ _crosshair_tracers.cp314-win32.pyd,sha256=yKk1hWCI63jUfRvxLWjl8Osk94yFK04uUBtLiq9KIco,17920
2
+ crosshair/__init__.py,sha256=htAmQZ0V85H_mIl9zJkZt60T5UH6Cdjj-hyTVbIwQEQ,978
3
+ crosshair/__main__.py,sha256=i4pjsZlXvtieQHJTEB0sF3e40qJjLoOm1z5rm-u70Uo,260
4
+ crosshair/_mark_stacks.h,sha256=IImygydFK9qethf41gUZDjySHR3WLXs-YsqWCHK9UFg,29468
5
+ crosshair/_preliminaries_test.py,sha256=klkzKGpyyVDGctCXdvq1xyXbGa4PRnXda1jfgE-7LLY,522
6
+ crosshair/_tracers.h,sha256=z1dln1ftrz9ofaBgiYLn1SZ13QNxpNYRE586XogsX_o,2268
7
+ crosshair/_tracers_pycompat.h,sha256=KqJHbya8zi1Z4Qrk2S6P-FfmC_Ew5LYvTxbA-V9TWPw,14878
8
+ crosshair/_tracers_test.py,sha256=gj54QgYtcz2RwZv4Ae2rX9N7zDOJw5FMz53w2hS8vFk,3783
9
+ crosshair/abcstring.py,sha256=Jvnnm7xsHGTcZvu5mbV_eL5IVEvbNNbeCauM6f7QYEI,6794
10
+ crosshair/auditwall.py,sha256=RGnRqjUf-WokimDsEcX-3sUrra9jaqyGym2gYAulYgo,5328
11
+ crosshair/auditwall_test.py,sha256=SKTy_7Q6xP0Den4i7HRHSaU0b37smi_Mb-arQnppFPI,2107
12
+ crosshair/codeconfig.py,sha256=-7nd4a44jG7Lm9cQJ70_mydapq6kYjbfrVHQ47mWi0w,4072
13
+ crosshair/codeconfig_test.py,sha256=n5kXtW60vG_CA0QlzLE3mS4k9caEwhB30bnhaGNh6Ww,3467
14
+ crosshair/condition_parser.py,sha256=iMQBZ4T1SFBJ4ARCqt_VJBNIWrLBKhDB_UI1zQefMFI,43921
15
+ crosshair/condition_parser_test.py,sha256=UldRWjTlecna5lKidIUnGawJmnd3siF4krH-14Eza4U,15997
16
+ crosshair/conftest.py,sha256=JjUauvXnjERszuS46iskuBRHBx-0uHacwKHeQ-gEQ2c,683
17
+ crosshair/copyext.py,sha256=_SRnS6UrUFl2-CHl8uRIOq-Y0MKYNQTFK132S3Ru34A,5044
18
+ crosshair/copyext_test.py,sha256=VSIoVeqAf18g2RNuLTbyNWJiMBgzHeab7LNX1KHCWZU,2182
19
+ crosshair/core.py,sha256=2MXhK3BW9pyJtNUGbUx7VR90yT_UPCzJ44zWYGhRleg,66011
20
+ crosshair/core_and_libs.py,sha256=U9GDCBE9Ecxy7T7bmJT7IYiQTdY1C8qbcoIoMMocu5U,4112
21
+ crosshair/core_regestered_types_test.py,sha256=3o1GrtjCEWSW-paPp5-yVdE2K1_ZIviGCff7KVZ0VS0,2181
22
+ crosshair/core_test.py,sha256=D19dx1fImb0bmu2RH02UxNN9vSEzvNPfnFa2hUgzBuY,34332
23
+ crosshair/diff_behavior.py,sha256=2T11J2Hk35Qp3RRp5ALtXyTgAl3v0W3KDNR_mSec-D4,11567
24
+ crosshair/diff_behavior_test.py,sha256=4ZKqulo0xjXwj0WwO5ky4QH3n0j9syqPd5OvOhz-Fug,7476
25
+ crosshair/dynamic_typing.py,sha256=fSh-iElFGTh_J61SSlXKmQsRuZAqqEKXyXX9EzKKzRA,13098
26
+ crosshair/dynamic_typing_test.py,sha256=4z9s6j-u2oQqlrzFx9Mc2Mc0RBPGiCZ2mDqP0F4IFVA,6117
27
+ crosshair/enforce.py,sha256=FfddNF1c70gZ17u0Hg6ukfsChv7frXIfWq2LijoVY9k,10293
28
+ crosshair/enforce_test.py,sha256=CvofUxa_Y-np5vhlBcjsrZ2CkpxNFbjv5U-rH027pw4,4847
29
+ crosshair/fnutil.py,sha256=MmS1aIODQ3xhtM4HYDEpf2uJBQxIYfeLMRQy1nZ31Vo,13500
30
+ crosshair/fnutil_test.py,sha256=1BFFpVnCMM-rS9k_JdSSjX1pPXRpEkUKlmG5e_rFZ1I,2166
31
+ crosshair/fuzz_core_test.py,sha256=-KYDeNtql8ZPtPVWwvPFRDpuR5fYwK6E29ctiPByUfM,17959
32
+ crosshair/lsp_server.py,sha256=Kl6z-Nudt2ZkzV0ojfzvGGa3cukXLOYKTCHYJUxzrRk,8920
33
+ crosshair/lsp_server_test.py,sha256=yHp7JtJLpF2G049lwhNlgAYXnVM88CtsudVVHVY7Hs0,999
34
+ crosshair/main.py,sha256=JRhCLZZYWOBjMgYV8DOEKbIB5FS1dUYmYLfoWfCZ3xs,35680
35
+ crosshair/main_test.py,sha256=BQvSEE_hkyIOW_n9-SIkG29k1ZFuB6j8LgftVvNmXAU,15377
36
+ crosshair/objectproxy.py,sha256=P-i5DK2e_uIK1bYbo9B3KCskAd5TdPeeu5L9GzvmqXI,10166
37
+ crosshair/objectproxy_test.py,sha256=tYLehy10sFFeJczZj7jiRFdnDlAdK80rE8F8yi-YfdU,1122
38
+ crosshair/opcode_intercept.py,sha256=_A6AiozgTg7EMkWEhG3yQ2-o048BWCb4xK6BixIWfcY,23661
39
+ crosshair/opcode_intercept_test.py,sha256=giJ9HK0jJ4r41epJMZ4PPT6-qn8nqDjS-900ULxIlLM,9545
40
+ crosshair/options.py,sha256=y3lYP5AfwkHFXjF7zl0kUrTH1_C5u1DMo_yAH_mivm8,6993
41
+ crosshair/options_test.py,sha256=eTlaTqNb29I3ZyyV0yCq_kEeE441l4xh-jKF_W6cWqs,389
42
+ crosshair/patch_equivalence_test.py,sha256=2obUF4jZWlF_HBawn6uOb53XuD7qNRiX6f8Y1A5-fUI,2655
43
+ crosshair/path_cover.py,sha256=MGTfQ5IO9HOBDbb7pDa9UsMfmYCpwQP-3YJJvCU0Anw,7047
44
+ crosshair/path_cover_test.py,sha256=DFB_fIC2d1waNfyUAP4wVv-hdbNkHAKRxgBcftxcKLY,4227
45
+ crosshair/path_search.py,sha256=5gsiY41aMcTnO5XONgjsnVulWbRIw0mYcpmRYedqORo,5749
46
+ crosshair/path_search_test.py,sha256=xhY7qmLRaDMnueFgokJaDKOufs2fhJdqU6okM4hWgF4,1744
47
+ crosshair/pathing_oracle.py,sha256=r0_a6P1fWfjo6C4L0fOOsRwWs3wDrYRAUbpDuEABRnQ,10784
48
+ crosshair/pathing_oracle_test.py,sha256=vAl83ynTFxnee35Z8_6CKaT4zvMHRNwJYMDq8Az8dzE,746
49
+ crosshair/pure_importer.py,sha256=yA1HkM3Jykt2w00OQALwxi5Gt_FFa-NU9JRiBcDS2DM,905
50
+ crosshair/pure_importer_test.py,sha256=Tp4RitGWUhtLhNxOlJkdz43WyXZLynARbCcY4lzG7Bk,437
51
+ crosshair/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
52
+ crosshair/register_contract.py,sha256=_KenbA6cH7An088gOCwY1-tibap8ppDsoxH0I1q3_ZQ,10660
53
+ crosshair/register_contract_test.py,sha256=XPFnUu_d-QdPc77SRzF5A-fa_ehwSFhAL-9gLE31ygg,5144
54
+ crosshair/simplestructs.py,sha256=oyPrOi2VqvF_A7zePSSWJTZZAv5c7rWFit3HosizR1U,35444
55
+ crosshair/simplestructs_test.py,sha256=XizES1bMUx3PAMsGw6zZIzhu-ZHaP1HUVorTI1w21_s,8922
56
+ crosshair/smtlib.py,sha256=WJnOtT4xSDsllQ7o-WEL_-eqJrujB9KMkMO9cVNa5YA,713
57
+ crosshair/smtlib_test.py,sha256=uR_X_32tqPjCp9gzExY_5AZIqw8wdOrIJ9vGONJmmOg,525
58
+ crosshair/statespace.py,sha256=blM9tJQUN3VaIVJwF9VUs-o-C6oDcNHhddmhUGHk_7o,44636
59
+ crosshair/statespace_test.py,sha256=hqUXSxfDUGpDvJveMnoQ57LnNmzhRaZm8sbURGd1-xw,3310
60
+ crosshair/stubs_parser.py,sha256=tJwChs8--UZjCtkshijzA-1K2tiZ2-mgpea_hJIdVJI,14592
61
+ crosshair/stubs_parser_test.py,sha256=eUIy8E7LoR7tmUy3dkZEOQqDWFq7hoqbIBdJ_nwkeIE,1271
62
+ crosshair/test_util.py,sha256=jtFZdNMR9cp-7sGmhDDfzeeIrWQAenyF4QRDE-kXdwA,10696
63
+ crosshair/test_util_test.py,sha256=6S3BfmWB4YM4z6D7rhc4cCtV7VAstN7L_STP1iT0QgU,969
64
+ crosshair/tracers.py,sha256=dfKUSCO13mhkh54BWwiku273jkMmROcI9WivA3H6oPI,17704
65
+ crosshair/tracers_test.py,sha256=73lIgNCVf4QhJo5uzoonH55vKWoYDffeYb8AdCZEQHw,3424
66
+ crosshair/type_repo.py,sha256=9gmajt6r1XYm4OAObA4yYh2FsZIRDbxFVSa95CF3Hyg,4815
67
+ crosshair/unicode_categories.py,sha256=JWGv47BSq1Cj-uYSWBQ4kYlsIPlmcPvaUxO6YG8d9I0,334108
68
+ crosshair/unicode_categories_test.py,sha256=KZ2OKOSMALmFp1BQbWj1-x6Ek5Iv2byxF4ytx2mN7LU,766
69
+ crosshair/util.py,sha256=5LYXkiFdRzScetseFCsbSjqPZCrbZstHTBAJi0YsObA,22950
70
+ crosshair/util_test.py,sha256=fIc3TeMbyu9nI430_gGbUrqXhPJ5wl9TxWAtIGgEL4s,4849
71
+ crosshair/watcher.py,sha256=A8ywSNPUY6Y4BHVO51dGM18nQcwGYx_kbBEwIOMTzF4,10355
72
+ crosshair/watcher_test.py,sha256=TCOdXmdGZ3NJ59X_w7SRVqiJY-BL2tUqyXK-3ql1d6s,2871
73
+ crosshair/z3util.py,sha256=_NcVbYhvSt24vhkpiXdEh4o2VRSIjb4g8Xpq49sJsGg,1835
74
+ crosshair/z3util_test.py,sha256=9_6fhpTphEQlg4QY29bGzN0KxfktsT8wYveNgbfqueg,184
75
+ crosshair/examples/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
76
+ crosshair/examples/check_examples_test.py,sha256=HXt9Je99TuyvC4pJ0Jkuxjf7a-bi8RasZNEjwUVxXdA,4209
77
+ crosshair/examples/PEP316/__init__.py,sha256=39eVIMt1avfS9HXte7nzP9LbVlFo97Q4-YL1CQXM1JM,35
78
+ crosshair/examples/PEP316/bugs_detected/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
79
+ crosshair/examples/PEP316/bugs_detected/getattr_magic.py,sha256=PyaKiAVHnlaPTEpaupKmGQcyK24HGiq1eKU2t-mHJFo,335
80
+ crosshair/examples/PEP316/bugs_detected/hash_consistent_with_equals.py,sha256=sv2khKjpv52qtLCnFbi0jzx5YX6UlkSmuRQdvd3GmqM,763
81
+ crosshair/examples/PEP316/bugs_detected/shopping_cart.py,sha256=NxpVGxxU4m9IHAsK5kGjX2Wbxi-u9HP4cuyRSIyJ8U0,747
82
+ crosshair/examples/PEP316/bugs_detected/showcase.py,sha256=fE4THnVqhJeFwcczq5zEXZygPtqMSIMwvZ3s5UD3VjE,1075
83
+ crosshair/examples/PEP316/correct_code/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
84
+ crosshair/examples/PEP316/correct_code/arith.py,sha256=mde7_ZSjep8qlE7AW0bVgK0MMHQZ8Ceu-Nw5h_XrZtc,1574
85
+ crosshair/examples/PEP316/correct_code/chess.py,sha256=f1VZBQP_7yB3XA2s4W-vMk2Kf1-26Mt4CKiaXgLN3G4,2158
86
+ crosshair/examples/PEP316/correct_code/nesting_inference.py,sha256=mfB0JAMGAfKmBfHUOzRzwf1AXTBDGiC2H3ArcR9W0T4,352
87
+ crosshair/examples/PEP316/correct_code/numpy_examples.py,sha256=0xxcrcbTV-XwV8TpQlhM42j4CGG3Ffu-IspHeLr1HPc,4511
88
+ crosshair/examples/PEP316/correct_code/rolling_average.py,sha256=MuUxFNCKUwFkA2wpDG_GBUAGs0x2JgsuOo6MHH-k-NU,741
89
+ crosshair/examples/PEP316/correct_code/showcase.py,sha256=VV5zBs0PcD7oHio0gFx3T3ZyThsAageDYC5X6JeVKEE,2819
90
+ crosshair/examples/deal/__init__.py,sha256=3OLiII2n1aCWLMMf7ukzn-HJ1cwc3YHLaa6u7fWdtFQ,33
91
+ crosshair/examples/icontract/__init__.py,sha256=G4preOL9xhocrgmHLqzTm_r6Ze09delDzEgKkkJ__Fs,38
92
+ crosshair/examples/icontract/bugs_detected/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
93
+ crosshair/examples/icontract/bugs_detected/showcase.py,sha256=lPnz8c0Nyk-mW9yusJMZHJJHkV3b2jPVt7nupuY5W3w,1289
94
+ crosshair/examples/icontract/bugs_detected/wrong_sign.py,sha256=TbsTNt-OMQ-c5PCu2mNWBEGXzk-2KZoZw1Cs2h0hATk,204
95
+ crosshair/examples/icontract/correct_code/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
96
+ crosshair/examples/icontract/correct_code/arith.py,sha256=fImqdDCzE523ijM5TZnFJMGpq7otdLoNoM3uu66vUus,1559
97
+ crosshair/examples/icontract/correct_code/showcase.py,sha256=UlVhUWU1KKf285tL41DP_z-Uywid4kh1U2kUwje5mZ8,3181
98
+ crosshair/libimpl/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
99
+ crosshair/libimpl/arraylib.py,sha256=Sj5tRcOuplo2xAYlhAEZ2evbn7rCz6GNmID2onsEgEU,5036
100
+ crosshair/libimpl/binascii_ch_test.py,sha256=qWAYU1Sid3muwYL8pvVoCsMQtm5t3J8jFtolygvdghQ,1039
101
+ crosshair/libimpl/binascii_test.py,sha256=Yg37_B-eywcLq7EbsJZR3BUYYF6A1PGxE4qsmeBMyXg,2037
102
+ crosshair/libimpl/binasciilib.py,sha256=kBFH5-W_q1gCTC-wusSq0cAsUsB_xOUpcW0XQbLzkSQ,5220
103
+ crosshair/libimpl/bisectlib_test.py,sha256=rVpcalZ4g3xr_b6z1Bv2FU1N07vPZyWhU9_CPzC8sBk,776
104
+ crosshair/libimpl/builtinslib.py,sha256=bd3a9KGauy0X35TiBkLHVUeLpUZZ_0hpj1eOl-CLUxM,178495
105
+ crosshair/libimpl/builtinslib_ch_test.py,sha256=I_gtmttBYvnG1QeOTMf3gJ2BNg5uazN_IFUKc0_clZY,32048
106
+ crosshair/libimpl/builtinslib_test.py,sha256=aopEctVJq5ozRKDvt0Z3FCzMSykAKXl2mVX-dnkspBk,95960
107
+ crosshair/libimpl/codecslib.py,sha256=cvpCbieFRB4BdfLqmKeJzpvm35qZ0ONqtilXPmN8OWI,2754
108
+ crosshair/libimpl/codecslib_test.py,sha256=3_uqcxEYK3BONdga0skZ1BkSPkIHRCgdoMB8NM3oUVY,2622
109
+ crosshair/libimpl/collectionslib.py,sha256=ltywQks-W56CkxvUawvcGZwsBcm6t2u5JLbA56nzqPs,8847
110
+ crosshair/libimpl/collectionslib_ch_test.py,sha256=A6-qeCU1zTcvuS6HkmF48Q45F3SvQJkh-BTUc2DKxJo,6107
111
+ crosshair/libimpl/collectionslib_test.py,sha256=jO2Syys4-jTy-3uG6lIHCPSkxiXUc7uYhnz900nZTwQ,9517
112
+ crosshair/libimpl/copylib.py,sha256=s2q6jMCT2bvzyq5kQyT40TsmOeeJmLI4Corz4qWDZyE,550
113
+ crosshair/libimpl/copylib_test.py,sha256=BnQgUSd5Oiw68jk2fRrhPRlIt9HaBXxUeroZPZj64yM,723
114
+ crosshair/libimpl/datetimelib.py,sha256=xhJK1o7jrPOtyjkUaol-hm12npWQZMQafp1ANel2kO8,81692
115
+ crosshair/libimpl/datetimelib_ch_test.py,sha256=Sbboze4U0ajUyyGb-k_aBP5Xe7FmorVtS_EdbybBCTI,9637
116
+ crosshair/libimpl/datetimelib_test.py,sha256=q27sPMNNJr3kBcIIkigsQbxslt-2qYhFUxc9PRVVf9E,2771
117
+ crosshair/libimpl/decimallib.py,sha256=PP1ZznK1e2xtuvC3Fo8GODr6O5oz6Sq9a043QExpbnE,182605
118
+ crosshair/libimpl/decimallib_ch_test.py,sha256=8iQpb1c0-TNqtY4EznYkgAGnBV2uOitFj0vILscDGNk,2458
119
+ crosshair/libimpl/decimallib_test.py,sha256=gbLoEtgpkq6Xod-9Am18mTpVH1VY_cZHvktS4_z2yQ4,2314
120
+ crosshair/libimpl/encodings_ch_test.py,sha256=jZM2XqiGd-40kDiC1YSlDoQafRrbtx6BBBeHTIRx3TE,2596
121
+ crosshair/libimpl/fractionlib.py,sha256=lGqUcl5S9lPC18pKP8Ihzirmgn8hf2QNPvdZejzK8IM,474
122
+ crosshair/libimpl/fractionlib_test.py,sha256=gl9PIZFoKyA10KMhfmA4SSK1i1y2yUO_IDvxIr-8lBc,2437
123
+ crosshair/libimpl/functoolslib.py,sha256=z8DnDm5WJqpS040U6XkyNYV_mY-KuqjLZVV125fVfDs,1043
124
+ crosshair/libimpl/functoolslib_test.py,sha256=KTbBFmOmOxnsqUmeZDathDgEPDtNSfRpMMuPUVLqX7w,1660
125
+ crosshair/libimpl/hashliblib.py,sha256=0s4yx2l-hNkqWEd1Xbmxf-2w_E3LmjHn0SShni_r_-8,1264
126
+ crosshair/libimpl/hashliblib_test.py,sha256=Ub8LyD8-YcvQVj2h62ofEpWpQD06BJKyJ69N5HBbkC0,424
127
+ crosshair/libimpl/heapqlib.py,sha256=bKULrqXgl-LpX59BdBQus-1_fWPz1bWWTkwpQDSGtNo,1358
128
+ crosshair/libimpl/heapqlib_test.py,sha256=ITGC-tidKstm7FjkO4UGYSP71auLM71GK7bzMA_FLtU,558
129
+ crosshair/libimpl/importliblib.py,sha256=BrGGhr3aPmLvl9M3YfeyEwK6LEUIno8v5fNnkljbYr0,639
130
+ crosshair/libimpl/importliblib_test.py,sha256=yCLhjzww26dagY3h6d1QIVT7zfaLU3DLlSYASRrdEmE,1058
131
+ crosshair/libimpl/iolib.py,sha256=iFx1KikRgp90xnWqPtM8BepbA-uA8riLYGGd4wp_xcE,7199
132
+ crosshair/libimpl/iolib_ch_test.py,sha256=1vgSXwMPq2R8y8DNMjlec5mx__YuZZeyEs5kLH241_o,3751
133
+ crosshair/libimpl/iolib_test.py,sha256=23FYRaWoKupO89-B0bh4OcjiHxUCvqSKnU-2SthFtJA,686
134
+ crosshair/libimpl/ipaddresslib.py,sha256=0_y8ZsSW_c5Izwbpz6YO-Wib62-q56SwKM7oMVsqN7E,322
135
+ crosshair/libimpl/itertoolslib.py,sha256=v8a8fl0t3ymWzDE9yh6Tv3PcS32DbEwf8DwCsefnvlU,1289
136
+ crosshair/libimpl/itertoolslib_test.py,sha256=CjjSvue26dcebitVN2_nKtIQTgDYnf8KfHIvqDX77Tk,1227
137
+ crosshair/libimpl/jsonlib.py,sha256=HKoevDzGIg1nzrf_qcRXTDKbKG4xs2qynU9arBAQmbY,29789
138
+ crosshair/libimpl/jsonlib_ch_test.py,sha256=PXRtccN_gRXgSD4by7Sbco2uOLkguzhJ2WoUz0UBIlc,1309
139
+ crosshair/libimpl/jsonlib_test.py,sha256=4fE-mb8nt8Uc3XV5WwQWui0fg5TJUsAxJPInovl2cFk,1433
140
+ crosshair/libimpl/mathlib.py,sha256=N3UWGNMJ1-fm0sIP0J0P1G4BOHdixq0htlSE3dn7ESY,4435
141
+ crosshair/libimpl/mathlib_ch_test.py,sha256=fKfGCFblOzWw7BxN9FipH2_GUMBfFtYVh-EOu3M4314,1313
142
+ crosshair/libimpl/mathlib_test.py,sha256=1FkskoIrhcqONKioLGQIWqkrK36Ds53Afxii-m9tOEM,1928
143
+ crosshair/libimpl/oslib.py,sha256=hbpVYfxMUfU9vHjc026Lz9cHHRMko2G_7yEodljwwR8,130
144
+ crosshair/libimpl/pathliblib_test.py,sha256=ySRzUBzLlb7fDJaPNJSUk8Rg5sf71_fegyyRKSA8UIo,262
145
+ crosshair/libimpl/randomlib.py,sha256=yjQmgnwjF6UxffVtBiBi6CFln1CtSse947BtaPIvYn4,6338
146
+ crosshair/libimpl/randomlib_test.py,sha256=szLn-O2No5JN83AE6UC5p9rm27nLKTpttXsV_DQjAig,3442
147
+ crosshair/libimpl/relib.py,sha256=tOpQOA_JpsQpG_-g6OEBMjQcvWtn8oqQKSwgVW82dGw,30118
148
+ crosshair/libimpl/relib_ch_test.py,sha256=o-u9iHMcw3QIl99fP42BkrWtoC0rfv8C72OsiuO55nM,5404
149
+ crosshair/libimpl/relib_test.py,sha256=f-xqNpOZKbp6kg0VyrkXANt0gglF2ykwAeG8uGQHSuI,16578
150
+ crosshair/libimpl/timelib.py,sha256=mP7hYp2ULlUU8eb5Z2nlrKMMgnBwqIuUX8gLG1q2hO4,2481
151
+ crosshair/libimpl/timelib_test.py,sha256=LP1jJh9EvbG58Zc7JjDj0yiYPXOXOtt549sV1bfJoME,1933
152
+ crosshair/libimpl/typeslib.py,sha256=PKkmXx_fyseiP3gNvQ5BIg6psHHCcW_blVPUSuMNzLs,483
153
+ crosshair/libimpl/typeslib_test.py,sha256=zrUTmYsiL18VV_qN1LOl7TDSP82uq4Oa9ndbUFpWMQQ,1165
154
+ crosshair/libimpl/unicodedatalib.py,sha256=WoDGPGs2bpoiO0pnnnBOBmHfxVgzOF4XjehqImn7Pt4,3178
155
+ crosshair/libimpl/unicodedatalib_test.py,sha256=tMDWbHSQpYT-QDC-42ucWErL6xftoKRzBvLGZXpKURE,1484
156
+ crosshair/libimpl/urlliblib.py,sha256=wF5gsDb8ss4ra8VDo3hE2c_pr1j28UumVmZPQWlJU-Q,637
157
+ crosshair/libimpl/urlliblib_test.py,sha256=cO5CGpTnQkdbS2eGXxiB8COQFH5DZnR0waYALvZVUt8,522
158
+ crosshair/libimpl/weakreflib.py,sha256=07_EoNvN0ZR7sygF1uEiyaXLI-Q39lcd5yz3WjxJfDg,243
159
+ crosshair/libimpl/weakreflib_test.py,sha256=1ld2-TlYshkIcXGKUY0Ox-dnpn9AA9Nualp_u1MAr4s,1881
160
+ crosshair/libimpl/zliblib.py,sha256=bpOYrRzLU9b1l3w_P3YDyrdrxaCAqwU3qQ4R_jLyjOY,372
161
+ crosshair/libimpl/zliblib_test.py,sha256=JoaxxdOu3spYm68tmRw70kdrXdf9njkFOILhpWcX1xg,401
162
+ crosshair/libimpl/encodings/__init__.py,sha256=VKUh56DNBLSFZEGVvKddivDAooo2pCh9o3hHA8OkYTI,703
163
+ crosshair/libimpl/encodings/_encutil.py,sha256=jE7B2N8eQFGYvZNpawI4Sa52NOeb_D3bqDthnZiHM9Y,7169
164
+ crosshair/libimpl/encodings/ascii.py,sha256=2EmYZTk51OaKx3kiv-ZDUYU3N5k3-OT0CrS8zr24M5A,1460
165
+ crosshair/libimpl/encodings/latin_1.py,sha256=BfgfxYvhzrk6lmDSOEhr85GXPo4_nHq0YCDGKJXZie8,1282
166
+ crosshair/libimpl/encodings/utf_8.py,sha256=hEUknu2B5Gt6exPTWK9KowywDd14eTTmqEqXSC2shzU,3266
167
+ crosshair/tools/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
168
+ crosshair/tools/check_help_in_doc.py,sha256=An-2EJ0_Xr-Szo431AoEgJafoFWwnPl8HoT4bi86dd8,8499
169
+ crosshair/tools/check_init_and_setup_coincide.py,sha256=f4TvPg1Q3C_BQYtGgPfY_fqxo_ZTeU7QCy7WwQjaIlA,3621
170
+ crosshair/tools/generate_demo_table.py,sha256=0WvJHPGkzqm_Y6ohYjy3OC9Gmj32DpzyrDYlWs6l2PQ,3954
171
+ crosshair_tool-0.0.97.dist-info/licenses/LICENSE,sha256=qQLSJN48eqvalILMr3uzkg0p74FtK7WSwkux-0twy-s,4552
172
+ crosshair_tool-0.0.97.dist-info/METADATA,sha256=-KGLXGA9Hx1PlzHyiR0sxSddG2npKoiOJBqSiJQHbg4,6872
173
+ crosshair_tool-0.0.97.dist-info/WHEEL,sha256=avp3B09fSRXVHn4cshTNKc58MtFVN-cVe0NyrqeYT2s,97
174
+ crosshair_tool-0.0.97.dist-info/entry_points.txt,sha256=u5FIPVn1jqn4Kzg5K_iNnbP6L4hQw5FWjQ0UMezG2VE,96
175
+ crosshair_tool-0.0.97.dist-info/top_level.txt,sha256=2jLWtM-BWg_ZYNbNfrcds0HFZD62a6J7ZIbcgcQrRk4,29
176
+ crosshair_tool-0.0.97.dist-info/RECORD,,
@@ -0,0 +1,5 @@
1
+ Wheel-Version: 1.0
2
+ Generator: setuptools (80.9.0)
3
+ Root-Is-Purelib: false
4
+ Tag: cp314-cp314-win32
5
+
@@ -0,0 +1,3 @@
1
+ [console_scripts]
2
+ crosshair = crosshair.main:main
3
+ mypycrosshair = crosshair.main:mypy_and_check
@@ -0,0 +1,93 @@
1
+ CrossHair includes software that is subject to the MIT license,
2
+ the Apache license, and the PSF license agreement.
3
+ Licenses are included below.
4
+
5
+ Except when indicated otherwise, all source files are MIT-licensed and
6
+ copyright is held by authors as detailed in the github commit history.
7
+
8
+
9
+ MIT License
10
+
11
+ Copyright (c) 2022 Various Authors
12
+
13
+ Permission is hereby granted, free of charge, to any person obtaining a copy
14
+ of this software and associated documentation files (the "Software"), to deal
15
+ in the Software without restriction, including without limitation the rights
16
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
17
+ copies of the Software, and to permit persons to whom the Software is
18
+ furnished to do so, subject to the following conditions:
19
+
20
+ The above copyright notice and this permission notice shall be included in all
21
+ copies or substantial portions of the Software.
22
+
23
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
24
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
25
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
26
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
27
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
28
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
29
+ SOFTWARE.
30
+
31
+
32
+ Apache 2.0 License
33
+
34
+ Copyright (c) 2022 Various Authors
35
+
36
+ Licensed under the Apache License, Version 2.0 (the "License");
37
+ you may not use this file except in compliance with the License.
38
+ You may obtain a copy of the License at
39
+
40
+ http://www.apache.org/licenses/LICENSE-2.0
41
+
42
+ Unless required by applicable law or agreed to in writing, software
43
+ distributed under the License is distributed on an "AS IS" BASIS,
44
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
45
+ See the License for the specific language governing permissions and
46
+ limitations under the License.
47
+
48
+
49
+ The PSF License Agreement
50
+
51
+ Copyright © 2001-2022 Python Software Foundation; All Rights Reserved
52
+
53
+ 1. This LICENSE AGREEMENT is between the Python Software Foundation ("PSF"), and
54
+ the Individual or Organization ("Licensee") accessing and otherwise using Python
55
+ 3.10.2 software in source or binary form and its associated documentation.
56
+
57
+ 2. Subject to the terms and conditions of this License Agreement, PSF hereby
58
+ grants Licensee a nonexclusive, royalty-free, world-wide license to reproduce,
59
+ analyze, test, perform and/or display publicly, prepare derivative works,
60
+ distribute, and otherwise use Python 3.10.2 alone or in any derivative
61
+ version, provided, however, that PSF's License Agreement and PSF's notice of
62
+ copyright, i.e., "Copyright © 2001-2022 Python Software Foundation; All Rights
63
+ Reserved" are retained in Python 3.10.2 alone or in any derivative version
64
+ prepared by Licensee.
65
+
66
+ 3. In the event Licensee prepares a derivative work that is based on or
67
+ incorporates Python 3.10.2 or any part thereof, and wants to make the
68
+ derivative work available to others as provided herein, then Licensee hereby
69
+ agrees to include in any such work a brief summary of the changes made to Python
70
+ 3.10.2.
71
+
72
+ 4. PSF is making Python 3.10.2 available to Licensee on an "AS IS" basis.
73
+ PSF MAKES NO REPRESENTATIONS OR WARRANTIES, EXPRESS OR IMPLIED. BY WAY OF
74
+ EXAMPLE, BUT NOT LIMITATION, PSF MAKES NO AND DISCLAIMS ANY REPRESENTATION OR
75
+ WARRANTY OF MERCHANTABILITY OR FITNESS FOR ANY PARTICULAR PURPOSE OR THAT THE
76
+ USE OF PYTHON 3.10.2 WILL NOT INFRINGE ANY THIRD PARTY RIGHTS.
77
+
78
+ 5. PSF SHALL NOT BE LIABLE TO LICENSEE OR ANY OTHER USERS OF PYTHON 3.10.2
79
+ FOR ANY INCIDENTAL, SPECIAL, OR CONSEQUENTIAL DAMAGES OR LOSS AS A RESULT OF
80
+ MODIFYING, DISTRIBUTING, OR OTHERWISE USING PYTHON 3.10.2, OR ANY DERIVATIVE
81
+ THEREOF, EVEN IF ADVISED OF THE POSSIBILITY THEREOF.
82
+
83
+ 6. This License Agreement will automatically terminate upon a material breach of
84
+ its terms and conditions.
85
+
86
+ 7. Nothing in this License Agreement shall be deemed to create any relationship
87
+ of agency, partnership, or joint venture between PSF and Licensee. This License
88
+ Agreement does not grant permission to use PSF trademarks or trade name in a
89
+ trademark sense to endorse or promote products or services of Licensee, or any
90
+ third party.
91
+
92
+ 8. By copying, installing or otherwise using Python 3.10.2, Licensee agrees
93
+ to be bound by the terms and conditions of this License Agreement.
@@ -0,0 +1,2 @@
1
+ _crosshair_tracers
2
+ crosshair