Cython 3.1.0a1__py3-none-any.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.
Files changed (301) hide show
  1. Cython/Build/BuildExecutable.py +169 -0
  2. Cython/Build/Cache.py +199 -0
  3. Cython/Build/Cythonize.py +250 -0
  4. Cython/Build/Dependencies.py +1275 -0
  5. Cython/Build/Distutils.py +1 -0
  6. Cython/Build/Inline.py +342 -0
  7. Cython/Build/IpythonMagic.py +560 -0
  8. Cython/Build/Tests/TestCyCache.py +119 -0
  9. Cython/Build/Tests/TestCythonizeArgsParser.py +481 -0
  10. Cython/Build/Tests/TestDependencies.py +133 -0
  11. Cython/Build/Tests/TestInline.py +112 -0
  12. Cython/Build/Tests/TestIpythonMagic.py +287 -0
  13. Cython/Build/Tests/TestRecythonize.py +212 -0
  14. Cython/Build/Tests/TestStripLiterals.py +155 -0
  15. Cython/Build/Tests/__init__.py +1 -0
  16. Cython/Build/__init__.py +8 -0
  17. Cython/CodeWriter.py +811 -0
  18. Cython/Compiler/AnalysedTreeTransforms.py +97 -0
  19. Cython/Compiler/Annotate.py +326 -0
  20. Cython/Compiler/AutoDocTransforms.py +314 -0
  21. Cython/Compiler/Buffer.py +680 -0
  22. Cython/Compiler/Builtin.py +862 -0
  23. Cython/Compiler/CmdLine.py +243 -0
  24. Cython/Compiler/Code.pxd +145 -0
  25. Cython/Compiler/Code.py +3328 -0
  26. Cython/Compiler/CodeGeneration.py +33 -0
  27. Cython/Compiler/CythonScope.py +179 -0
  28. Cython/Compiler/Dataclass.py +868 -0
  29. Cython/Compiler/DebugFlags.py +21 -0
  30. Cython/Compiler/Errors.py +295 -0
  31. Cython/Compiler/ExprNodes.py +15051 -0
  32. Cython/Compiler/FlowControl.pxd +97 -0
  33. Cython/Compiler/FlowControl.py +1438 -0
  34. Cython/Compiler/FusedNode.py +998 -0
  35. Cython/Compiler/Future.py +16 -0
  36. Cython/Compiler/Interpreter.py +57 -0
  37. Cython/Compiler/Lexicon.py +340 -0
  38. Cython/Compiler/LineTable.py +114 -0
  39. Cython/Compiler/Main.py +779 -0
  40. Cython/Compiler/MatchCaseNodes.py +259 -0
  41. Cython/Compiler/MemoryView.py +860 -0
  42. Cython/Compiler/ModuleNode.py +4065 -0
  43. Cython/Compiler/Naming.py +369 -0
  44. Cython/Compiler/Nodes.py +10557 -0
  45. Cython/Compiler/Optimize.py +5269 -0
  46. Cython/Compiler/Options.py +828 -0
  47. Cython/Compiler/ParseTreeTransforms.pxd +78 -0
  48. Cython/Compiler/ParseTreeTransforms.py +4441 -0
  49. Cython/Compiler/Parsing.pxd +9 -0
  50. Cython/Compiler/Parsing.py +4797 -0
  51. Cython/Compiler/Pipeline.py +425 -0
  52. Cython/Compiler/PyrexTypes.py +5572 -0
  53. Cython/Compiler/Pythran.py +223 -0
  54. Cython/Compiler/Scanning.pxd +40 -0
  55. Cython/Compiler/Scanning.py +574 -0
  56. Cython/Compiler/StringEncoding.py +347 -0
  57. Cython/Compiler/Symtab.py +2998 -0
  58. Cython/Compiler/Tests/TestBuffer.py +105 -0
  59. Cython/Compiler/Tests/TestBuiltin.py +72 -0
  60. Cython/Compiler/Tests/TestCmdLine.py +573 -0
  61. Cython/Compiler/Tests/TestCode.py +86 -0
  62. Cython/Compiler/Tests/TestFlowControl.py +65 -0
  63. Cython/Compiler/Tests/TestGrammar.py +202 -0
  64. Cython/Compiler/Tests/TestMemView.py +71 -0
  65. Cython/Compiler/Tests/TestParseTreeTransforms.py +285 -0
  66. Cython/Compiler/Tests/TestScanning.py +134 -0
  67. Cython/Compiler/Tests/TestSignatureMatching.py +73 -0
  68. Cython/Compiler/Tests/TestStringEncoding.py +33 -0
  69. Cython/Compiler/Tests/TestTreeFragment.py +63 -0
  70. Cython/Compiler/Tests/TestTreePath.py +93 -0
  71. Cython/Compiler/Tests/TestTypes.py +75 -0
  72. Cython/Compiler/Tests/TestUtilityLoad.py +112 -0
  73. Cython/Compiler/Tests/TestVisitor.py +61 -0
  74. Cython/Compiler/Tests/Utils.py +36 -0
  75. Cython/Compiler/Tests/__init__.py +1 -0
  76. Cython/Compiler/TreeFragment.py +278 -0
  77. Cython/Compiler/TreePath.py +290 -0
  78. Cython/Compiler/TypeInference.py +584 -0
  79. Cython/Compiler/TypeSlots.py +1181 -0
  80. Cython/Compiler/UFuncs.py +311 -0
  81. Cython/Compiler/UtilNodes.py +387 -0
  82. Cython/Compiler/UtilityCode.py +274 -0
  83. Cython/Compiler/Version.py +8 -0
  84. Cython/Compiler/Visitor.pxd +53 -0
  85. Cython/Compiler/Visitor.py +861 -0
  86. Cython/Compiler/__init__.py +1 -0
  87. Cython/Coverage.py +443 -0
  88. Cython/Debugger/Cygdb.py +179 -0
  89. Cython/Debugger/DebugWriter.py +82 -0
  90. Cython/Debugger/Tests/TestLibCython.py +275 -0
  91. Cython/Debugger/Tests/__init__.py +1 -0
  92. Cython/Debugger/Tests/cfuncs.c +8 -0
  93. Cython/Debugger/Tests/codefile +49 -0
  94. Cython/Debugger/Tests/test_libcython_in_gdb.py +578 -0
  95. Cython/Debugger/Tests/test_libpython_in_gdb.py +90 -0
  96. Cython/Debugger/__init__.py +1 -0
  97. Cython/Debugger/libcython.py +1549 -0
  98. Cython/Debugger/libpython.py +2821 -0
  99. Cython/Debugging.py +20 -0
  100. Cython/Distutils/__init__.py +2 -0
  101. Cython/Distutils/build_ext.py +137 -0
  102. Cython/Distutils/extension.py +96 -0
  103. Cython/Distutils/old_build_ext.py +351 -0
  104. Cython/Includes/cpython/__init__.pxd +173 -0
  105. Cython/Includes/cpython/array.pxd +174 -0
  106. Cython/Includes/cpython/bool.pxd +37 -0
  107. Cython/Includes/cpython/buffer.pxd +112 -0
  108. Cython/Includes/cpython/bytearray.pxd +33 -0
  109. Cython/Includes/cpython/bytes.pxd +200 -0
  110. Cython/Includes/cpython/cellobject.pxd +35 -0
  111. Cython/Includes/cpython/ceval.pxd +8 -0
  112. Cython/Includes/cpython/codecs.pxd +121 -0
  113. Cython/Includes/cpython/complex.pxd +55 -0
  114. Cython/Includes/cpython/contextvars.pxd +141 -0
  115. Cython/Includes/cpython/conversion.pxd +36 -0
  116. Cython/Includes/cpython/datetime.pxd +384 -0
  117. Cython/Includes/cpython/descr.pxd +26 -0
  118. Cython/Includes/cpython/dict.pxd +187 -0
  119. Cython/Includes/cpython/exc.pxd +263 -0
  120. Cython/Includes/cpython/fileobject.pxd +57 -0
  121. Cython/Includes/cpython/float.pxd +47 -0
  122. Cython/Includes/cpython/function.pxd +65 -0
  123. Cython/Includes/cpython/genobject.pxd +25 -0
  124. Cython/Includes/cpython/getargs.pxd +12 -0
  125. Cython/Includes/cpython/instance.pxd +25 -0
  126. Cython/Includes/cpython/iterator.pxd +36 -0
  127. Cython/Includes/cpython/iterobject.pxd +24 -0
  128. Cython/Includes/cpython/list.pxd +92 -0
  129. Cython/Includes/cpython/long.pxd +149 -0
  130. Cython/Includes/cpython/longintrepr.pxd +19 -0
  131. Cython/Includes/cpython/mapping.pxd +63 -0
  132. Cython/Includes/cpython/marshal.pxd +66 -0
  133. Cython/Includes/cpython/mem.pxd +120 -0
  134. Cython/Includes/cpython/memoryview.pxd +50 -0
  135. Cython/Includes/cpython/method.pxd +49 -0
  136. Cython/Includes/cpython/module.pxd +208 -0
  137. Cython/Includes/cpython/number.pxd +258 -0
  138. Cython/Includes/cpython/object.pxd +433 -0
  139. Cython/Includes/cpython/pycapsule.pxd +143 -0
  140. Cython/Includes/cpython/pylifecycle.pxd +68 -0
  141. Cython/Includes/cpython/pyport.pxd +8 -0
  142. Cython/Includes/cpython/pystate.pxd +95 -0
  143. Cython/Includes/cpython/pythread.pxd +53 -0
  144. Cython/Includes/cpython/ref.pxd +67 -0
  145. Cython/Includes/cpython/sequence.pxd +134 -0
  146. Cython/Includes/cpython/set.pxd +119 -0
  147. Cython/Includes/cpython/slice.pxd +70 -0
  148. Cython/Includes/cpython/time.pxd +129 -0
  149. Cython/Includes/cpython/tuple.pxd +72 -0
  150. Cython/Includes/cpython/type.pxd +53 -0
  151. Cython/Includes/cpython/unicode.pxd +639 -0
  152. Cython/Includes/cpython/version.pxd +32 -0
  153. Cython/Includes/cpython/weakref.pxd +42 -0
  154. Cython/Includes/libc/__init__.pxd +1 -0
  155. Cython/Includes/libc/complex.pxd +35 -0
  156. Cython/Includes/libc/errno.pxd +127 -0
  157. Cython/Includes/libc/float.pxd +43 -0
  158. Cython/Includes/libc/limits.pxd +28 -0
  159. Cython/Includes/libc/locale.pxd +46 -0
  160. Cython/Includes/libc/math.pxd +209 -0
  161. Cython/Includes/libc/setjmp.pxd +10 -0
  162. Cython/Includes/libc/signal.pxd +64 -0
  163. Cython/Includes/libc/stddef.pxd +9 -0
  164. Cython/Includes/libc/stdint.pxd +105 -0
  165. Cython/Includes/libc/stdio.pxd +80 -0
  166. Cython/Includes/libc/stdlib.pxd +72 -0
  167. Cython/Includes/libc/string.pxd +50 -0
  168. Cython/Includes/libc/time.pxd +47 -0
  169. Cython/Includes/libcpp/__init__.pxd +4 -0
  170. Cython/Includes/libcpp/algorithm.pxd +320 -0
  171. Cython/Includes/libcpp/any.pxd +16 -0
  172. Cython/Includes/libcpp/atomic.pxd +59 -0
  173. Cython/Includes/libcpp/bit.pxd +29 -0
  174. Cython/Includes/libcpp/cast.pxd +12 -0
  175. Cython/Includes/libcpp/cmath.pxd +518 -0
  176. Cython/Includes/libcpp/complex.pxd +106 -0
  177. Cython/Includes/libcpp/deque.pxd +165 -0
  178. Cython/Includes/libcpp/execution.pxd +15 -0
  179. Cython/Includes/libcpp/forward_list.pxd +63 -0
  180. Cython/Includes/libcpp/functional.pxd +26 -0
  181. Cython/Includes/libcpp/iterator.pxd +34 -0
  182. Cython/Includes/libcpp/limits.pxd +61 -0
  183. Cython/Includes/libcpp/list.pxd +117 -0
  184. Cython/Includes/libcpp/map.pxd +252 -0
  185. Cython/Includes/libcpp/memory.pxd +115 -0
  186. Cython/Includes/libcpp/numbers.pxd +15 -0
  187. Cython/Includes/libcpp/numeric.pxd +131 -0
  188. Cython/Includes/libcpp/optional.pxd +34 -0
  189. Cython/Includes/libcpp/pair.pxd +1 -0
  190. Cython/Includes/libcpp/queue.pxd +25 -0
  191. Cython/Includes/libcpp/random.pxd +166 -0
  192. Cython/Includes/libcpp/set.pxd +228 -0
  193. Cython/Includes/libcpp/stack.pxd +11 -0
  194. Cython/Includes/libcpp/string.pxd +333 -0
  195. Cython/Includes/libcpp/typeindex.pxd +15 -0
  196. Cython/Includes/libcpp/typeinfo.pxd +10 -0
  197. Cython/Includes/libcpp/unordered_map.pxd +193 -0
  198. Cython/Includes/libcpp/unordered_set.pxd +152 -0
  199. Cython/Includes/libcpp/utility.pxd +30 -0
  200. Cython/Includes/libcpp/vector.pxd +167 -0
  201. Cython/Includes/openmp.pxd +50 -0
  202. Cython/Includes/posix/__init__.pxd +1 -0
  203. Cython/Includes/posix/dlfcn.pxd +14 -0
  204. Cython/Includes/posix/fcntl.pxd +86 -0
  205. Cython/Includes/posix/ioctl.pxd +4 -0
  206. Cython/Includes/posix/mman.pxd +101 -0
  207. Cython/Includes/posix/resource.pxd +57 -0
  208. Cython/Includes/posix/select.pxd +21 -0
  209. Cython/Includes/posix/signal.pxd +73 -0
  210. Cython/Includes/posix/stat.pxd +98 -0
  211. Cython/Includes/posix/stdio.pxd +37 -0
  212. Cython/Includes/posix/stdlib.pxd +29 -0
  213. Cython/Includes/posix/strings.pxd +9 -0
  214. Cython/Includes/posix/time.pxd +71 -0
  215. Cython/Includes/posix/types.pxd +30 -0
  216. Cython/Includes/posix/uio.pxd +26 -0
  217. Cython/Includes/posix/unistd.pxd +271 -0
  218. Cython/Includes/posix/wait.pxd +38 -0
  219. Cython/Plex/Actions.pxd +24 -0
  220. Cython/Plex/Actions.py +119 -0
  221. Cython/Plex/DFA.pxd +14 -0
  222. Cython/Plex/DFA.py +164 -0
  223. Cython/Plex/Errors.py +48 -0
  224. Cython/Plex/Lexicons.py +178 -0
  225. Cython/Plex/Machines.pxd +36 -0
  226. Cython/Plex/Machines.py +238 -0
  227. Cython/Plex/Regexps.py +539 -0
  228. Cython/Plex/Scanners.pxd +47 -0
  229. Cython/Plex/Scanners.py +360 -0
  230. Cython/Plex/Transitions.pxd +14 -0
  231. Cython/Plex/Transitions.py +239 -0
  232. Cython/Plex/__init__.py +34 -0
  233. Cython/Runtime/__init__.py +1 -0
  234. Cython/Runtime/refnanny.pyx +261 -0
  235. Cython/Shadow.py +656 -0
  236. Cython/Shadow.pyi +521 -0
  237. Cython/StringIOTree.py +170 -0
  238. Cython/Tempita/__init__.py +4 -0
  239. Cython/Tempita/_looper.py +154 -0
  240. Cython/Tempita/_tempita.py +1091 -0
  241. Cython/TestUtils.py +417 -0
  242. Cython/Tests/TestCodeWriter.py +128 -0
  243. Cython/Tests/TestCythonUtils.py +202 -0
  244. Cython/Tests/TestJediTyper.py +223 -0
  245. Cython/Tests/TestShadow.py +114 -0
  246. Cython/Tests/TestStringIOTree.py +67 -0
  247. Cython/Tests/TestTestUtils.py +90 -0
  248. Cython/Tests/__init__.py +1 -0
  249. Cython/Tests/xmlrunner.py +390 -0
  250. Cython/Utility/AsyncGen.c +1263 -0
  251. Cython/Utility/Buffer.c +875 -0
  252. Cython/Utility/Builtins.c +660 -0
  253. Cython/Utility/CConvert.pyx +134 -0
  254. Cython/Utility/CMath.c +95 -0
  255. Cython/Utility/CommonStructures.c +139 -0
  256. Cython/Utility/Complex.c +378 -0
  257. Cython/Utility/Coroutine.c +2413 -0
  258. Cython/Utility/CpdefEnums.pyx +108 -0
  259. Cython/Utility/CppConvert.pyx +279 -0
  260. Cython/Utility/CppSupport.cpp +133 -0
  261. Cython/Utility/CythonFunction.c +1851 -0
  262. Cython/Utility/Dataclasses.c +185 -0
  263. Cython/Utility/Dataclasses.py +112 -0
  264. Cython/Utility/Embed.c +125 -0
  265. Cython/Utility/Exceptions.c +1017 -0
  266. Cython/Utility/ExtensionTypes.c +797 -0
  267. Cython/Utility/FunctionArguments.c +573 -0
  268. Cython/Utility/ImportExport.c +912 -0
  269. Cython/Utility/MemoryView.pyx +1478 -0
  270. Cython/Utility/MemoryView_C.c +992 -0
  271. Cython/Utility/ModuleSetupCode.c +2501 -0
  272. Cython/Utility/NumpyImportArray.c +46 -0
  273. Cython/Utility/ObjectHandling.c +3054 -0
  274. Cython/Utility/Optimize.c +1533 -0
  275. Cython/Utility/Overflow.c +404 -0
  276. Cython/Utility/Printing.c +86 -0
  277. Cython/Utility/Profile.c +660 -0
  278. Cython/Utility/StringTools.c +1206 -0
  279. Cython/Utility/TestCyUtilityLoader.pyx +8 -0
  280. Cython/Utility/TestCythonScope.pyx +75 -0
  281. Cython/Utility/TestUtilityLoader.c +12 -0
  282. Cython/Utility/TypeConversion.c +1329 -0
  283. Cython/Utility/UFuncs.pyx +50 -0
  284. Cython/Utility/UFuncs_C.c +89 -0
  285. Cython/Utility/__init__.py +28 -0
  286. Cython/Utility/arrayarray.h +143 -0
  287. Cython/Utils.py +687 -0
  288. Cython/__init__.py +10 -0
  289. Cython/__init__.pyi +7 -0
  290. Cython/py.typed +0 -0
  291. Cython-3.1.0a1.dist-info/COPYING.txt +19 -0
  292. Cython-3.1.0a1.dist-info/LICENSE.txt +176 -0
  293. Cython-3.1.0a1.dist-info/METADATA +67 -0
  294. Cython-3.1.0a1.dist-info/RECORD +301 -0
  295. Cython-3.1.0a1.dist-info/WHEEL +5 -0
  296. Cython-3.1.0a1.dist-info/entry_points.txt +4 -0
  297. Cython-3.1.0a1.dist-info/top_level.txt +3 -0
  298. cython.py +29 -0
  299. pyximport/__init__.py +4 -0
  300. pyximport/pyxbuild.py +160 -0
  301. pyximport/pyximport.py +482 -0
@@ -0,0 +1,19 @@
1
+ The original Pyrex code as of 2006-04 is licensed under the following
2
+ license: "Copyright stuff: Pyrex is free of restrictions. You may use,
3
+ redistribute, modify and distribute modified versions."
4
+
5
+ ------------------
6
+
7
+ Cython, which derives from Pyrex, is licensed under the Apache 2.0
8
+ Software License. More precisely, all modifications and new code
9
+ made to go from Pyrex to Cython are so licensed.
10
+
11
+ See LICENSE.txt for more details.
12
+
13
+ ------------------
14
+
15
+ The output of a Cython compilation is NOT considered a derivative
16
+ work of Cython. Specifically, though the compilation process may
17
+ embed snippets of varying lengths into the final output, these
18
+ snippets, as embedded in the output, do not encumber the resulting
19
+ output with any license restrictions.
@@ -0,0 +1,176 @@
1
+ Apache License
2
+ Version 2.0, January 2004
3
+ https://www.apache.org/licenses/
4
+
5
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
6
+
7
+ 1. Definitions.
8
+
9
+ "License" shall mean the terms and conditions for use, reproduction,
10
+ and distribution as defined by Sections 1 through 9 of this document.
11
+
12
+ "Licensor" shall mean the copyright owner or entity authorized by
13
+ the copyright owner that is granting the License.
14
+
15
+ "Legal Entity" shall mean the union of the acting entity and all
16
+ other entities that control, are controlled by, or are under common
17
+ control with that entity. For the purposes of this definition,
18
+ "control" means (i) the power, direct or indirect, to cause the
19
+ direction or management of such entity, whether by contract or
20
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
21
+ outstanding shares, or (iii) beneficial ownership of such entity.
22
+
23
+ "You" (or "Your") shall mean an individual or Legal Entity
24
+ exercising permissions granted by this License.
25
+
26
+ "Source" form shall mean the preferred form for making modifications,
27
+ including but not limited to software source code, documentation
28
+ source, and configuration files.
29
+
30
+ "Object" form shall mean any form resulting from mechanical
31
+ transformation or translation of a Source form, including but
32
+ not limited to compiled object code, generated documentation,
33
+ and conversions to other media types.
34
+
35
+ "Work" shall mean the work of authorship, whether in Source or
36
+ Object form, made available under the License, as indicated by a
37
+ copyright notice that is included in or attached to the work
38
+ (an example is provided in the Appendix below).
39
+
40
+ "Derivative Works" shall mean any work, whether in Source or Object
41
+ form, that is based on (or derived from) the Work and for which the
42
+ editorial revisions, annotations, elaborations, or other modifications
43
+ represent, as a whole, an original work of authorship. For the purposes
44
+ of this License, Derivative Works shall not include works that remain
45
+ separable from, or merely link (or bind by name) to the interfaces of,
46
+ the Work and Derivative Works thereof.
47
+
48
+ "Contribution" shall mean any work of authorship, including
49
+ the original version of the Work and any modifications or additions
50
+ to that Work or Derivative Works thereof, that is intentionally
51
+ submitted to Licensor for inclusion in the Work by the copyright owner
52
+ or by an individual or Legal Entity authorized to submit on behalf of
53
+ the copyright owner. For the purposes of this definition, "submitted"
54
+ means any form of electronic, verbal, or written communication sent
55
+ to the Licensor or its representatives, including but not limited to
56
+ communication on electronic mailing lists, source code control systems,
57
+ and issue tracking systems that are managed by, or on behalf of, the
58
+ Licensor for the purpose of discussing and improving the Work, but
59
+ excluding communication that is conspicuously marked or otherwise
60
+ designated in writing by the copyright owner as "Not a Contribution."
61
+
62
+ "Contributor" shall mean Licensor and any individual or Legal Entity
63
+ on behalf of whom a Contribution has been received by Licensor and
64
+ subsequently incorporated within the Work.
65
+
66
+ 2. Grant of Copyright License. Subject to the terms and conditions of
67
+ this License, each Contributor hereby grants to You a perpetual,
68
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
69
+ copyright license to reproduce, prepare Derivative Works of,
70
+ publicly display, publicly perform, sublicense, and distribute the
71
+ Work and such Derivative Works in Source or Object form.
72
+
73
+ 3. Grant of Patent License. Subject to the terms and conditions of
74
+ this License, each Contributor hereby grants to You a perpetual,
75
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
76
+ (except as stated in this section) patent license to make, have made,
77
+ use, offer to sell, sell, import, and otherwise transfer the Work,
78
+ where such license applies only to those patent claims licensable
79
+ by such Contributor that are necessarily infringed by their
80
+ Contribution(s) alone or by combination of their Contribution(s)
81
+ with the Work to which such Contribution(s) was submitted. If You
82
+ institute patent litigation against any entity (including a
83
+ cross-claim or counterclaim in a lawsuit) alleging that the Work
84
+ or a Contribution incorporated within the Work constitutes direct
85
+ or contributory patent infringement, then any patent licenses
86
+ granted to You under this License for that Work shall terminate
87
+ as of the date such litigation is filed.
88
+
89
+ 4. Redistribution. You may reproduce and distribute copies of the
90
+ Work or Derivative Works thereof in any medium, with or without
91
+ modifications, and in Source or Object form, provided that You
92
+ meet the following conditions:
93
+
94
+ (a) You must give any other recipients of the Work or
95
+ Derivative Works a copy of this License; and
96
+
97
+ (b) You must cause any modified files to carry prominent notices
98
+ stating that You changed the files; and
99
+
100
+ (c) You must retain, in the Source form of any Derivative Works
101
+ that You distribute, all copyright, patent, trademark, and
102
+ attribution notices from the Source form of the Work,
103
+ excluding those notices that do not pertain to any part of
104
+ the Derivative Works; and
105
+
106
+ (d) If the Work includes a "NOTICE" text file as part of its
107
+ distribution, then any Derivative Works that You distribute must
108
+ include a readable copy of the attribution notices contained
109
+ within such NOTICE file, excluding those notices that do not
110
+ pertain to any part of the Derivative Works, in at least one
111
+ of the following places: within a NOTICE text file distributed
112
+ as part of the Derivative Works; within the Source form or
113
+ documentation, if provided along with the Derivative Works; or,
114
+ within a display generated by the Derivative Works, if and
115
+ wherever such third-party notices normally appear. The contents
116
+ of the NOTICE file are for informational purposes only and
117
+ do not modify the License. You may add Your own attribution
118
+ notices within Derivative Works that You distribute, alongside
119
+ or as an addendum to the NOTICE text from the Work, provided
120
+ that such additional attribution notices cannot be construed
121
+ as modifying the License.
122
+
123
+ You may add Your own copyright statement to Your modifications and
124
+ may provide additional or different license terms and conditions
125
+ for use, reproduction, or distribution of Your modifications, or
126
+ for any such Derivative Works as a whole, provided Your use,
127
+ reproduction, and distribution of the Work otherwise complies with
128
+ the conditions stated in this License.
129
+
130
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
131
+ any Contribution intentionally submitted for inclusion in the Work
132
+ by You to the Licensor shall be under the terms and conditions of
133
+ this License, without any additional terms or conditions.
134
+ Notwithstanding the above, nothing herein shall supersede or modify
135
+ the terms of any separate license agreement you may have executed
136
+ with Licensor regarding such Contributions.
137
+
138
+ 6. Trademarks. This License does not grant permission to use the trade
139
+ names, trademarks, service marks, or product names of the Licensor,
140
+ except as required for reasonable and customary use in describing the
141
+ origin of the Work and reproducing the content of the NOTICE file.
142
+
143
+ 7. Disclaimer of Warranty. Unless required by applicable law or
144
+ agreed to in writing, Licensor provides the Work (and each
145
+ Contributor provides its Contributions) on an "AS IS" BASIS,
146
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
147
+ implied, including, without limitation, any warranties or conditions
148
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
149
+ PARTICULAR PURPOSE. You are solely responsible for determining the
150
+ appropriateness of using or redistributing the Work and assume any
151
+ risks associated with Your exercise of permissions under this License.
152
+
153
+ 8. Limitation of Liability. In no event and under no legal theory,
154
+ whether in tort (including negligence), contract, or otherwise,
155
+ unless required by applicable law (such as deliberate and grossly
156
+ negligent acts) or agreed to in writing, shall any Contributor be
157
+ liable to You for damages, including any direct, indirect, special,
158
+ incidental, or consequential damages of any character arising as a
159
+ result of this License or out of the use or inability to use the
160
+ Work (including but not limited to damages for loss of goodwill,
161
+ work stoppage, computer failure or malfunction, or any and all
162
+ other commercial damages or losses), even if such Contributor
163
+ has been advised of the possibility of such damages.
164
+
165
+ 9. Accepting Warranty or Additional Liability. While redistributing
166
+ the Work or Derivative Works thereof, You may choose to offer,
167
+ and charge a fee for, acceptance of support, warranty, indemnity,
168
+ or other liability obligations and/or rights consistent with this
169
+ License. However, in accepting such obligations, You may act only
170
+ on Your own behalf and on Your sole responsibility, not on behalf
171
+ of any other Contributor, and only if You agree to indemnify,
172
+ defend, and hold each Contributor harmless for any liability
173
+ incurred by, or claims asserted against, such Contributor by reason
174
+ of your accepting any such warranty or additional liability.
175
+
176
+ END OF TERMS AND CONDITIONS
@@ -0,0 +1,67 @@
1
+ Metadata-Version: 2.1
2
+ Name: Cython
3
+ Version: 3.1.0a1
4
+ Summary: The Cython compiler for writing C extensions in the Python language.
5
+ Home-page: https://cython.org/
6
+ Author: Robert Bradshaw, Stefan Behnel, David Woods, Greg Ewing, et al.
7
+ Author-email: cython-devel@python.org
8
+ License: Apache-2.0
9
+ Project-URL: Documentation, https://cython.readthedocs.io/
10
+ Project-URL: Donate, https://cython.readthedocs.io/en/latest/src/donating.html
11
+ Project-URL: Source Code, https://github.com/cython/cython
12
+ Project-URL: Bug Tracker, https://github.com/cython/cython/issues
13
+ Project-URL: User Group, https://groups.google.com/g/cython-users
14
+ Classifier: Development Status :: 3 - Alpha
15
+ Classifier: Intended Audience :: Developers
16
+ Classifier: License :: OSI Approved :: Apache Software License
17
+ Classifier: Operating System :: OS Independent
18
+ Classifier: Programming Language :: Python
19
+ Classifier: Programming Language :: Python :: 3
20
+ Classifier: Programming Language :: Python :: 3.7
21
+ Classifier: Programming Language :: Python :: 3.8
22
+ Classifier: Programming Language :: Python :: 3.9
23
+ Classifier: Programming Language :: Python :: 3.10
24
+ Classifier: Programming Language :: Python :: 3.11
25
+ Classifier: Programming Language :: Python :: 3.12
26
+ Classifier: Programming Language :: Python :: 3.13
27
+ Classifier: Programming Language :: Python :: Implementation :: CPython
28
+ Classifier: Programming Language :: Python :: Implementation :: PyPy
29
+ Classifier: Programming Language :: Python :: Implementation :: Stackless
30
+ Classifier: Programming Language :: C
31
+ Classifier: Programming Language :: C++
32
+ Classifier: Programming Language :: Cython
33
+ Classifier: Topic :: Software Development :: Code Generators
34
+ Classifier: Topic :: Software Development :: Compilers
35
+ Classifier: Topic :: Software Development :: Libraries :: Python Modules
36
+ Classifier: Typing :: Typed
37
+ Requires-Python: >=3.8
38
+ License-File: LICENSE.txt
39
+ License-File: COPYING.txt
40
+
41
+ The Cython language makes writing C extensions for the Python language as
42
+ easy as Python itself. Cython is a source code translator based on Pyrex_,
43
+ but supports more cutting edge functionality and optimizations.
44
+
45
+ The Cython language is a superset of the Python language (almost all Python
46
+ code is also valid Cython code), but Cython additionally supports optional
47
+ static typing to natively call C functions, operate with C++ classes and
48
+ declare fast C types on variables and class attributes. This allows the
49
+ compiler to generate very efficient C code from Cython code.
50
+
51
+ This makes Cython the ideal language for writing glue code for external
52
+ C/C++ libraries, and for fast C modules that speed up the execution of
53
+ Python code.
54
+
55
+ The newest Cython release can always be downloaded from https://cython.org/.
56
+ Unpack the tarball or zip file, enter the directory, and then run::
57
+
58
+ pip install .
59
+
60
+ Note that for one-time builds, e.g. for CI/testing, on platforms that are not
61
+ covered by one of the wheel packages provided on PyPI *and* the pure Python wheel
62
+ that we provide is not used, it is substantially faster than a full source build
63
+ to install an uncompiled (slower) version of Cython with::
64
+
65
+ NO_CYTHON_COMPILE=true pip install .
66
+
67
+ .. _Pyrex: https://www.cosc.canterbury.ac.nz/greg.ewing/python/Pyrex/
@@ -0,0 +1,301 @@
1
+ cython.py,sha256=pSc6akwWzrHnEbZXndrTylWt0w7kJa-4zq1yQ_xXbZU,631
2
+ Cython/CodeWriter.py,sha256=cgZKazW2jqCJbWAcr0LsXNYEJ8mJBzoAsUDwqnX45-Y,24111
3
+ Cython/Coverage.py,sha256=RsO1liJNgwsTj8PR2XtCPzv0UbI42wGV6TMX1rjbiTU,18489
4
+ Cython/Debugging.py,sha256=vFtJhn7QstMf5gnYru2qHIz5ZjPg1KSlZVGHr-pBCwM,552
5
+ Cython/Shadow.py,sha256=SF5lRJE9FJT-xpKqzMpyCec2xH4cSVfytL-LEvftknI,18711
6
+ Cython/Shadow.pyi,sha256=V6_nyqC79lwsDARSwxAjM7rsrB0OIxnYdWN5ulgngeI,18572
7
+ Cython/StringIOTree.py,sha256=8u4R5jhUzqYvSX1w5_RrvxbgUvaMqW8jhQgXcCNKIkE,5570
8
+ Cython/TestUtils.py,sha256=R3Ss1QMSGC5ZlB2PdIM8CUu_ATTsq7Pxp4cLy4-iWNk,15374
9
+ Cython/Utils.py,sha256=t7VxPDaQuKVKHSRGcvO-VpRrNNoosZZbdP_ywWgL6xc,21155
10
+ Cython/__init__.py,sha256=H7lNOo88Rbn0GlVR76B3N-IawyYBO7OTzfdj3Sntiu8,318
11
+ Cython/__init__.pyi,sha256=b6tWj5MgrMJz8EAV9MOqTbaFGvIxCOzH2bBkhrC80GU,185
12
+ Cython/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
13
+ Cython/Build/BuildExecutable.py,sha256=OhySP6G2ppkA_Tzutv2Mvxt3YyhViy_aU7vAeGCjEbY,4742
14
+ Cython/Build/Cache.py,sha256=kdxcA-x7-hck6K6VuMajP4pYMWQH_4pkzwvk5qOawiE,6855
15
+ Cython/Build/Cythonize.py,sha256=8vf92pJBs_Oac6COEmlXK1SerON7ZkUAaT9QIH6LV8g,9752
16
+ Cython/Build/Dependencies.py,sha256=5j5tGl7RMn3tfmnPweOwGDvMvEQ4tYWVWcDpZGIS3Xs,49720
17
+ Cython/Build/Distutils.py,sha256=iO5tPX84Kc-ZWMocfuQbl_PqyC9HGGIRS-NiKI60-ZE,49
18
+ Cython/Build/Inline.py,sha256=HgSEYiQ6bw6qbm-pmDV3zP8jZzlpr5BW6QVOA9GJkI0,12526
19
+ Cython/Build/IpythonMagic.py,sha256=82H4sb8p7G8eJokhZySh9it9lnTfLYmjRZ8shO6Cwlg,21430
20
+ Cython/Build/__init__.py,sha256=Wd8O1-WvSQWxQMHK3dUaNvOJEN4pw4dQeHayDlUWB3E,313
21
+ Cython/Build/Tests/TestCyCache.py,sha256=NHIE_gS9jyftw8fFcfdTknt-NsFPoQe1KLRjZvR0S74,4452
22
+ Cython/Build/Tests/TestCythonizeArgsParser.py,sha256=w8mw0sS_OV-8j1sdevv5wE28LZkhNFRmHdLcpddaCgE,20257
23
+ Cython/Build/Tests/TestDependencies.py,sha256=E8yGrYy03JvVPwtYB7JGE-VOCWyYB2ZkQpXKTORpyps,5566
24
+ Cython/Build/Tests/TestInline.py,sha256=ZTwgmKebwNlzLL-k8JitYMMfqaQPmq8caFUgoO8r7OY,3479
25
+ Cython/Build/Tests/TestIpythonMagic.py,sha256=9GL8U_Jtyk-sAdEBzCS81RkVjxeM0Jrs2-zAhfFUb54,9004
26
+ Cython/Build/Tests/TestRecythonize.py,sha256=6un9tt8-I1YiFJo9xXRWqe0aUndMfHwrwA0h81Emhwc,6276
27
+ Cython/Build/Tests/TestStripLiterals.py,sha256=NBsZVvCMAwkjIr-JhaI5DAwCxBsnhTDXFr6eHJ-FJxs,5285
28
+ Cython/Build/Tests/__init__.py,sha256=jOqtmPLCvMCq0xVMwGekuLpBmVgq0xtPFmUePySdOjs,13
29
+ Cython/Compiler/AnalysedTreeTransforms.py,sha256=f7YtGIZx2TannOY8QMvqv5-8GGVFvolkwGOgHO5h8f4,3786
30
+ Cython/Compiler/Annotate.py,sha256=aoDo41G3NvZ1TrrDdfRoJ3DGRd6GmjpB3b-Sa6WpVC8,13420
31
+ Cython/Compiler/AutoDocTransforms.py,sha256=rUJwwNXR6e1jlXzZ5UZwRIHOcySYhJ_zB8BqBIT3iCM,11494
32
+ Cython/Compiler/Buffer.py,sha256=UnyTH6hBVfxKVSpl_9ryOz1NG_v2Wow42taF0uOAsK4,26942
33
+ Cython/Compiler/Builtin.py,sha256=g5i4OACjpmAZaIA2bVRZ8R36bwAmJhWbK1NteMfPceE,37300
34
+ Cython/Compiler/CmdLine.py,sha256=eTV1FCCoo4W1-9qi0oiDJVxL1jB7HxeSiVOt7u4unhU,12281
35
+ Cython/Compiler/Code.pxd,sha256=JQ4m86zj9SIyvZ-ZSebpPgWGND0P4PzSCRa9cM0sST4,3948
36
+ Cython/Compiler/Code.py,sha256=RBl-Kb1-AYwsG2FOK18v09lrgGyhzSkP5dxYSA5KrTA,124452
37
+ Cython/Compiler/CodeGeneration.py,sha256=aEW8IwXvwEOsde0-RxvAi_cb8_qdaDGxH_nS_VFwKWc,1068
38
+ Cython/Compiler/CythonScope.py,sha256=HuXUNRZCVCoW_aevL3ZH4FBFW6UCULYZ1B8xdCpIB-8,6765
39
+ Cython/Compiler/Dataclass.py,sha256=BpXYLcDBg5gMhLUi3GHJcB1wVSChDpHpV2qp4CuHJNE,36863
40
+ Cython/Compiler/DebugFlags.py,sha256=5Zg9ETp0qPFEma6QMtrGUwu9Fn6NTYMBMWPI_GxFW0A,623
41
+ Cython/Compiler/Errors.py,sha256=u-XsIYumbrABxcdyskF-dazi5GmhXRf0rPG6WQke-eM,9151
42
+ Cython/Compiler/ExprNodes.py,sha256=7WdfjpkwSxz75mZ6kuRDMLAg9RoZPf_JQK_iv_9UTmY,611945
43
+ Cython/Compiler/FlowControl.pxd,sha256=0wDFfkjWddMSOjs76KQSePJBMS1CQk5RjESRHXRkYww,2499
44
+ Cython/Compiler/FlowControl.py,sha256=Xc0hVtBvn0oSD9aDf7idhWmpWJo9ANYGFrN2JmpZ914,50188
45
+ Cython/Compiler/FusedNode.py,sha256=sGk6KD__p_sAYxusF-8bsYXA-ANmEsYZ6wIR2wQtyfQ,42677
46
+ Cython/Compiler/Future.py,sha256=NFtSWCJYqPlEqWZ5Ob_bv_pDfW6iS7pPYWeGH1OGA5g,629
47
+ Cython/Compiler/Interpreter.py,sha256=2C-tJZkVM_8PM48PF1QGJHy_ohTjkWKTc-xdaRTG6RQ,1831
48
+ Cython/Compiler/Lexicon.py,sha256=eI9sKB0vRqsG5Wm1vDf76lU_Dq65IPMYucY5AgvfNVY,21549
49
+ Cython/Compiler/LineTable.py,sha256=dgLxY8qS31d2xvPkh4jNDcRoUM4ivaU9GGtd2cFFEVM,4308
50
+ Cython/Compiler/Main.py,sha256=2nITFeliFFddE8iQdz3fxLTuc1twKx6T7lIzfMI16pM,31751
51
+ Cython/Compiler/MatchCaseNodes.py,sha256=yVGVAsc1yrda1jHTAI7mZ2-SL67tNdcfOn-ugdCRWPs,7792
52
+ Cython/Compiler/MemoryView.py,sha256=qNjvbGE9ZOC-LmGKMV25l_ucSDjMfdMXWyz-wo1v6L0,30273
53
+ Cython/Compiler/ModuleNode.py,sha256=SRO-LpKNjbAaWYA-v_rBC12rwpNha-YbAt4-euuTsOo,187094
54
+ Cython/Compiler/Naming.py,sha256=Hjz33p_b7V038rhey8C1rjoJKw1vNvrG8uxZ7uECBJA,11409
55
+ Cython/Compiler/Nodes.py,sha256=EdntAyJMnAujTlakkOAO-7gtIKiyXN8p57G1mg75-_w,447136
56
+ Cython/Compiler/Optimize.py,sha256=MHSnVtcFBdM7BUuIlJr-OQFTcccNGP_0xkZ-wlJd3FE,229183
57
+ Cython/Compiler/Options.py,sha256=tuX4t0db4__qWWm2yU17YleL6x-_KSDrxflVYo-I39I,31366
58
+ Cython/Compiler/ParseTreeTransforms.pxd,sha256=42I45LGfxhHjBqvDlsguGXUEgp32T3okYIlazG-5aQE,2272
59
+ Cython/Compiler/ParseTreeTransforms.py,sha256=JTLRxDXKeEWsnTdSA9G_6GIpCT8pogZ_cI8GPUtOdxc,179210
60
+ Cython/Compiler/Parsing.pxd,sha256=A5Ckd1TecRLV_NDx4IzhquYdMsM0BGcDWh7LyXOjKIg,351
61
+ Cython/Compiler/Parsing.py,sha256=YSI6EFBmH-DG4KdxdMDEO-8IQVh_SDtHloDRbRFlupo,158003
62
+ Cython/Compiler/Pipeline.py,sha256=wZ8y0spd1baS2T6dl3_2ITL_LazJ-lFkQnKYoHL6_Ac,15538
63
+ Cython/Compiler/PyrexTypes.py,sha256=p9inqj9ZEm3eQBqRjVYNw_3vi41qA-e6KxdEXyuyOGY,210160
64
+ Cython/Compiler/Pythran.py,sha256=yeNKsq6jF8FbbI3R6cZd-fCE7VuxovhH7I3i5pLccRo,7195
65
+ Cython/Compiler/Scanning.pxd,sha256=EuzX6UR8GIQo-K1dPUyluJKznYyxjnpi50YzPs97yrk,1166
66
+ Cython/Compiler/Scanning.py,sha256=yTscm4ajRTnWb2Pu6Wm1KBTVC86tvdGmWPsTxQ-b6GE,19845
67
+ Cython/Compiler/StringEncoding.py,sha256=I4CLfRls4hyOfv8ZKPL0sIVlbSi9TSBLQ_afzWSeUmA,10242
68
+ Cython/Compiler/Symtab.py,sha256=pZUBHSnjLiGDoJZzQYDkdofOWZUMSHfhL40i97JTZwQ,133470
69
+ Cython/Compiler/TreeFragment.py,sha256=1AscujwN_mCFeO137PGy1ghCnJ17L9uYoJfqc-7h9VY,9514
70
+ Cython/Compiler/TreePath.py,sha256=QYa77vTjDV28T4g54UVskxJK6zZdYTOXTTTkUnhfNHs,7573
71
+ Cython/Compiler/TypeInference.py,sha256=LFmBXifmFDxJS26XUL4BCTF-J8qSJe6nDjTjwZinnrM,22210
72
+ Cython/Compiler/TypeSlots.py,sha256=agtBUxQ250QtiCg4j_FBleHitdc6bzgiWVPK8NnLU0k,50069
73
+ Cython/Compiler/UFuncs.py,sha256=RZiS_DXlDqyeqRD6YdBsnftu36rVKrO41141YPPVo24,10874
74
+ Cython/Compiler/UtilNodes.py,sha256=cA3DM1-1jvH3vIZX-BlsPNmzSMHdakz_4e2mg6pIZ04,12416
75
+ Cython/Compiler/UtilityCode.py,sha256=tELDls9QedEOCwu8CXIG7m27PwpXRtEQ3Ne23iSMLT4,11286
76
+ Cython/Compiler/Version.py,sha256=24xykpTsCkAQLowr2Y16q5HnlEfiBaCLPD0y4TPy-h0,142
77
+ Cython/Compiler/Visitor.pxd,sha256=Ys_t3ZU9Oy_GqY-P6CvZxg36dcFEAmnDzoI1gTpg6KU,1783
78
+ Cython/Compiler/Visitor.py,sha256=3GIWS3gXOB2kA0fq9xGirOsd-vsNUP8UUtpcnUsm-_Y,31132
79
+ Cython/Compiler/__init__.py,sha256=jOqtmPLCvMCq0xVMwGekuLpBmVgq0xtPFmUePySdOjs,13
80
+ Cython/Compiler/Tests/TestBuffer.py,sha256=conB2NtpIjYP6bqS50rnDOEhSVulkfviCvuUw5_Y9Nc,4144
81
+ Cython/Compiler/Tests/TestBuiltin.py,sha256=WyH4jo-2LCkxD_QPWMywRPaMPsUF2ZJerL4p60Hc3Mg,3453
82
+ Cython/Compiler/Tests/TestCmdLine.py,sha256=7taXaaaRouVMlGNStxkRfIG0Qd90K4-6vWsJ42p70SU,21678
83
+ Cython/Compiler/Tests/TestCode.py,sha256=t5NBJsAoCgysW4XclYRA9tF0hWb42vVvE6vig3BzDnc,2230
84
+ Cython/Compiler/Tests/TestFlowControl.py,sha256=A07myiBrQwT7fdCbEv3E_ue0CkCLXgcyyOcukcWQcpI,1783
85
+ Cython/Compiler/Tests/TestGrammar.py,sha256=hem6fHhR0i6chQbBlSNnnvJutubXkL8GTVfb2Oj25hw,5086
86
+ Cython/Compiler/Tests/TestMemView.py,sha256=lB3oau8jpT6CZiuwezpOGKoHTj8mGq0MhFX5d2YTS2M,2492
87
+ Cython/Compiler/Tests/TestParseTreeTransforms.py,sha256=Iduz5Voh5mrwCWCsl6egmjh5sdolpJHkrY50P-PynpQ,8696
88
+ Cython/Compiler/Tests/TestScanning.py,sha256=jWHKDfk-4edBaCz_o_YBmwUDXSvsE-Eia-7SLKq7Ovo,4850
89
+ Cython/Compiler/Tests/TestSignatureMatching.py,sha256=tDlQks1mgo2MIPBW_uC5YkoZt0RjPGYAdluk1j82IvM,3342
90
+ Cython/Compiler/Tests/TestStringEncoding.py,sha256=vyE-k-GcfRlboVN1SMX4WZzN8kJ6pplp_WiEdf3pXas,1768
91
+ Cython/Compiler/Tests/TestTreeFragment.py,sha256=_fgSju1IU3tIsXPknjJ0Nv8jtexFKxNS3nLMc0BSzJE,2155
92
+ Cython/Compiler/Tests/TestTreePath.py,sha256=WawCf75zI5YOSklMQh9QUUCOr8e9MohcQnkGOFrQYCg,4191
93
+ Cython/Compiler/Tests/TestTypes.py,sha256=hYaZY7cZZDtgPzRCsETe9bTdpgBs1zg_r-l5hmciu7I,3294
94
+ Cython/Compiler/Tests/TestUtilityLoad.py,sha256=5zuAYD_RuRW_KDl2cfA9aXCJ_G-LlDA9pIF4zbqeZlg,3923
95
+ Cython/Compiler/Tests/TestVisitor.py,sha256=bfOg4DhApiPdSroTAmC1M05RAnsY4ggZVnw4q08QWx8,2227
96
+ Cython/Compiler/Tests/Utils.py,sha256=ChgJ0EeGJRc_ZkNVjZFvFzk1tOj6dxjkW6X1BBot1Hc,1065
97
+ Cython/Compiler/Tests/__init__.py,sha256=jOqtmPLCvMCq0xVMwGekuLpBmVgq0xtPFmUePySdOjs,13
98
+ Cython/Debugger/Cygdb.py,sha256=_ECMXKSbA3YoUDF7KALQrx_bD2tRLI27fCVz-jTiAMI,6953
99
+ Cython/Debugger/DebugWriter.py,sha256=l-_LVOoP__d5eLpURPFv-JvAKGu5i8KY2trbJWZtdBY,2279
100
+ Cython/Debugger/__init__.py,sha256=jOqtmPLCvMCq0xVMwGekuLpBmVgq0xtPFmUePySdOjs,13
101
+ Cython/Debugger/libcython.py,sha256=CRsnPav8mAHBDzKzXrbo6rPFIZcwykI-JbHzfS4M8yQ,50017
102
+ Cython/Debugger/libpython.py,sha256=CzAI4N7X7cOYPTMhRYx2fWrlAg14APGJom6g3Vtr6iE,92865
103
+ Cython/Debugger/Tests/TestLibCython.py,sha256=o1V26-CUIfFm3mlceUBUiIwQ31oEbLjVLjQdomKtDzI,8392
104
+ Cython/Debugger/Tests/__init__.py,sha256=jOqtmPLCvMCq0xVMwGekuLpBmVgq0xtPFmUePySdOjs,13
105
+ Cython/Debugger/Tests/cfuncs.c,sha256=4SZurmnz5J1SiIs9N26Eu4zc2wvF_qMEKaN0eTcbDPo,71
106
+ Cython/Debugger/Tests/codefile,sha256=axsI884lThsoLMg2vlQJ6BPG8t9vil0mTDs_Pi7vuwI,642
107
+ Cython/Debugger/Tests/test_libcython_in_gdb.py,sha256=x6xoinhYTcDRHvi8mrEGv9NQ9OBLJm6yptt2AsiOObw,19077
108
+ Cython/Debugger/Tests/test_libpython_in_gdb.py,sha256=469c2YX8z9ZyN161__kW0BWYZHwDDIdw-7_DzdLGSv4,3249
109
+ Cython/Distutils/__init__.py,sha256=uyWaN2NJ_mKYLzVsDPi0qZCdIYoW5M_7YYEmAOIL3Ek,98
110
+ Cython/Distutils/build_ext.py,sha256=EQ1c1QVwA8FjIqhKh6oQlkE3XvrZCnm4su2V8RvmrKU,5700
111
+ Cython/Distutils/extension.py,sha256=hJ8VeNgGyxdz7Lke_Bg7FUkiC6mu9uNz9TosfXsfTaI,3551
112
+ Cython/Distutils/old_build_ext.py,sha256=T-0H1lPbaP1wa_YgV9JkattbYOhHDHqQ9gsWkqYkkd0,13723
113
+ Cython/Includes/openmp.pxd,sha256=3GTRd5JH31CvfTzXErglXnyf_jye1Gvk9O4giTa6pc0,1712
114
+ Cython/Includes/cpython/__init__.pxd,sha256=dUl8RHGxo-181oczdAl7vND_jkcMaHnK4A2ji1hJaos,8100
115
+ Cython/Includes/cpython/array.pxd,sha256=0laAK0ujw6gtzgfqzWWmckRQe0-SQ5smhAqXKNpJCWg,6367
116
+ Cython/Includes/cpython/bool.pxd,sha256=5RU6XY57iZ-xtngjXswJoBOxn1ClZdkcXWHQiZ2k6fg,1358
117
+ Cython/Includes/cpython/buffer.pxd,sha256=wm7aHygGUof_H3-JyICOek_xiU6Oks178ark1Nfk-a0,4870
118
+ Cython/Includes/cpython/bytearray.pxd,sha256=m0VdoHgouF1T0VtRjFLXZ5fi22vaMdVwFWpF3IxB6m4,1443
119
+ Cython/Includes/cpython/bytes.pxd,sha256=OH9krgA2CLdcNJWOM0PpgMskbh5vnq6fjjj1lzYOhOU,10066
120
+ Cython/Includes/cpython/cellobject.pxd,sha256=DXdTjSN1RP1m4CsaGuggyIA1nGiIO4Kr7-c0ZWfrpRo,1390
121
+ Cython/Includes/cpython/ceval.pxd,sha256=h6fBetZCUvWTcCn3bkXZg2kqnIuyC5ZSChyhOocxVus,236
122
+ Cython/Includes/cpython/codecs.pxd,sha256=3fyudEljkNGQ7e3dJPst6udXGcAeNKvlMK9U8EB1gXc,5084
123
+ Cython/Includes/cpython/complex.pxd,sha256=B_ondPAPNM7nSJtgMPKZgWxFHldPxBqG63spwK4t9_Y,1842
124
+ Cython/Includes/cpython/contextvars.pxd,sha256=_XiXmgYt1Cu9bnpsHubbb0uPvaYDpVT6YPe8EgxFet4,5718
125
+ Cython/Includes/cpython/conversion.pxd,sha256=dbbFuZJF0SscmcaNCUf0tlBQDRdKYf5tH8yzhTU_XYI,1696
126
+ Cython/Includes/cpython/datetime.pxd,sha256=xfHhXWuMqPdyDvA4Vcpp6nsuPcHQMp4UAlh2qVKhv04,13823
127
+ Cython/Includes/cpython/descr.pxd,sha256=RPSPJUxyejKsWruYS3IWU1rg0L1pKFAYidYcXW9YAj0,728
128
+ Cython/Includes/cpython/dict.pxd,sha256=k3JbYRJ_LxF39v_aErVk_Ka2-czw-H6lQCpZNUmzmdU,7959
129
+ Cython/Includes/cpython/exc.pxd,sha256=0pI7VcDnMLqf-S_BClRgoiH2xGyDbhlmFGWOKcn3sGM,13830
130
+ Cython/Includes/cpython/fileobject.pxd,sha256=yQG3M9wfS2jwpgSTo-8oXx8K9xnpGIkL-etQt9YDwTU,2889
131
+ Cython/Includes/cpython/float.pxd,sha256=1wVFFSyGTQA0IWBACQU1BUVMwVRjXDQwNZEYcSXEew0,1670
132
+ Cython/Includes/cpython/function.pxd,sha256=IoJUprbz8F10DEKh-vSSpY6nWkCHw7SqG9p2f-4gHek,2671
133
+ Cython/Includes/cpython/genobject.pxd,sha256=emC1JPgkuvBbGC0rgeZapKDaXYEj48uWiDC-xF0Mx2I,1052
134
+ Cython/Includes/cpython/getargs.pxd,sha256=268twKzdiAkQMXMsetNiNlNqaqzlKtiBENKbhOHd8x4,775
135
+ Cython/Includes/cpython/instance.pxd,sha256=qCbxPeHKOJbuszDu3UEaI-KLX9lTopuaNCcpoHJ9ngU,985
136
+ Cython/Includes/cpython/iterator.pxd,sha256=o52mLHbdm14Kqant2hR2zAdYzqK4fkSWZtBcRmpoP-I,1319
137
+ Cython/Includes/cpython/iterobject.pxd,sha256=5UEZZwG5zyzxoCpknoQuh91zPUV11Uxr6F1taJdTv8k,1036
138
+ Cython/Includes/cpython/list.pxd,sha256=HhnwchBGhPIAoObzIXyg33KqvSxBRveWoq34iZM508s,4096
139
+ Cython/Includes/cpython/long.pxd,sha256=1gN-O5AcV4B_r974qxW9YDr7NedDyDrTRjOelClvoyA,7047
140
+ Cython/Includes/cpython/longintrepr.pxd,sha256=czvKr3fQdYIwIRu3gojXssT9LFXH-nstM7f_lPt7lE4,480
141
+ Cython/Includes/cpython/mapping.pxd,sha256=DI5_kOp78IaYx77qIWpetu13iMEgGXZew84mTsCPYtM,2692
142
+ Cython/Includes/cpython/marshal.pxd,sha256=-Tl2w_7VfgzrCSq1gpBIEZRADw1g1zZNMdPXz4YJClE,2897
143
+ Cython/Includes/cpython/mem.pxd,sha256=O8I4rWJj7VvrlYjPpR-Dhls5izYddgO5rNyAOAzWUQQ,5912
144
+ Cython/Includes/cpython/memoryview.pxd,sha256=5u269XhOhUc0vF1jBQrUkLlZB4rdxDDGz3PaXNjY5as,2528
145
+ Cython/Includes/cpython/method.pxd,sha256=UWXflhIlP4y7B5XDbH9rQ15iADciGW-iqV1-dlw2Wwg,2196
146
+ Cython/Includes/cpython/module.pxd,sha256=ahRxpmkz_KMZhnSk-ZrXn_kkSoUhNBxWXf9uPquXyis,10128
147
+ Cython/Includes/cpython/number.pxd,sha256=gd64hOPnFjeWQIUhBfLx2yC6hQHxROxxr7Xxs3Hgprw,11608
148
+ Cython/Includes/cpython/object.pxd,sha256=Y_Cu11am3qCI78SZLn3-dg4XtDEaw35Rn4pyeSoj9ng,19676
149
+ Cython/Includes/cpython/pycapsule.pxd,sha256=Z3-xhfFRIldr-SqznNaE5J0N0jlUvoa-I5sGTHzWTGg,5700
150
+ Cython/Includes/cpython/pylifecycle.pxd,sha256=LziJZHclGdtsr3yT28fULHNZ_n67bs1DmI9s8YzrBGg,2000
151
+ Cython/Includes/cpython/pyport.pxd,sha256=MfWCwvbMjd_qBvpmj5DuNUqGnTnLLEIx9pb8B1-dz_Y,222
152
+ Cython/Includes/cpython/pystate.pxd,sha256=TQb-_El6K7h6ktpFkgfehi1VBe4KcUNscH7TG7Nv8W4,3779
153
+ Cython/Includes/cpython/pythread.pxd,sha256=0375TaYmtNCDDkWBh9WY4oJ_jhoTxhu_RR5QiOsXmYg,1946
154
+ Cython/Includes/cpython/ref.pxd,sha256=_cyHnvXpqHCw6Pt8cpK2HjUdU3qSkqvSuhyFO-TCqkE,3323
155
+ Cython/Includes/cpython/sequence.pxd,sha256=UajXW6S_ssyCmYDDsXFiHGR9IUDMP3f6AuV4bBzh2Do,6006
156
+ Cython/Includes/cpython/set.pxd,sha256=ewHRPVMbHUGDInZ3NziisCq68LvtmEJ-SXFbzmuJxLc,5383
157
+ Cython/Includes/cpython/slice.pxd,sha256=Rzgn8diAsN7lS2xGTq4VZucV3ziFNra4oz4tKGEAkMo,3111
158
+ Cython/Includes/cpython/time.pxd,sha256=oC5qSaLnfcwKQXT8y-NLkBRS76Ns_1TzRb41Oo6gFUI,4344
159
+ Cython/Includes/cpython/tuple.pxd,sha256=DUUhJp4v23g0JOJ6OK3sGvHNgEz97Z9be8XBgZrqH0Y,3219
160
+ Cython/Includes/cpython/type.pxd,sha256=qt8Hqz3DKGJuMgWJgP2JuCpUHiySYp8KCJTerJ4gnpI,2067
161
+ Cython/Includes/cpython/unicode.pxd,sha256=68cguuI3cMJbspbqwRPuzmpjJfOsZe_IV10JvhMd-FQ,30635
162
+ Cython/Includes/cpython/version.pxd,sha256=l5KXt04isEv3qbGRJZ8fNlCYGO24HsA2l4EM3RxTEhE,847
163
+ Cython/Includes/cpython/weakref.pxd,sha256=UU9H_ovHG07FFgP_kY2xhGv3yJDr_8iujCZnxH2jnlo,1984
164
+ Cython/Includes/libc/__init__.pxd,sha256=jOqtmPLCvMCq0xVMwGekuLpBmVgq0xtPFmUePySdOjs,13
165
+ Cython/Includes/libc/complex.pxd,sha256=m2ntA8NFZQG02UuY5YDGu-MrW-Avp0kSY82mhkR1Q8M,1224
166
+ Cython/Includes/libc/errno.pxd,sha256=tt0CJaCDWZN4HGtzC5nP7D-hT-jjoYD9m0FOPizmRvc,2049
167
+ Cython/Includes/libc/float.pxd,sha256=IhvZJljpTG0fZtcIp7EBO2Sqddozxoxwj4RFNVcKLpY,966
168
+ Cython/Includes/libc/limits.pxd,sha256=xHlIyuDIKpjqclvRRYzZIcfd5G1re5QtbmoDMqZR_Ec,621
169
+ Cython/Includes/libc/locale.pxd,sha256=sixG8EJ6wiVb0HIR1LWJ3lXTjTv463GJ9C_40HRovN4,1140
170
+ Cython/Includes/libc/math.pxd,sha256=Hy0ewq4Xw2sWPvrokbrbpHw6r6azx8C1nRsNWtuMhUs,6581
171
+ Cython/Includes/libc/setjmp.pxd,sha256=XRh-gSuhvFLl0nRvz5OhSWYe9eqX2attAck3JI7mwa4,297
172
+ Cython/Includes/libc/signal.pxd,sha256=RmJeCLtWUfYFTtwiocZSV-gJtJrxFijkTYOZnvOk9Pw,1179
173
+ Cython/Includes/libc/stddef.pxd,sha256=0rCyoocCfDL-1OQo3pxHQ-6fW20SAYktOLPoa4d97w8,164
174
+ Cython/Includes/libc/stdint.pxd,sha256=qHJXzpWCrbvJWSaHYZL27VJPupQreTZl9VGj0jgLdRU,3449
175
+ Cython/Includes/libc/stdio.pxd,sha256=qUaxEwNrQl1-4yHLorzzJZ-a-y5_-Rm_m7Z5meaRqH0,2476
176
+ Cython/Includes/libc/stdlib.pxd,sha256=p62xq2XfB24WfNCjRXgD6cOYoRuV47AnYijkjWv4ugE,2444
177
+ Cython/Includes/libc/string.pxd,sha256=tzYGbRrnccedFLes-KGgJqM0FEtwHF_q4f2fqltNvyE,2038
178
+ Cython/Includes/libc/time.pxd,sha256=zeE7saukFU9k77SXjUlIJ2GWka-LdXCFVwinfL4sQx0,1354
179
+ Cython/Includes/libcpp/__init__.pxd,sha256=PCx8ZRfOeoyMRu41PPlPY9uo2kZmt_7d0KR4Epzfe7c,94
180
+ Cython/Includes/libcpp/algorithm.pxd,sha256=HaatOKA2pIHc-RNHCIWayPXLT2Hd56Q0gKC5kLlCYYc,23704
181
+ Cython/Includes/libcpp/any.pxd,sha256=0HE8j4XF0bkCrxaYWE3DM1kV_2LhljH8WKh2ariwIWc,425
182
+ Cython/Includes/libcpp/atomic.pxd,sha256=BDFpDe8SmSdiDkEUfzbh55hjkY8yCUVDyeeUcMOwiy8,1705
183
+ Cython/Includes/libcpp/bit.pxd,sha256=Wd_4EoENOPZeqqhd0s--6TCOzeqPpUFfGNQibsqV9Ig,749
184
+ Cython/Includes/libcpp/cast.pxd,sha256=En4LBubdinfpm9Rel077tK_LGwg_3k4FAu9mlIbKjuw,501
185
+ Cython/Includes/libcpp/cmath.pxd,sha256=-_jnjIWY47jybkNnGrMk8ewZeGaWU0ezMWAZm9UCRk0,19935
186
+ Cython/Includes/libcpp/complex.pxd,sha256=JtuQuknvS6GQ0FfyJGQ914DXvzNEaF1-z9D0jST6gXM,2995
187
+ Cython/Includes/libcpp/deque.pxd,sha256=SwgYrnqq6OMQMSOEFTZpnpRsii7pIAT-06bLxMS5w7M,6718
188
+ Cython/Includes/libcpp/execution.pxd,sha256=I2KizUy9DGm_0edrd2BFdHPwyeip2ZcDxqdwb0t7taI,515
189
+ Cython/Includes/libcpp/forward_list.pxd,sha256=o2ThwKyJWZrNT4ZMB1aYmf-2wqYiqSCDdfVswpo8S8I,2429
190
+ Cython/Includes/libcpp/functional.pxd,sha256=kMul7WB1J0X2-611AMtXq6sP9jYYk3YO8zZoDKFaeDU,722
191
+ Cython/Includes/libcpp/iterator.pxd,sha256=UjkDqqKq6pHLiwgdUY730PbzAiTKKlhak6gkVd3jtsk,1512
192
+ Cython/Includes/libcpp/limits.pxd,sha256=BWJzVBB8MZt3l9PUre1o5eScE2fGJa3_Sv6e_KH30Uw,1821
193
+ Cython/Includes/libcpp/list.pxd,sha256=iOovgIk_Slkf7yaDEv6-ZUss_AU98OGWkvgNQDF0K0A,4438
194
+ Cython/Includes/libcpp/map.pxd,sha256=C8EaEsvLEc2tmEkyybOzgkx3CoFWYFBpZelHhcKHI1s,10481
195
+ Cython/Includes/libcpp/memory.pxd,sha256=OqNDPX_1ps9bxWCEQDiefbQv-NeZJ7SNUQtdYB86MZs,3593
196
+ Cython/Includes/libcpp/numbers.pxd,sha256=SkBhbClhRTtzbSMj_QvR2pz-CjdB08ZXPJbXSwATzvw,395
197
+ Cython/Includes/libcpp/numeric.pxd,sha256=dTdOmLBD5X5VGeTdYQqA_AXgJOr5f51_-rR7umo-w0Y,6571
198
+ Cython/Includes/libcpp/optional.pxd,sha256=Mf5gnZIvB9IR-L7bi3ntog2EOXB-pp1Xo45CWqyRCiU,990
199
+ Cython/Includes/libcpp/pair.pxd,sha256=UBJXw43uHkDlNsr0Pu1aP5tZ-ILXhUAyOLam2qdWmZA,27
200
+ Cython/Includes/libcpp/queue.pxd,sha256=FbL4Q7C3lgtZ2YzictU1XBXzQ7G-6y9i_7l2eqzA3Xc,649
201
+ Cython/Includes/libcpp/random.pxd,sha256=jgjjSbPvJturdi1NhYclH6NQRnDF3CiCbuPKgtrQ2lc,6203
202
+ Cython/Includes/libcpp/set.pxd,sha256=IAEHB3ElvGIm9AX8fWoO9db1jpz6eVXLDgMgOcoHhcY,9176
203
+ Cython/Includes/libcpp/stack.pxd,sha256=hCU6nVpHHkKhlzREnw4cSi64atGu9pWeuorFSZtEoh4,301
204
+ Cython/Includes/libcpp/string.pxd,sha256=gT_1KTVrAt-0rnWT5S97GJhPChKpk-syeqa_Mj5L9wU,13840
205
+ Cython/Includes/libcpp/typeindex.pxd,sha256=mIHr5Mq6Lol0SlzqeK6w_giVERh3uAjZm78yPDLXzc4,524
206
+ Cython/Includes/libcpp/typeinfo.pxd,sha256=tITsqurrdaZjsEGFksem9xZtVhSxQRxHZxcoC-4Y-DY,304
207
+ Cython/Includes/libcpp/unordered_map.pxd,sha256=dHnTuJ1S3ja7OYGRW-hZ1Zh_xDpv3iW6JUxs9Um_K4U,7945
208
+ Cython/Includes/libcpp/unordered_set.pxd,sha256=yfmib2EnFDGn_RvlxCFkVy-eVapwQw2FvTHu-I5psTU,5810
209
+ Cython/Includes/libcpp/utility.pxd,sha256=hTbvp7c12pnU2yvzzMvflZB-MAc_--3xh3PXtD_VIwg,1040
210
+ Cython/Includes/libcpp/vector.pxd,sha256=lLjXSgOThX23KA6Suuyf0FrAY7kDiTs8xFJi5xKzetk,6839
211
+ Cython/Includes/posix/__init__.pxd,sha256=jOqtmPLCvMCq0xVMwGekuLpBmVgq0xtPFmUePySdOjs,13
212
+ Cython/Includes/posix/dlfcn.pxd,sha256=U-jAieh45NSlrlogsd6SJeCunYDxCG-AlQ7hpEXQgL4,356
213
+ Cython/Includes/posix/fcntl.pxd,sha256=s0Qj0-T7Luzk0dJH4Jn_U54Suzf1LrfKDlFp7qg_nfM,1697
214
+ Cython/Includes/posix/ioctl.pxd,sha256=2RC5zejPOCTkarDZM_6Vd2wc4oBuN7iaiL_C5MPBs90,99
215
+ Cython/Includes/posix/mman.pxd,sha256=jeRRW5YRK4o2cLx5M98Ce--CP7GGZWVyy3ylW2mP6nU,3475
216
+ Cython/Includes/posix/resource.pxd,sha256=_oeWwy1HOQ-PUAxfnM1Ha7jnSIi2uUosAaNaQmqUmsk,1338
217
+ Cython/Includes/posix/select.pxd,sha256=cF6U60K7hYUzQuY8udA8VF50vTC7xxau1eynXrADzAU,619
218
+ Cython/Includes/posix/signal.pxd,sha256=wFJI5UthdtU9mZWjEBeZ9IIfeX252JVwDk2tsbW_q3U,1876
219
+ Cython/Includes/posix/stat.pxd,sha256=5sHZ4Ira3nVeNDynsM-7aEcJu7DfC07d_aTwlcUhC0Q,2695
220
+ Cython/Includes/posix/stdio.pxd,sha256=nDxLG4Qdq2v9zLb-bfxphv9oCvCD5QenT2POqSX7Sww,1055
221
+ Cython/Includes/posix/stdlib.pxd,sha256=G5Miv-QwID6Te9BQsz2vlRyKTpmvtuuYdwOUX4RxRoM,935
222
+ Cython/Includes/posix/strings.pxd,sha256=GNEteqND2wgXXSvkv6U9eKSC9oIom3C7o2zQ6W_J_S4,374
223
+ Cython/Includes/posix/time.pxd,sha256=lX06ykHd1qZsrw9ziKLpsGNdoN03PURRfrEngOMRBcs,1981
224
+ Cython/Includes/posix/types.pxd,sha256=qSIuxPOkw-2ef4PoEzGgeNxINtXJEkZPSLWDopynz4c,1167
225
+ Cython/Includes/posix/uio.pxd,sha256=lsHOhduB-LgUwWz8uMYlenGa29gtfc2B_K8Jjw7_8OY,822
226
+ Cython/Includes/posix/unistd.pxd,sha256=w9B4d9NaXBsQ62XOr2xe9UFPGewmEk5BG6sqiRWdoM8,8061
227
+ Cython/Includes/posix/wait.pxd,sha256=8bQAm7_cADrhT9ZY8-HZUn6dbIeIvEkuy-ZYmaSYQMg,1246
228
+ Cython/Plex/Actions.pxd,sha256=FitAd4d7bqe88jGnCLcjmyDxaKzVn1iiujup4lmWx3I,553
229
+ Cython/Plex/Actions.py,sha256=WVLtt8Sumnch8AXbtCvXN4ppWt0iRhAWRULcrb6FqEs,2853
230
+ Cython/Plex/DFA.pxd,sha256=UQLNFC4_BG1-CF4KBSDT9K7cc38hioCh5NfN9q1NtYU,318
231
+ Cython/Plex/DFA.py,sha256=yvfavRVwI1DtEWOG3dr2GqpEb8_M7CEydDvNcvVvOMc,5927
232
+ Cython/Plex/Errors.py,sha256=UsCwtNpxD2_BfStOsYfb1gMeU0xe5a_8yUDd7WKf7cc,976
233
+ Cython/Plex/Lexicons.py,sha256=ZaTeuyhl_EHgvvDWk9hSzW6CeHTdFwLSKb5UM-kBGnU,5891
234
+ Cython/Plex/Machines.pxd,sha256=t77is2iFpmRLSOjwevMrjLxovLrHcwZb_EWN1rwI68Q,828
235
+ Cython/Plex/Machines.py,sha256=6JFyYBN5eQwYjEZ8_CseJSOg6bFpco_oE2ioUgluvEA,7516
236
+ Cython/Plex/Regexps.py,sha256=BF57aVD5UTpK7fVCTmlXTBCsDkxkHTbArYZQl0fFDm4,14909
237
+ Cython/Plex/Scanners.pxd,sha256=1uK9IsSrleYpgy1WSX2U_SbP_E8KM8f3yj9TpSLto24,1373
238
+ Cython/Plex/Scanners.py,sha256=UDju63_VylUtrKq4NzKoz5kWvLt_UT7_DGmIwvNlVFg,13087
239
+ Cython/Plex/Transitions.pxd,sha256=XH4WKLtvCHTfC5zW-fAD3g2MT-Eap8y_gH7Rlv6QPcM,300
240
+ Cython/Plex/Transitions.py,sha256=dUT-KTqiAEUNBWhQj7z3ldEsj8KVGmGbRsDis4iuFvg,7141
241
+ Cython/Plex/__init__.py,sha256=GMAj47guqw4qWDVw8dQLlRl2xzqgr7sRlSVVbDhePyw,1116
242
+ Cython/Runtime/__init__.py,sha256=jOqtmPLCvMCq0xVMwGekuLpBmVgq0xtPFmUePySdOjs,13
243
+ Cython/Runtime/refnanny.pyx,sha256=LWFMksURDK7qlcWJspkNXc_Cw-EYv18-puNXMKLMaVo,8785
244
+ Cython/Tempita/__init__.py,sha256=YHujYHiLoYUwFNNswJCgzSrDuie3sV08JsWT9Nbmp78,152
245
+ Cython/Tempita/_looper.py,sha256=rtvD2BDuXThB7IvoRfecm1w8vSCkaOEZUBl08PnGLcM,3975
246
+ Cython/Tempita/_tempita.py,sha256=lj6mlSNyuJ3hHIsODq7lWbzLyL5Gak6ZVr0tc2vA2qI,37513
247
+ Cython/Tests/TestCodeWriter.py,sha256=_LonlPtsfkTLZBEQXMk8rOyJVvq417uzf01ha5alwGE,3783
248
+ Cython/Tests/TestCythonUtils.py,sha256=VnOT9GxbE3uxEOVYms8UKFRy2w0IUEinQay8BZ6VQ8k,6691
249
+ Cython/Tests/TestJediTyper.py,sha256=hroG-mBTs3HzIXCnZTDJuXDSUbVGrorIQGShONTqpxU,6780
250
+ Cython/Tests/TestShadow.py,sha256=YrB4L2Y6vUgjhJ3TD4OuUjl8FIdP1GUBJVdKDN8tzeA,5106
251
+ Cython/Tests/TestStringIOTree.py,sha256=vTuu3z32WTcmJaf0fBq62NMghYtaPL2rRnfdl2WM--4,1946
252
+ Cython/Tests/TestTestUtils.py,sha256=w4SVcZ8G9Brr_2XGkoQl1EkWR8_sI9LPDAw2cCRQ13U,2901
253
+ Cython/Tests/__init__.py,sha256=jOqtmPLCvMCq0xVMwGekuLpBmVgq0xtPFmUePySdOjs,13
254
+ Cython/Tests/xmlrunner.py,sha256=1X79TBIYWOcZIzoylOSu9zULxVIR4xvq-RZ7f8Fn600,14612
255
+ Cython/Utility/AsyncGen.c,sha256=9HzMg_A4nfK3ssh5y8vnIpn9CfD620nuDMUZgH0vd80,47243
256
+ Cython/Utility/Buffer.c,sha256=r5a3gGSUoG8HiR1z1hB_sf_Is1iQ-_FFDKba1iAg63g,28299
257
+ Cython/Utility/Builtins.c,sha256=kdngjaYureFb6Mo8dmwhLDfVMuC84AyD-_SeU63PPa0,21029
258
+ Cython/Utility/CConvert.pyx,sha256=ihyFxzcoLco0YFscuvJvs1rZsSNRRwNwgq4xO-QB9nU,4461
259
+ Cython/Utility/CMath.c,sha256=GIc7gd2WzaZryDJM3tefqXifLJpUJs6_T_c_mFrr-s8,2566
260
+ Cython/Utility/CommonStructures.c,sha256=yqmkbSaCIhiGVaaPRNReO0uynqmTgdAO58mPpHa29aw,4682
261
+ Cython/Utility/Complex.c,sha256=_joPxelXYRANI0CR4iR9cYQV2QooZNFcfKP0X9sN5qk,14027
262
+ Cython/Utility/Coroutine.c,sha256=fvgTBgNXmJLgovYX5X-jcu46lgnY2vQwrRZohs5v14A,91846
263
+ Cython/Utility/CpdefEnums.pyx,sha256=NZPQXD4v4lhNNLJJyciMg7A-T_czgKXKTQW3IPK20JU,3651
264
+ Cython/Utility/CppConvert.pyx,sha256=pukqrZaFb8F1mfOVuIJpqPEw_hu8Y7qISXc7vjDQZO0,7188
265
+ Cython/Utility/CppSupport.cpp,sha256=B-nq6TcgMFFWfnZL2K7UhE_b0lZyjsuI6c-yQ9tzsv8,4934
266
+ Cython/Utility/CythonFunction.c,sha256=HtR0teMKVcQT8I0ZjXWN1IiV-_vW-jtdGd9SMtAtMOc,65989
267
+ Cython/Utility/Dataclasses.c,sha256=R-M1hs9163jYZBkRlDKVtCF2n6TOI3HmgOUN-lxckBo,7255
268
+ Cython/Utility/Dataclasses.py,sha256=b-VYpKAIz1I5LLO3jQOBV6EzZ6UgCdMDpnIBCsGymmI,4051
269
+ Cython/Utility/Embed.c,sha256=NFI70-JU8I1IEv2iN7fYSMrp29Wc8FgeHXr5KYp_zOA,3462
270
+ Cython/Utility/Exceptions.c,sha256=8oe8mE4ivZtcWlTgJL4CKSJu5GlEe_Cx_I5bPPMoW_M,35644
271
+ Cython/Utility/ExtensionTypes.c,sha256=aAVIzfZq4pcTJ_bnXGP7EEI9qhhmfebc_QUntG_vWaE,30284
272
+ Cython/Utility/FunctionArguments.c,sha256=8gM5jRhWi_YpzUcKgdoPBei3gVNq95jPmDWQK-wZmYE,20256
273
+ Cython/Utility/ImportExport.c,sha256=RheF4APvAhLVBXXyM-leMR6FBIm_nfzps0lmSGmmB98,29695
274
+ Cython/Utility/MemoryView.pyx,sha256=AXWGphS7ZaSHPEdM-cwtxP-QeH6jWy99XdWRR6cEIWU,49458
275
+ Cython/Utility/MemoryView_C.c,sha256=E9vpihfQFm0qytJbifOSGsz4zUOY-CP7aJ39GJMTPjA,31753
276
+ Cython/Utility/ModuleSetupCode.c,sha256=eCbR6bM1Ba86Kf_enYwV4iqGx8FzirnfPldCurVqBno,90884
277
+ Cython/Utility/NumpyImportArray.c,sha256=Gwo493DF8JxUxhTTjJYIdyHHJ9TEwFKqDmKsdk_uPyw,2033
278
+ Cython/Utility/ObjectHandling.c,sha256=wj24la0v3TXc2XVbOL10FOAWWeeXItCl1GBaKoX8UHs,109109
279
+ Cython/Utility/Optimize.c,sha256=KoLArlSMfM5jZwRdjGYyexRcf9ZdHllxAA-WRON44bE,58210
280
+ Cython/Utility/Overflow.c,sha256=1kwFjE2a3mdCG9gAlamP16tBjuNWFhs8s7UyHAQ2JkY,15874
281
+ Cython/Utility/Printing.c,sha256=h3F9eyCXSs284Y8DZRivKtoAOcx5jIYPeNFOSD59foc,2898
282
+ Cython/Utility/Profile.c,sha256=h2nrIEKcRgXBJETQLp1BB3UlPzYL9u0POZkZkXjwDx0,37407
283
+ Cython/Utility/StringTools.c,sha256=Al2tG9uXccMkE0NN8-9WRqbSaGelAU0aThVGY_oNaQI,42871
284
+ Cython/Utility/TestCyUtilityLoader.pyx,sha256=91lWWJub7l_6xNn3ncrvQZZ94RpkQzEx2NtAaFpvrxY,152
285
+ Cython/Utility/TestCythonScope.pyx,sha256=mWowHlHIs22w6xC5KAc8kelf2f2n6bhLapyqgz0JMpc,1999
286
+ Cython/Utility/TestUtilityLoader.c,sha256=dGy6ZWL2kBqtmUY7kF75UEox5kadQZ__BmZKscwg2aY,279
287
+ Cython/Utility/TypeConversion.c,sha256=RdOqWxxuekVgv7eLx601J4sWDpuAgVBRxRIvec6kkMI,50737
288
+ Cython/Utility/UFuncs.pyx,sha256=ZcCCNCMMfrtqsSCwN31jJ4CVOiveDyseDcpJPgAdhPk,2026
289
+ Cython/Utility/UFuncs_C.c,sha256=yf9apP9NQlDlBrljn6YXYpNrwb5ILjxUt96Wzz2a6LM,3203
290
+ Cython/Utility/__init__.py,sha256=QBJ9uZ80GHBZG-TJevWaVWgx6HobLwQkZzWog9U9rb0,1158
291
+ Cython/Utility/arrayarray.h,sha256=2VdxkxIhg3OhfN5MKXGW-DPDoaAi0K-wODzNONX_O2k,3986
292
+ pyximport/__init__.py,sha256=9hOyKolFtOerPiVEyktKrT1VtzbGexq9UmORzo52iHI,79
293
+ pyximport/pyxbuild.py,sha256=AsL1tyLxG61Mj7Ah-DxtDBuaXF94W2Tb6KTos7r0w8I,5702
294
+ pyximport/pyximport.py,sha256=BnXVwq1cwo1EYRjPU0J-RUDcwzGjUlzKWZOOMDNcu-s,18510
295
+ Cython-3.1.0a1.dist-info/COPYING.txt,sha256=4escSahQjoFz2sMBV-SmQ5pErYhGGUdGxCT7w_wrldc,756
296
+ Cython-3.1.0a1.dist-info/LICENSE.txt,sha256=lWiisVXmasPguh_YC1K4J7lGDmz28jMSXny8qOIG3cM,10174
297
+ Cython-3.1.0a1.dist-info/METADATA,sha256=smaRHByznQnwnIh26hBXK3bpXKDCcsQoYkQE5DQs74c,3201
298
+ Cython-3.1.0a1.dist-info/WHEEL,sha256=P9jw-gEje8ByB7_hXoICnHtVCrEwMQh-630tKvQWehc,91
299
+ Cython-3.1.0a1.dist-info/entry_points.txt,sha256=VU8NX8gnQyFbyqiWMzfh9BHvYMuoQRS3Nbm3kKcKQeY,139
300
+ Cython-3.1.0a1.dist-info/top_level.txt,sha256=jLV8tZV98iCbIfiJR4DVzTX5Ru1Y_pYMZ59wkMCe6SY,24
301
+ Cython-3.1.0a1.dist-info/RECORD,,
@@ -0,0 +1,5 @@
1
+ Wheel-Version: 1.0
2
+ Generator: setuptools (75.3.0)
3
+ Root-Is-Purelib: true
4
+ Tag: py3-none-any
5
+
@@ -0,0 +1,4 @@
1
+ [console_scripts]
2
+ cygdb = Cython.Debugger.Cygdb:main
3
+ cython = Cython.Compiler.Main:setuptools_main
4
+ cythonize = Cython.Build.Cythonize:main
@@ -0,0 +1,3 @@
1
+ Cython
2
+ cython
3
+ pyximport
cython.py ADDED
@@ -0,0 +1,29 @@
1
+ #!/usr/bin/env python
2
+
3
+ #
4
+ # Cython -- Main Program, generic
5
+ #
6
+
7
+ try:
8
+ from typing import TYPE_CHECKING
9
+ except ImportError:
10
+ TYPE_CHECKING = False
11
+
12
+ if not TYPE_CHECKING and __name__ == '__main__':
13
+
14
+ import os
15
+ import sys
16
+
17
+ # Make sure we import the right Cython
18
+ cythonpath, _ = os.path.split(os.path.realpath(__file__))
19
+ sys.path.insert(0, cythonpath)
20
+
21
+ from Cython.Compiler.Main import main
22
+ main(command_line = 1)
23
+
24
+ else:
25
+ # Void cython.* directives.
26
+ from Cython.Shadow import *
27
+ ## and bring in the __version__
28
+ from Cython import __version__
29
+ from Cython import load_ipython_extension
pyximport/__init__.py ADDED
@@ -0,0 +1,4 @@
1
+ from .pyximport import *
2
+
3
+ # replicate docstring
4
+ from .pyximport import __doc__