Cython 3.1.0__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 (316) hide show
  1. Cython/Build/BuildExecutable.py +169 -0
  2. Cython/Build/Cache.py +199 -0
  3. Cython/Build/Cythonize.py +323 -0
  4. Cython/Build/Dependencies.py +1306 -0
  5. Cython/Build/Distutils.py +1 -0
  6. Cython/Build/Inline.py +463 -0
  7. Cython/Build/IpythonMagic.py +560 -0
  8. Cython/Build/SharedModule.py +76 -0
  9. Cython/Build/Tests/TestCyCache.py +194 -0
  10. Cython/Build/Tests/TestCythonizeArgsParser.py +481 -0
  11. Cython/Build/Tests/TestDependencies.py +133 -0
  12. Cython/Build/Tests/TestInline.py +177 -0
  13. Cython/Build/Tests/TestIpythonMagic.py +287 -0
  14. Cython/Build/Tests/TestRecythonize.py +212 -0
  15. Cython/Build/Tests/TestStripLiterals.py +155 -0
  16. Cython/Build/Tests/__init__.py +1 -0
  17. Cython/Build/__init__.py +8 -0
  18. Cython/CodeWriter.py +811 -0
  19. Cython/Compiler/AnalysedTreeTransforms.py +97 -0
  20. Cython/Compiler/Annotate.py +326 -0
  21. Cython/Compiler/AutoDocTransforms.py +320 -0
  22. Cython/Compiler/Buffer.py +680 -0
  23. Cython/Compiler/Builtin.py +934 -0
  24. Cython/Compiler/CmdLine.py +259 -0
  25. Cython/Compiler/Code.pxd +148 -0
  26. Cython/Compiler/Code.py +3375 -0
  27. Cython/Compiler/CodeGeneration.py +33 -0
  28. Cython/Compiler/CythonScope.py +187 -0
  29. Cython/Compiler/Dataclass.py +868 -0
  30. Cython/Compiler/DebugFlags.py +24 -0
  31. Cython/Compiler/Errors.py +295 -0
  32. Cython/Compiler/ExprNodes.py +15267 -0
  33. Cython/Compiler/FlowControl.pxd +97 -0
  34. Cython/Compiler/FlowControl.py +1455 -0
  35. Cython/Compiler/FusedNode.py +1002 -0
  36. Cython/Compiler/Future.py +16 -0
  37. Cython/Compiler/Interpreter.py +57 -0
  38. Cython/Compiler/Lexicon.py +340 -0
  39. Cython/Compiler/LineTable.py +114 -0
  40. Cython/Compiler/Main.py +853 -0
  41. Cython/Compiler/MatchCaseNodes.py +259 -0
  42. Cython/Compiler/MemoryView.py +922 -0
  43. Cython/Compiler/ModuleNode.py +4024 -0
  44. Cython/Compiler/Naming.py +374 -0
  45. Cython/Compiler/Nodes.py +10826 -0
  46. Cython/Compiler/Optimize.py +5256 -0
  47. Cython/Compiler/Options.py +835 -0
  48. Cython/Compiler/ParseTreeTransforms.pxd +77 -0
  49. Cython/Compiler/ParseTreeTransforms.py +4509 -0
  50. Cython/Compiler/Parsing.pxd +9 -0
  51. Cython/Compiler/Parsing.py +4789 -0
  52. Cython/Compiler/Pipeline.py +439 -0
  53. Cython/Compiler/PyrexTypes.py +5762 -0
  54. Cython/Compiler/Pythran.py +232 -0
  55. Cython/Compiler/Scanning.pxd +40 -0
  56. Cython/Compiler/Scanning.py +577 -0
  57. Cython/Compiler/StringEncoding.py +347 -0
  58. Cython/Compiler/Symtab.py +3080 -0
  59. Cython/Compiler/Tests/TestBuffer.py +105 -0
  60. Cython/Compiler/Tests/TestBuiltin.py +72 -0
  61. Cython/Compiler/Tests/TestCmdLine.py +586 -0
  62. Cython/Compiler/Tests/TestCode.py +86 -0
  63. Cython/Compiler/Tests/TestFlowControl.py +65 -0
  64. Cython/Compiler/Tests/TestGrammar.py +202 -0
  65. Cython/Compiler/Tests/TestMemView.py +71 -0
  66. Cython/Compiler/Tests/TestParseTreeTransforms.py +285 -0
  67. Cython/Compiler/Tests/TestScanning.py +134 -0
  68. Cython/Compiler/Tests/TestSignatureMatching.py +73 -0
  69. Cython/Compiler/Tests/TestStringEncoding.py +33 -0
  70. Cython/Compiler/Tests/TestTreeFragment.py +63 -0
  71. Cython/Compiler/Tests/TestTreePath.py +103 -0
  72. Cython/Compiler/Tests/TestTypes.py +75 -0
  73. Cython/Compiler/Tests/TestUtilityLoad.py +112 -0
  74. Cython/Compiler/Tests/TestVisitor.py +61 -0
  75. Cython/Compiler/Tests/Utils.py +36 -0
  76. Cython/Compiler/Tests/__init__.py +1 -0
  77. Cython/Compiler/TreeFragment.py +278 -0
  78. Cython/Compiler/TreePath.py +303 -0
  79. Cython/Compiler/TypeInference.py +584 -0
  80. Cython/Compiler/TypeSlots.py +1181 -0
  81. Cython/Compiler/UFuncs.py +311 -0
  82. Cython/Compiler/UtilNodes.py +389 -0
  83. Cython/Compiler/UtilityCode.py +344 -0
  84. Cython/Compiler/Version.py +8 -0
  85. Cython/Compiler/Visitor.pxd +53 -0
  86. Cython/Compiler/Visitor.py +861 -0
  87. Cython/Compiler/__init__.py +1 -0
  88. Cython/Coverage.py +448 -0
  89. Cython/Debugger/Cygdb.py +175 -0
  90. Cython/Debugger/DebugWriter.py +82 -0
  91. Cython/Debugger/Tests/TestLibCython.py +275 -0
  92. Cython/Debugger/Tests/__init__.py +1 -0
  93. Cython/Debugger/Tests/cfuncs.c +8 -0
  94. Cython/Debugger/Tests/codefile +49 -0
  95. Cython/Debugger/Tests/test_libcython_in_gdb.py +578 -0
  96. Cython/Debugger/Tests/test_libpython_in_gdb.py +90 -0
  97. Cython/Debugger/__init__.py +1 -0
  98. Cython/Debugger/libcython.py +1548 -0
  99. Cython/Debugger/libpython.py +2821 -0
  100. Cython/Debugging.py +20 -0
  101. Cython/Distutils/__init__.py +2 -0
  102. Cython/Distutils/build_ext.py +139 -0
  103. Cython/Distutils/extension.py +96 -0
  104. Cython/Distutils/old_build_ext.py +351 -0
  105. Cython/Includes/cpython/__init__.pxd +173 -0
  106. Cython/Includes/cpython/array.pxd +174 -0
  107. Cython/Includes/cpython/bool.pxd +37 -0
  108. Cython/Includes/cpython/buffer.pxd +112 -0
  109. Cython/Includes/cpython/bytearray.pxd +33 -0
  110. Cython/Includes/cpython/bytes.pxd +200 -0
  111. Cython/Includes/cpython/cellobject.pxd +35 -0
  112. Cython/Includes/cpython/ceval.pxd +8 -0
  113. Cython/Includes/cpython/codecs.pxd +121 -0
  114. Cython/Includes/cpython/complex.pxd +60 -0
  115. Cython/Includes/cpython/contextvars.pxd +145 -0
  116. Cython/Includes/cpython/conversion.pxd +36 -0
  117. Cython/Includes/cpython/datetime.pxd +395 -0
  118. Cython/Includes/cpython/descr.pxd +26 -0
  119. Cython/Includes/cpython/dict.pxd +187 -0
  120. Cython/Includes/cpython/exc.pxd +263 -0
  121. Cython/Includes/cpython/fileobject.pxd +57 -0
  122. Cython/Includes/cpython/float.pxd +47 -0
  123. Cython/Includes/cpython/function.pxd +65 -0
  124. Cython/Includes/cpython/genobject.pxd +25 -0
  125. Cython/Includes/cpython/getargs.pxd +12 -0
  126. Cython/Includes/cpython/instance.pxd +25 -0
  127. Cython/Includes/cpython/iterator.pxd +36 -0
  128. Cython/Includes/cpython/iterobject.pxd +24 -0
  129. Cython/Includes/cpython/list.pxd +92 -0
  130. Cython/Includes/cpython/long.pxd +149 -0
  131. Cython/Includes/cpython/longintrepr.pxd +14 -0
  132. Cython/Includes/cpython/mapping.pxd +63 -0
  133. Cython/Includes/cpython/marshal.pxd +66 -0
  134. Cython/Includes/cpython/mem.pxd +120 -0
  135. Cython/Includes/cpython/memoryview.pxd +50 -0
  136. Cython/Includes/cpython/method.pxd +49 -0
  137. Cython/Includes/cpython/module.pxd +208 -0
  138. Cython/Includes/cpython/number.pxd +258 -0
  139. Cython/Includes/cpython/object.pxd +433 -0
  140. Cython/Includes/cpython/pycapsule.pxd +143 -0
  141. Cython/Includes/cpython/pylifecycle.pxd +68 -0
  142. Cython/Includes/cpython/pyport.pxd +8 -0
  143. Cython/Includes/cpython/pystate.pxd +95 -0
  144. Cython/Includes/cpython/pythread.pxd +53 -0
  145. Cython/Includes/cpython/ref.pxd +67 -0
  146. Cython/Includes/cpython/sequence.pxd +134 -0
  147. Cython/Includes/cpython/set.pxd +119 -0
  148. Cython/Includes/cpython/slice.pxd +70 -0
  149. Cython/Includes/cpython/time.pxd +129 -0
  150. Cython/Includes/cpython/tuple.pxd +72 -0
  151. Cython/Includes/cpython/type.pxd +53 -0
  152. Cython/Includes/cpython/unicode.pxd +639 -0
  153. Cython/Includes/cpython/version.pxd +32 -0
  154. Cython/Includes/cpython/weakref.pxd +78 -0
  155. Cython/Includes/libc/__init__.pxd +1 -0
  156. Cython/Includes/libc/complex.pxd +35 -0
  157. Cython/Includes/libc/errno.pxd +127 -0
  158. Cython/Includes/libc/float.pxd +43 -0
  159. Cython/Includes/libc/limits.pxd +28 -0
  160. Cython/Includes/libc/locale.pxd +46 -0
  161. Cython/Includes/libc/math.pxd +209 -0
  162. Cython/Includes/libc/setjmp.pxd +10 -0
  163. Cython/Includes/libc/signal.pxd +64 -0
  164. Cython/Includes/libc/stddef.pxd +9 -0
  165. Cython/Includes/libc/stdint.pxd +105 -0
  166. Cython/Includes/libc/stdio.pxd +80 -0
  167. Cython/Includes/libc/stdlib.pxd +72 -0
  168. Cython/Includes/libc/string.pxd +50 -0
  169. Cython/Includes/libc/threads.pxd +84 -0
  170. Cython/Includes/libc/time.pxd +51 -0
  171. Cython/Includes/libcpp/__init__.pxd +4 -0
  172. Cython/Includes/libcpp/algorithm.pxd +320 -0
  173. Cython/Includes/libcpp/any.pxd +16 -0
  174. Cython/Includes/libcpp/atomic.pxd +59 -0
  175. Cython/Includes/libcpp/barrier.pxd +22 -0
  176. Cython/Includes/libcpp/bit.pxd +29 -0
  177. Cython/Includes/libcpp/cast.pxd +12 -0
  178. Cython/Includes/libcpp/cmath.pxd +518 -0
  179. Cython/Includes/libcpp/complex.pxd +106 -0
  180. Cython/Includes/libcpp/deque.pxd +165 -0
  181. Cython/Includes/libcpp/exception.pxd +86 -0
  182. Cython/Includes/libcpp/execution.pxd +15 -0
  183. Cython/Includes/libcpp/forward_list.pxd +63 -0
  184. Cython/Includes/libcpp/functional.pxd +26 -0
  185. Cython/Includes/libcpp/future.pxd +103 -0
  186. Cython/Includes/libcpp/iterator.pxd +34 -0
  187. Cython/Includes/libcpp/latch.pxd +17 -0
  188. Cython/Includes/libcpp/limits.pxd +61 -0
  189. Cython/Includes/libcpp/list.pxd +117 -0
  190. Cython/Includes/libcpp/map.pxd +252 -0
  191. Cython/Includes/libcpp/memory.pxd +115 -0
  192. Cython/Includes/libcpp/mutex.pxd +130 -0
  193. Cython/Includes/libcpp/numbers.pxd +15 -0
  194. Cython/Includes/libcpp/numeric.pxd +131 -0
  195. Cython/Includes/libcpp/optional.pxd +34 -0
  196. Cython/Includes/libcpp/pair.pxd +1 -0
  197. Cython/Includes/libcpp/queue.pxd +25 -0
  198. Cython/Includes/libcpp/random.pxd +166 -0
  199. Cython/Includes/libcpp/semaphore.pxd +44 -0
  200. Cython/Includes/libcpp/set.pxd +228 -0
  201. Cython/Includes/libcpp/shared_mutex.pxd +72 -0
  202. Cython/Includes/libcpp/span.pxd +87 -0
  203. Cython/Includes/libcpp/stack.pxd +11 -0
  204. Cython/Includes/libcpp/stop_token.pxd +105 -0
  205. Cython/Includes/libcpp/string.pxd +355 -0
  206. Cython/Includes/libcpp/string_view.pxd +181 -0
  207. Cython/Includes/libcpp/typeindex.pxd +15 -0
  208. Cython/Includes/libcpp/typeinfo.pxd +10 -0
  209. Cython/Includes/libcpp/unordered_map.pxd +193 -0
  210. Cython/Includes/libcpp/unordered_set.pxd +152 -0
  211. Cython/Includes/libcpp/utility.pxd +30 -0
  212. Cython/Includes/libcpp/vector.pxd +186 -0
  213. Cython/Includes/openmp.pxd +50 -0
  214. Cython/Includes/posix/__init__.pxd +1 -0
  215. Cython/Includes/posix/dlfcn.pxd +14 -0
  216. Cython/Includes/posix/fcntl.pxd +86 -0
  217. Cython/Includes/posix/ioctl.pxd +4 -0
  218. Cython/Includes/posix/mman.pxd +101 -0
  219. Cython/Includes/posix/resource.pxd +57 -0
  220. Cython/Includes/posix/select.pxd +21 -0
  221. Cython/Includes/posix/signal.pxd +73 -0
  222. Cython/Includes/posix/stat.pxd +98 -0
  223. Cython/Includes/posix/stdio.pxd +37 -0
  224. Cython/Includes/posix/stdlib.pxd +29 -0
  225. Cython/Includes/posix/strings.pxd +9 -0
  226. Cython/Includes/posix/time.pxd +71 -0
  227. Cython/Includes/posix/types.pxd +30 -0
  228. Cython/Includes/posix/uio.pxd +26 -0
  229. Cython/Includes/posix/unistd.pxd +271 -0
  230. Cython/Includes/posix/wait.pxd +38 -0
  231. Cython/Plex/Actions.pxd +24 -0
  232. Cython/Plex/Actions.py +119 -0
  233. Cython/Plex/DFA.pxd +14 -0
  234. Cython/Plex/DFA.py +164 -0
  235. Cython/Plex/Errors.py +48 -0
  236. Cython/Plex/Lexicons.py +178 -0
  237. Cython/Plex/Machines.pxd +36 -0
  238. Cython/Plex/Machines.py +238 -0
  239. Cython/Plex/Regexps.py +539 -0
  240. Cython/Plex/Scanners.pxd +47 -0
  241. Cython/Plex/Scanners.py +360 -0
  242. Cython/Plex/Transitions.pxd +14 -0
  243. Cython/Plex/Transitions.py +239 -0
  244. Cython/Plex/__init__.py +34 -0
  245. Cython/Runtime/__init__.py +1 -0
  246. Cython/Runtime/refnanny.pyx +237 -0
  247. Cython/Shadow.py +690 -0
  248. Cython/Shadow.pyi +521 -0
  249. Cython/StringIOTree.py +170 -0
  250. Cython/Tempita/__init__.py +4 -0
  251. Cython/Tempita/_looper.py +154 -0
  252. Cython/Tempita/_tempita.py +1091 -0
  253. Cython/TestUtils.py +410 -0
  254. Cython/Tests/TestCodeWriter.py +128 -0
  255. Cython/Tests/TestCythonUtils.py +202 -0
  256. Cython/Tests/TestJediTyper.py +223 -0
  257. Cython/Tests/TestShadow.py +114 -0
  258. Cython/Tests/TestStringIOTree.py +67 -0
  259. Cython/Tests/TestTestUtils.py +90 -0
  260. Cython/Tests/__init__.py +1 -0
  261. Cython/Tests/xmlrunner.py +390 -0
  262. Cython/Utility/AsyncGen.c +1002 -0
  263. Cython/Utility/Buffer.c +875 -0
  264. Cython/Utility/BufferFormatFromTypeInfo.pxd +2 -0
  265. Cython/Utility/Builtins.c +776 -0
  266. Cython/Utility/CConvert.pyx +134 -0
  267. Cython/Utility/CMath.c +104 -0
  268. Cython/Utility/CommonStructures.c +118 -0
  269. Cython/Utility/Complex.c +378 -0
  270. Cython/Utility/Coroutine.c +2206 -0
  271. Cython/Utility/CpdefEnums.pyx +103 -0
  272. Cython/Utility/CppConvert.pyx +279 -0
  273. Cython/Utility/CppSupport.cpp +143 -0
  274. Cython/Utility/CythonFunction.c +1794 -0
  275. Cython/Utility/Dataclasses.c +185 -0
  276. Cython/Utility/Dataclasses.py +112 -0
  277. Cython/Utility/Embed.c +125 -0
  278. Cython/Utility/Exceptions.c +1012 -0
  279. Cython/Utility/ExtensionTypes.c +809 -0
  280. Cython/Utility/FunctionArguments.c +965 -0
  281. Cython/Utility/ImportExport.c +987 -0
  282. Cython/Utility/Lock.c +136 -0
  283. Cython/Utility/MemoryView.pxd +187 -0
  284. Cython/Utility/MemoryView.pyx +1481 -0
  285. Cython/Utility/MemoryView_C.c +1046 -0
  286. Cython/Utility/ModuleSetupCode.c +3059 -0
  287. Cython/Utility/NumpyImportArray.c +46 -0
  288. Cython/Utility/ObjectHandling.c +3342 -0
  289. Cython/Utility/Optimize.c +1589 -0
  290. Cython/Utility/Overflow.c +404 -0
  291. Cython/Utility/Printing.c +86 -0
  292. Cython/Utility/Profile.c +709 -0
  293. Cython/Utility/StringTools.c +1259 -0
  294. Cython/Utility/TestCyUtilityLoader.pyx +8 -0
  295. Cython/Utility/TestCythonScope.pyx +75 -0
  296. Cython/Utility/TestUtilityLoader.c +12 -0
  297. Cython/Utility/TypeConversion.c +1284 -0
  298. Cython/Utility/UFuncs.pyx +50 -0
  299. Cython/Utility/UFuncs_C.c +89 -0
  300. Cython/Utility/__init__.py +28 -0
  301. Cython/Utility/arrayarray.h +148 -0
  302. Cython/Utils.py +687 -0
  303. Cython/__init__.py +10 -0
  304. Cython/__init__.pyi +7 -0
  305. Cython/py.typed +0 -0
  306. cython-3.1.0.dist-info/COPYING.txt +19 -0
  307. cython-3.1.0.dist-info/LICENSE.txt +176 -0
  308. cython-3.1.0.dist-info/METADATA +636 -0
  309. cython-3.1.0.dist-info/RECORD +316 -0
  310. cython-3.1.0.dist-info/WHEEL +5 -0
  311. cython-3.1.0.dist-info/entry_points.txt +4 -0
  312. cython-3.1.0.dist-info/top_level.txt +3 -0
  313. cython.py +29 -0
  314. pyximport/__init__.py +4 -0
  315. pyximport/pyxbuild.py +160 -0
  316. pyximport/pyximport.py +482 -0
Cython/Utils.py ADDED
@@ -0,0 +1,687 @@
1
+ """
2
+ Cython -- Things that don't belong anywhere else in particular
3
+ """
4
+
5
+
6
+ import cython
7
+
8
+ cython.declare(
9
+ os=object, sys=object, re=object, io=object, glob=object, shutil=object, tempfile=object,
10
+ update_wrapper=object, partial=object, wraps=object, cython_version=object,
11
+ _cache_function=object, _function_caches=list, _parse_file_version=object, _match_file_encoding=object,
12
+ )
13
+
14
+ import os
15
+ import sys
16
+ import re
17
+ import io
18
+ import glob
19
+ import shutil
20
+ import tempfile
21
+
22
+
23
+
24
+ if sys.version_info < (3, 9):
25
+ # Work around a limited API bug in these Python versions
26
+ # where it isn't possible to make __module__ of CyFunction
27
+ # writeable. This means that wraps fails when applied to
28
+ # cyfunctions.
29
+ # The objective here is just to make limited API builds
30
+ # testable.
31
+
32
+ from functools import update_wrapper, partial
33
+
34
+ def _update_wrapper(wrapper, wrapped):
35
+ try:
36
+ return update_wrapper(wrapper, wrapped)
37
+ except AttributeError:
38
+ return wrapper # worse, but it still works
39
+
40
+ def wraps(wrapped):
41
+ return partial(_update_wrapper, wrapped=wrapped)
42
+ else:
43
+ from functools import wraps
44
+
45
+
46
+ from . import __version__ as cython_version
47
+
48
+ PACKAGE_FILES = ("__init__.py", "__init__.pyc", "__init__.pyx", "__init__.pxd")
49
+
50
+ _build_cache_name = "__{}_cache".format
51
+ _CACHE_NAME_PATTERN = re.compile(r"^__(.+)_cache$")
52
+
53
+ modification_time = os.path.getmtime
54
+
55
+ GENERATED_BY_MARKER = "/* Generated by Cython %s */" % cython_version
56
+ GENERATED_BY_MARKER_BYTES = GENERATED_BY_MARKER.encode('us-ascii')
57
+
58
+
59
+ class _TryFinallyGeneratorContextManager:
60
+ """
61
+ Fast, bare minimum @contextmanager, only for try-finally, not for exception handling.
62
+ """
63
+ def __init__(self, gen):
64
+ self._gen = gen
65
+
66
+ def __enter__(self):
67
+ return next(self._gen)
68
+
69
+ def __exit__(self, exc_type, exc_val, exc_tb):
70
+ try:
71
+ next(self._gen)
72
+ except (StopIteration, GeneratorExit):
73
+ pass
74
+
75
+
76
+ def try_finally_contextmanager(gen_func):
77
+ @wraps(gen_func)
78
+ def make_gen(*args, **kwargs):
79
+ return _TryFinallyGeneratorContextManager(gen_func(*args, **kwargs))
80
+ return make_gen
81
+
82
+
83
+ try:
84
+ from functools import cache as _cache_function
85
+ except ImportError:
86
+ from functools import lru_cache
87
+ _cache_function = lru_cache(maxsize=None)
88
+
89
+
90
+ _function_caches = []
91
+
92
+
93
+ def clear_function_caches():
94
+ for cache in _function_caches:
95
+ cache.cache_clear()
96
+
97
+
98
+ def cached_function(f):
99
+ cf = _cache_function(f)
100
+ _function_caches.append(cf)
101
+ cf.uncached = f # needed by coverage plugin
102
+ return cf
103
+
104
+
105
+
106
+ def _find_cache_attributes(obj):
107
+ """The function iterates over the attributes of the object and,
108
+ if it finds the name of the cache, it returns it and the corresponding method name.
109
+ The method may not be present in the object.
110
+ """
111
+ for attr_name in dir(obj):
112
+ match = _CACHE_NAME_PATTERN.match(attr_name)
113
+ if match is not None:
114
+ yield attr_name, match.group(1)
115
+
116
+
117
+ def clear_method_caches(obj):
118
+ """Removes every cache found in the object,
119
+ if a corresponding method exists for that cache.
120
+ """
121
+ for cache_name, method_name in _find_cache_attributes(obj):
122
+ if hasattr(obj, method_name):
123
+ delattr(obj, cache_name)
124
+ # if there is no corresponding method, then we assume
125
+ # that this attribute was not created by our cached method
126
+
127
+
128
+ def cached_method(f):
129
+ cache_name = _build_cache_name(f.__name__)
130
+
131
+ def wrapper(self, *args):
132
+ cache = getattr(self, cache_name, None)
133
+ if cache is None:
134
+ cache = {}
135
+ setattr(self, cache_name, cache)
136
+ if args in cache:
137
+ return cache[args]
138
+ res = cache[args] = f(self, *args)
139
+ return res
140
+
141
+ return wrapper
142
+
143
+
144
+ def replace_suffix(path, newsuf):
145
+ base, _ = os.path.splitext(path)
146
+ return base + newsuf
147
+
148
+
149
+ def open_new_file(path):
150
+ if os.path.exists(path):
151
+ # Make sure to create a new file here so we can
152
+ # safely hard link the output files.
153
+ os.unlink(path)
154
+
155
+ # We only write pure ASCII code strings, but need to write file paths in position comments.
156
+ # Those are encoded in UTF-8 so that tools can parse them out again.
157
+ return open(path, "w", encoding="UTF-8")
158
+
159
+
160
+ def castrate_file(path, st):
161
+ # Remove junk contents from an output file after a
162
+ # failed compilation.
163
+ # Also sets access and modification times back to
164
+ # those specified by st (a stat struct).
165
+ if not is_cython_generated_file(path, allow_failed=True, if_not_found=False):
166
+ return
167
+
168
+ try:
169
+ f = open_new_file(path)
170
+ except OSError:
171
+ pass
172
+ else:
173
+ f.write(
174
+ "#error Do not use this file, it is the result of a failed Cython compilation.\n")
175
+ f.close()
176
+ if st:
177
+ os.utime(path, (st.st_atime, st.st_mtime-1))
178
+
179
+
180
+ def is_cython_generated_file(path, allow_failed=False, if_not_found=True):
181
+ failure_marker = b"#error Do not use this file, it is the result of a failed Cython compilation."
182
+ file_content = None
183
+ if os.path.exists(path):
184
+ try:
185
+ with open(path, "rb") as f:
186
+ file_content = f.read(len(failure_marker))
187
+ except OSError:
188
+ pass # Probably just doesn't exist any more
189
+
190
+ if file_content is None:
191
+ # file does not exist (yet)
192
+ return if_not_found
193
+
194
+ return (
195
+ # Cython C file?
196
+ file_content.startswith(b"/* Generated by Cython ") or
197
+ # Cython output file after previous failures?
198
+ (allow_failed and file_content == failure_marker) or
199
+ # Let's allow overwriting empty files as well. They might have resulted from previous failures.
200
+ not file_content
201
+ )
202
+
203
+
204
+ def file_generated_by_this_cython(path):
205
+ file_content = b''
206
+ if os.path.exists(path):
207
+ try:
208
+ with open(path, "rb") as f:
209
+ file_content = f.read(len(GENERATED_BY_MARKER_BYTES))
210
+ except OSError:
211
+ pass # Probably just doesn't exist any more
212
+ return file_content and file_content.startswith(GENERATED_BY_MARKER_BYTES)
213
+
214
+
215
+ def file_newer_than(path, time):
216
+ ftime = modification_time(path)
217
+ return ftime > time
218
+
219
+
220
+ def safe_makedirs(path):
221
+ try:
222
+ os.makedirs(path)
223
+ except OSError:
224
+ if not os.path.isdir(path):
225
+ raise
226
+
227
+
228
+ def copy_file_to_dir_if_newer(sourcefile, destdir):
229
+ """
230
+ Copy file sourcefile to directory destdir (creating it if needed),
231
+ preserving metadata. If the destination file exists and is not
232
+ older than the source file, the copying is skipped.
233
+ """
234
+ destfile = os.path.join(destdir, os.path.basename(sourcefile))
235
+ try:
236
+ desttime = modification_time(destfile)
237
+ except OSError:
238
+ # New file does not exist, destdir may or may not exist
239
+ safe_makedirs(destdir)
240
+ else:
241
+ # New file already exists
242
+ if not file_newer_than(sourcefile, desttime):
243
+ return
244
+ shutil.copy2(sourcefile, destfile)
245
+
246
+
247
+ @cached_function
248
+ def find_root_package_dir(file_path):
249
+ dir = os.path.dirname(file_path)
250
+ if file_path == dir:
251
+ return dir
252
+ elif is_package_dir(dir):
253
+ return find_root_package_dir(dir)
254
+ else:
255
+ return dir
256
+
257
+
258
+ @cached_function
259
+ def check_package_dir(dir_path, package_names):
260
+ namespace = True
261
+ for dirname in package_names:
262
+ dir_path = os.path.join(dir_path, dirname)
263
+ has_init = contains_init(dir_path)
264
+ if has_init:
265
+ namespace = False
266
+ return dir_path, namespace
267
+
268
+
269
+ @cached_function
270
+ def contains_init(dir_path):
271
+ for filename in PACKAGE_FILES:
272
+ path = os.path.join(dir_path, filename)
273
+ if path_exists(path):
274
+ return 1
275
+
276
+
277
+ def is_package_dir(dir_path):
278
+ if contains_init(dir_path):
279
+ return 1
280
+
281
+
282
+ @cached_function
283
+ def path_exists(path):
284
+ # try on the filesystem first
285
+ if os.path.exists(path):
286
+ return True
287
+ # figure out if a PEP 302 loader is around
288
+ try:
289
+ loader = __loader__
290
+ # XXX the code below assumes a 'zipimport.zipimporter' instance
291
+ # XXX should be easy to generalize, but too lazy right now to write it
292
+ archive_path = getattr(loader, 'archive', None)
293
+ if archive_path:
294
+ normpath = os.path.normpath(path)
295
+ if normpath.startswith(archive_path):
296
+ arcname = normpath[len(archive_path)+1:]
297
+ try:
298
+ loader.get_data(arcname)
299
+ return True
300
+ except OSError:
301
+ return False
302
+ except NameError:
303
+ pass
304
+ return False
305
+
306
+
307
+ _parse_file_version = re.compile(r".*[.]cython-([0-9]+)[.][^./\\]+$").findall
308
+
309
+
310
+ @cached_function
311
+ def find_versioned_file(directory, filename, suffix,
312
+ _current_version=int(re.sub(r"^([0-9]+)[.]([0-9]+).*", r"\1\2", cython_version))):
313
+ """
314
+ Search a directory for versioned pxd files, e.g. "lib.cython-30.pxd" for a Cython 3.0+ version.
315
+
316
+ @param directory: the directory to search
317
+ @param filename: the filename without suffix
318
+ @param suffix: the filename extension including the dot, e.g. ".pxd"
319
+ @return: the file path if found, or None
320
+ """
321
+ assert not suffix or suffix[:1] == '.'
322
+ path_prefix = os.path.join(directory, filename)
323
+
324
+ matching_files = glob.glob(glob.escape(path_prefix) + ".cython-*" + suffix)
325
+ path = path_prefix + suffix
326
+ if not os.path.exists(path):
327
+ path = None
328
+ best_match = (-1, path) # last resort, if we do not have versioned .pxd files
329
+
330
+ for path in matching_files:
331
+ versions = _parse_file_version(path)
332
+ if versions:
333
+ int_version = int(versions[0])
334
+ # Let's assume no duplicates.
335
+ if best_match[0] < int_version <= _current_version:
336
+ best_match = (int_version, path)
337
+ return best_match[1]
338
+
339
+
340
+ # file name encodings
341
+
342
+ def decode_filename(filename):
343
+ if isinstance(filename, bytes):
344
+ try:
345
+ filename_encoding = sys.getfilesystemencoding()
346
+ if filename_encoding is None:
347
+ filename_encoding = sys.getdefaultencoding()
348
+ filename = filename.decode(filename_encoding)
349
+ except UnicodeDecodeError:
350
+ pass
351
+ return filename
352
+
353
+
354
+ # support for source file encoding detection
355
+
356
+ _match_file_encoding = re.compile(br"(\w*coding)[:=]\s*([-\w.]+)").search
357
+
358
+
359
+ def detect_opened_file_encoding(f, default='UTF-8'):
360
+ # PEPs 263 and 3120
361
+ # Most of the time the first two lines fall in the first couple of hundred chars,
362
+ # and this bulk read/split is much faster.
363
+ lines = ()
364
+ start = b''
365
+ while len(lines) < 3:
366
+ data = f.read(500)
367
+ start += data
368
+ lines = start.split(b"\n")
369
+ if not data:
370
+ break
371
+
372
+ m = _match_file_encoding(lines[0])
373
+ if m and m.group(1) != b'c_string_encoding':
374
+ return m.group(2).decode('iso8859-1')
375
+ elif len(lines) > 1:
376
+ m = _match_file_encoding(lines[1])
377
+ if m:
378
+ return m.group(2).decode('iso8859-1')
379
+ return default
380
+
381
+
382
+ def skip_bom(f):
383
+ """
384
+ Read past a BOM at the beginning of a source file.
385
+ This could be added to the scanner, but it's *substantially* easier
386
+ to keep it at this level.
387
+ """
388
+ if f.read(1) != '\uFEFF':
389
+ f.seek(0)
390
+
391
+
392
+ def open_source_file(source_filename, encoding=None, error_handling=None):
393
+ stream = None
394
+ try:
395
+ if encoding is None:
396
+ # Most of the time the encoding is not specified, so try hard to open the file only once.
397
+ f = open(source_filename, 'rb')
398
+ encoding = detect_opened_file_encoding(f)
399
+ f.seek(0)
400
+ stream = io.TextIOWrapper(f, encoding=encoding, errors=error_handling)
401
+ else:
402
+ stream = open(source_filename, encoding=encoding, errors=error_handling)
403
+
404
+ except OSError:
405
+ if os.path.exists(source_filename):
406
+ raise # File is there, but something went wrong reading from it.
407
+ # Allow source files to be in zip files etc.
408
+ try:
409
+ loader = __loader__
410
+ if source_filename.startswith(loader.archive):
411
+ stream = open_source_from_loader(
412
+ loader, source_filename,
413
+ encoding, error_handling)
414
+ except (NameError, AttributeError):
415
+ pass
416
+
417
+ if stream is None:
418
+ raise FileNotFoundError(source_filename)
419
+ skip_bom(stream)
420
+ return stream
421
+
422
+
423
+ def open_source_from_loader(loader,
424
+ source_filename,
425
+ encoding=None, error_handling=None):
426
+ nrmpath = os.path.normpath(source_filename)
427
+ arcname = nrmpath[len(loader.archive)+1:]
428
+ data = loader.get_data(arcname)
429
+ return io.TextIOWrapper(io.BytesIO(data),
430
+ encoding=encoding,
431
+ errors=error_handling)
432
+
433
+
434
+ def str_to_number(value):
435
+ # note: this expects a string as input that was accepted by the
436
+ # parser already, with an optional "-" sign in front
437
+ is_neg = False
438
+ if value[:1] == '-':
439
+ is_neg = True
440
+ value = value[1:]
441
+ if len(value) < 2:
442
+ value = int(value, 0)
443
+ elif value[0] == '0':
444
+ literal_type = value[1] # 0'o' - 0'b' - 0'x'
445
+ if literal_type in 'xX':
446
+ # hex notation ('0x1AF')
447
+ value = strip_py2_long_suffix(value)
448
+ value = int(value[2:], 16)
449
+ elif literal_type in 'oO':
450
+ # Py3 octal notation ('0o136')
451
+ value = int(value[2:], 8)
452
+ elif literal_type in 'bB':
453
+ # Py3 binary notation ('0b101')
454
+ value = int(value[2:], 2)
455
+ else:
456
+ # Py2 octal notation ('0136')
457
+ value = int(value, 8)
458
+ else:
459
+ value = int(value, 0)
460
+ return -value if is_neg else value
461
+
462
+
463
+ def strip_py2_long_suffix(value_str):
464
+ """
465
+ Python 2 likes to append 'L' to stringified numbers
466
+ which in then can't process when converting them to numbers.
467
+ """
468
+ if value_str[-1] in 'lL':
469
+ return value_str[:-1]
470
+ return value_str
471
+
472
+
473
+ def long_literal(value):
474
+ if isinstance(value, str):
475
+ value = str_to_number(value)
476
+ return not -2**31 <= value < 2**31
477
+
478
+
479
+ @try_finally_contextmanager
480
+ def captured_fd(stream=2, encoding=None):
481
+ orig_stream = os.dup(stream) # keep copy of original stream
482
+ try:
483
+ with tempfile.TemporaryFile(mode="a+b") as temp_file:
484
+ def read_output(_output=[b'']):
485
+ if not temp_file.closed:
486
+ temp_file.seek(0)
487
+ _output[0] = temp_file.read()
488
+ return _output[0]
489
+
490
+ os.dup2(temp_file.fileno(), stream) # replace stream by copy of pipe
491
+ def get_output():
492
+ result = read_output()
493
+ return result.decode(encoding) if encoding else result
494
+
495
+ yield get_output
496
+ # note: @contextlib.contextmanager requires try-finally here
497
+ os.dup2(orig_stream, stream) # restore original stream
498
+ read_output() # keep the output in case it's used after closing the context manager
499
+ finally:
500
+ os.close(orig_stream)
501
+
502
+
503
+ def get_encoding_candidates():
504
+ candidates = [sys.getdefaultencoding()]
505
+ for stream in (sys.stdout, sys.stdin, sys.__stdout__, sys.__stdin__):
506
+ encoding = getattr(stream, 'encoding', None)
507
+ # encoding might be None (e.g. somebody redirects stdout):
508
+ if encoding is not None and encoding not in candidates:
509
+ candidates.append(encoding)
510
+ return candidates
511
+
512
+
513
+ def prepare_captured(captured):
514
+ captured_bytes = captured.strip()
515
+ if not captured_bytes:
516
+ return None
517
+ for encoding in get_encoding_candidates():
518
+ try:
519
+ return captured_bytes.decode(encoding)
520
+ except UnicodeDecodeError:
521
+ pass
522
+ # last resort: print at least the readable ascii parts correctly.
523
+ return captured_bytes.decode('latin-1')
524
+
525
+
526
+ def print_captured(captured, output, header_line=None):
527
+ captured = prepare_captured(captured)
528
+ if captured:
529
+ if header_line:
530
+ output.write(header_line)
531
+ output.write(captured)
532
+
533
+
534
+ def print_bytes(s, header_text=None, end=b'\n', file=sys.stdout, flush=True):
535
+ if header_text:
536
+ file.write(header_text) # note: text! => file.write() instead of out.write()
537
+ file.flush()
538
+ out = file.buffer
539
+ out.write(s)
540
+ if end:
541
+ out.write(end)
542
+ if flush:
543
+ out.flush()
544
+
545
+
546
+ class OrderedSet:
547
+ def __init__(self, elements=()):
548
+ self._list = []
549
+ self._set = set()
550
+ self.update(elements)
551
+
552
+ def __iter__(self):
553
+ return iter(self._list)
554
+
555
+ def update(self, elements):
556
+ for e in elements:
557
+ self.add(e)
558
+
559
+ def add(self, e):
560
+ if e not in self._set:
561
+ self._list.append(e)
562
+ self._set.add(e)
563
+
564
+ def __bool__(self):
565
+ return bool(self._set)
566
+
567
+ __nonzero__ = __bool__
568
+
569
+
570
+ # Class decorator that adds a metaclass and recreates the class with it.
571
+ # Copied from 'six'.
572
+ def add_metaclass(metaclass):
573
+ """Class decorator for creating a class with a metaclass."""
574
+ def wrapper(cls):
575
+ orig_vars = cls.__dict__.copy()
576
+ slots = orig_vars.get('__slots__')
577
+ if slots is not None:
578
+ if isinstance(slots, str):
579
+ slots = [slots]
580
+ for slots_var in slots:
581
+ orig_vars.pop(slots_var)
582
+ orig_vars.pop('__dict__', None)
583
+ orig_vars.pop('__weakref__', None)
584
+ return metaclass(cls.__name__, cls.__bases__, orig_vars)
585
+ return wrapper
586
+
587
+
588
+ def raise_error_if_module_name_forbidden(full_module_name):
589
+ # it is bad idea to call the pyx-file cython.pyx, so fail early
590
+ if full_module_name == 'cython' or full_module_name.startswith('cython.'):
591
+ raise ValueError('cython is a special module, cannot be used as a module name')
592
+
593
+
594
+ def build_hex_version(version_string):
595
+ """
596
+ Parse and translate public version identifier like '4.3a1' into the readable hex representation '0x040300A1' (like PY_VERSION_HEX).
597
+
598
+ SEE: https://peps.python.org/pep-0440/#public-version-identifiers
599
+ """
600
+ # Parse '4.12a1' into [4, 12, 0, 0xA01]
601
+ # And ignore .dev, .pre and .post segments
602
+ digits = []
603
+ release_status = 0xF0
604
+ for segment in re.split(r'(\D+)', version_string):
605
+ if segment in ('a', 'b', 'rc'):
606
+ release_status = {'a': 0xA0, 'b': 0xB0, 'rc': 0xC0}[segment]
607
+ digits = (digits + [0, 0])[:3] # 1.2a1 -> 1.2.0a1
608
+ elif segment in ('.dev', '.pre', '.post'):
609
+ break # break since those are the last segments
610
+ elif segment != '.':
611
+ digits.append(int(segment))
612
+
613
+ digits = (digits + [0] * 3)[:4]
614
+ digits[3] += release_status
615
+
616
+ # Then, build a single hex value, two hex digits per version part.
617
+ hexversion = 0
618
+ for digit in digits:
619
+ hexversion = (hexversion << 8) + digit
620
+
621
+ return '0x%08X' % hexversion
622
+
623
+
624
+ def write_depfile(target, source, dependencies):
625
+ src_base_dir = os.path.dirname(source)
626
+ cwd = os.getcwd()
627
+ if not src_base_dir.endswith(os.sep):
628
+ src_base_dir += os.sep
629
+ # paths below the base_dir are relative, otherwise absolute
630
+ paths = []
631
+ for fname in dependencies:
632
+ try:
633
+ newpath = os.path.relpath(fname, cwd)
634
+ except ValueError:
635
+ # if they are on different Windows drives, absolute is fine
636
+ newpath = os.path.abspath(fname)
637
+
638
+ paths.append(newpath)
639
+
640
+ depline = os.path.relpath(target, cwd) + ": \\\n "
641
+ depline += " \\\n ".join(paths) + "\n"
642
+
643
+ with open(target+'.dep', 'w') as outfile:
644
+ outfile.write(depline)
645
+
646
+
647
+ def print_version():
648
+ print("Cython version %s" % cython_version)
649
+ # For legacy reasons, we also write the version to stderr.
650
+ # New tools should expect it in stdout, but existing ones still pipe from stderr, or from both.
651
+ if sys.stderr.isatty() or sys.stdout == sys.stderr:
652
+ return
653
+ if os.fstat(1) == os.fstat(2):
654
+ # This is somewhat unsafe since sys.stdout/err might not really be linked to streams 1/2.
655
+ # However, in most *relevant* cases, where Cython is run as an external tool, they are linked.
656
+ return
657
+ sys.stderr.write("Cython version %s\n" % cython_version)
658
+
659
+
660
+ def normalise_float_repr(float_str):
661
+ """
662
+ Generate a 'normalised', simple digits string representation of a float value
663
+ to allow string comparisons. Examples: '.123', '123.456', '123.'
664
+ """
665
+ str_value = float_str.lower().lstrip('0')
666
+
667
+ exp = 0
668
+ if 'E' in str_value or 'e' in str_value:
669
+ str_value, exp = str_value.split('E' if 'E' in str_value else 'e', 1)
670
+ exp = int(exp)
671
+
672
+ if '.' in str_value:
673
+ num_int_digits = str_value.index('.')
674
+ str_value = str_value[:num_int_digits] + str_value[num_int_digits + 1:]
675
+ else:
676
+ num_int_digits = len(str_value)
677
+ exp += num_int_digits
678
+
679
+ result = (
680
+ str_value[:exp]
681
+ + '0' * (exp - len(str_value))
682
+ + '.'
683
+ + '0' * -exp
684
+ + str_value[exp:]
685
+ ).rstrip('0')
686
+
687
+ return result if result != '.' else '.0'
Cython/__init__.py ADDED
@@ -0,0 +1,10 @@
1
+ from .Shadow import __version__
2
+
3
+ # Void cython.* directives (for case insensitive operating systems).
4
+ from .Shadow import *
5
+
6
+
7
+ def load_ipython_extension(ip):
8
+ """Load the extension in IPython."""
9
+ from .Build.IpythonMagic import CythonMagics # pylint: disable=cyclic-import
10
+ ip.register_magics(CythonMagics)
Cython/__init__.pyi ADDED
@@ -0,0 +1,7 @@
1
+ from typing import Any
2
+
3
+ from .Shadow import *
4
+
5
+
6
+ # Internal interface for IPython. Not further typed since it's not meant for end users.
7
+ def load_ipython_extension(ip: Any) -> None: ...
Cython/py.typed ADDED
File without changes