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.
- Cython/Build/BuildExecutable.py +169 -0
- Cython/Build/Cache.py +199 -0
- Cython/Build/Cythonize.py +323 -0
- Cython/Build/Dependencies.py +1306 -0
- Cython/Build/Distutils.py +1 -0
- Cython/Build/Inline.py +463 -0
- Cython/Build/IpythonMagic.py +560 -0
- Cython/Build/SharedModule.py +76 -0
- Cython/Build/Tests/TestCyCache.py +194 -0
- Cython/Build/Tests/TestCythonizeArgsParser.py +481 -0
- Cython/Build/Tests/TestDependencies.py +133 -0
- Cython/Build/Tests/TestInline.py +177 -0
- Cython/Build/Tests/TestIpythonMagic.py +287 -0
- Cython/Build/Tests/TestRecythonize.py +212 -0
- Cython/Build/Tests/TestStripLiterals.py +155 -0
- Cython/Build/Tests/__init__.py +1 -0
- Cython/Build/__init__.py +8 -0
- Cython/CodeWriter.py +811 -0
- Cython/Compiler/AnalysedTreeTransforms.py +97 -0
- Cython/Compiler/Annotate.py +326 -0
- Cython/Compiler/AutoDocTransforms.py +320 -0
- Cython/Compiler/Buffer.py +680 -0
- Cython/Compiler/Builtin.py +934 -0
- Cython/Compiler/CmdLine.py +259 -0
- Cython/Compiler/Code.pxd +148 -0
- Cython/Compiler/Code.py +3375 -0
- Cython/Compiler/CodeGeneration.py +33 -0
- Cython/Compiler/CythonScope.py +187 -0
- Cython/Compiler/Dataclass.py +868 -0
- Cython/Compiler/DebugFlags.py +24 -0
- Cython/Compiler/Errors.py +295 -0
- Cython/Compiler/ExprNodes.py +15267 -0
- Cython/Compiler/FlowControl.pxd +97 -0
- Cython/Compiler/FlowControl.py +1455 -0
- Cython/Compiler/FusedNode.py +1002 -0
- Cython/Compiler/Future.py +16 -0
- Cython/Compiler/Interpreter.py +57 -0
- Cython/Compiler/Lexicon.py +340 -0
- Cython/Compiler/LineTable.py +114 -0
- Cython/Compiler/Main.py +853 -0
- Cython/Compiler/MatchCaseNodes.py +259 -0
- Cython/Compiler/MemoryView.py +922 -0
- Cython/Compiler/ModuleNode.py +4024 -0
- Cython/Compiler/Naming.py +374 -0
- Cython/Compiler/Nodes.py +10826 -0
- Cython/Compiler/Optimize.py +5256 -0
- Cython/Compiler/Options.py +835 -0
- Cython/Compiler/ParseTreeTransforms.pxd +77 -0
- Cython/Compiler/ParseTreeTransforms.py +4509 -0
- Cython/Compiler/Parsing.pxd +9 -0
- Cython/Compiler/Parsing.py +4789 -0
- Cython/Compiler/Pipeline.py +439 -0
- Cython/Compiler/PyrexTypes.py +5762 -0
- Cython/Compiler/Pythran.py +232 -0
- Cython/Compiler/Scanning.pxd +40 -0
- Cython/Compiler/Scanning.py +577 -0
- Cython/Compiler/StringEncoding.py +347 -0
- Cython/Compiler/Symtab.py +3080 -0
- Cython/Compiler/Tests/TestBuffer.py +105 -0
- Cython/Compiler/Tests/TestBuiltin.py +72 -0
- Cython/Compiler/Tests/TestCmdLine.py +586 -0
- Cython/Compiler/Tests/TestCode.py +86 -0
- Cython/Compiler/Tests/TestFlowControl.py +65 -0
- Cython/Compiler/Tests/TestGrammar.py +202 -0
- Cython/Compiler/Tests/TestMemView.py +71 -0
- Cython/Compiler/Tests/TestParseTreeTransforms.py +285 -0
- Cython/Compiler/Tests/TestScanning.py +134 -0
- Cython/Compiler/Tests/TestSignatureMatching.py +73 -0
- Cython/Compiler/Tests/TestStringEncoding.py +33 -0
- Cython/Compiler/Tests/TestTreeFragment.py +63 -0
- Cython/Compiler/Tests/TestTreePath.py +103 -0
- Cython/Compiler/Tests/TestTypes.py +75 -0
- Cython/Compiler/Tests/TestUtilityLoad.py +112 -0
- Cython/Compiler/Tests/TestVisitor.py +61 -0
- Cython/Compiler/Tests/Utils.py +36 -0
- Cython/Compiler/Tests/__init__.py +1 -0
- Cython/Compiler/TreeFragment.py +278 -0
- Cython/Compiler/TreePath.py +303 -0
- Cython/Compiler/TypeInference.py +584 -0
- Cython/Compiler/TypeSlots.py +1181 -0
- Cython/Compiler/UFuncs.py +311 -0
- Cython/Compiler/UtilNodes.py +389 -0
- Cython/Compiler/UtilityCode.py +344 -0
- Cython/Compiler/Version.py +8 -0
- Cython/Compiler/Visitor.pxd +53 -0
- Cython/Compiler/Visitor.py +861 -0
- Cython/Compiler/__init__.py +1 -0
- Cython/Coverage.py +448 -0
- Cython/Debugger/Cygdb.py +175 -0
- Cython/Debugger/DebugWriter.py +82 -0
- Cython/Debugger/Tests/TestLibCython.py +275 -0
- Cython/Debugger/Tests/__init__.py +1 -0
- Cython/Debugger/Tests/cfuncs.c +8 -0
- Cython/Debugger/Tests/codefile +49 -0
- Cython/Debugger/Tests/test_libcython_in_gdb.py +578 -0
- Cython/Debugger/Tests/test_libpython_in_gdb.py +90 -0
- Cython/Debugger/__init__.py +1 -0
- Cython/Debugger/libcython.py +1548 -0
- Cython/Debugger/libpython.py +2821 -0
- Cython/Debugging.py +20 -0
- Cython/Distutils/__init__.py +2 -0
- Cython/Distutils/build_ext.py +139 -0
- Cython/Distutils/extension.py +96 -0
- Cython/Distutils/old_build_ext.py +351 -0
- Cython/Includes/cpython/__init__.pxd +173 -0
- Cython/Includes/cpython/array.pxd +174 -0
- Cython/Includes/cpython/bool.pxd +37 -0
- Cython/Includes/cpython/buffer.pxd +112 -0
- Cython/Includes/cpython/bytearray.pxd +33 -0
- Cython/Includes/cpython/bytes.pxd +200 -0
- Cython/Includes/cpython/cellobject.pxd +35 -0
- Cython/Includes/cpython/ceval.pxd +8 -0
- Cython/Includes/cpython/codecs.pxd +121 -0
- Cython/Includes/cpython/complex.pxd +60 -0
- Cython/Includes/cpython/contextvars.pxd +145 -0
- Cython/Includes/cpython/conversion.pxd +36 -0
- Cython/Includes/cpython/datetime.pxd +395 -0
- Cython/Includes/cpython/descr.pxd +26 -0
- Cython/Includes/cpython/dict.pxd +187 -0
- Cython/Includes/cpython/exc.pxd +263 -0
- Cython/Includes/cpython/fileobject.pxd +57 -0
- Cython/Includes/cpython/float.pxd +47 -0
- Cython/Includes/cpython/function.pxd +65 -0
- Cython/Includes/cpython/genobject.pxd +25 -0
- Cython/Includes/cpython/getargs.pxd +12 -0
- Cython/Includes/cpython/instance.pxd +25 -0
- Cython/Includes/cpython/iterator.pxd +36 -0
- Cython/Includes/cpython/iterobject.pxd +24 -0
- Cython/Includes/cpython/list.pxd +92 -0
- Cython/Includes/cpython/long.pxd +149 -0
- Cython/Includes/cpython/longintrepr.pxd +14 -0
- Cython/Includes/cpython/mapping.pxd +63 -0
- Cython/Includes/cpython/marshal.pxd +66 -0
- Cython/Includes/cpython/mem.pxd +120 -0
- Cython/Includes/cpython/memoryview.pxd +50 -0
- Cython/Includes/cpython/method.pxd +49 -0
- Cython/Includes/cpython/module.pxd +208 -0
- Cython/Includes/cpython/number.pxd +258 -0
- Cython/Includes/cpython/object.pxd +433 -0
- Cython/Includes/cpython/pycapsule.pxd +143 -0
- Cython/Includes/cpython/pylifecycle.pxd +68 -0
- Cython/Includes/cpython/pyport.pxd +8 -0
- Cython/Includes/cpython/pystate.pxd +95 -0
- Cython/Includes/cpython/pythread.pxd +53 -0
- Cython/Includes/cpython/ref.pxd +67 -0
- Cython/Includes/cpython/sequence.pxd +134 -0
- Cython/Includes/cpython/set.pxd +119 -0
- Cython/Includes/cpython/slice.pxd +70 -0
- Cython/Includes/cpython/time.pxd +129 -0
- Cython/Includes/cpython/tuple.pxd +72 -0
- Cython/Includes/cpython/type.pxd +53 -0
- Cython/Includes/cpython/unicode.pxd +639 -0
- Cython/Includes/cpython/version.pxd +32 -0
- Cython/Includes/cpython/weakref.pxd +78 -0
- Cython/Includes/libc/__init__.pxd +1 -0
- Cython/Includes/libc/complex.pxd +35 -0
- Cython/Includes/libc/errno.pxd +127 -0
- Cython/Includes/libc/float.pxd +43 -0
- Cython/Includes/libc/limits.pxd +28 -0
- Cython/Includes/libc/locale.pxd +46 -0
- Cython/Includes/libc/math.pxd +209 -0
- Cython/Includes/libc/setjmp.pxd +10 -0
- Cython/Includes/libc/signal.pxd +64 -0
- Cython/Includes/libc/stddef.pxd +9 -0
- Cython/Includes/libc/stdint.pxd +105 -0
- Cython/Includes/libc/stdio.pxd +80 -0
- Cython/Includes/libc/stdlib.pxd +72 -0
- Cython/Includes/libc/string.pxd +50 -0
- Cython/Includes/libc/threads.pxd +84 -0
- Cython/Includes/libc/time.pxd +51 -0
- Cython/Includes/libcpp/__init__.pxd +4 -0
- Cython/Includes/libcpp/algorithm.pxd +320 -0
- Cython/Includes/libcpp/any.pxd +16 -0
- Cython/Includes/libcpp/atomic.pxd +59 -0
- Cython/Includes/libcpp/barrier.pxd +22 -0
- Cython/Includes/libcpp/bit.pxd +29 -0
- Cython/Includes/libcpp/cast.pxd +12 -0
- Cython/Includes/libcpp/cmath.pxd +518 -0
- Cython/Includes/libcpp/complex.pxd +106 -0
- Cython/Includes/libcpp/deque.pxd +165 -0
- Cython/Includes/libcpp/exception.pxd +86 -0
- Cython/Includes/libcpp/execution.pxd +15 -0
- Cython/Includes/libcpp/forward_list.pxd +63 -0
- Cython/Includes/libcpp/functional.pxd +26 -0
- Cython/Includes/libcpp/future.pxd +103 -0
- Cython/Includes/libcpp/iterator.pxd +34 -0
- Cython/Includes/libcpp/latch.pxd +17 -0
- Cython/Includes/libcpp/limits.pxd +61 -0
- Cython/Includes/libcpp/list.pxd +117 -0
- Cython/Includes/libcpp/map.pxd +252 -0
- Cython/Includes/libcpp/memory.pxd +115 -0
- Cython/Includes/libcpp/mutex.pxd +130 -0
- Cython/Includes/libcpp/numbers.pxd +15 -0
- Cython/Includes/libcpp/numeric.pxd +131 -0
- Cython/Includes/libcpp/optional.pxd +34 -0
- Cython/Includes/libcpp/pair.pxd +1 -0
- Cython/Includes/libcpp/queue.pxd +25 -0
- Cython/Includes/libcpp/random.pxd +166 -0
- Cython/Includes/libcpp/semaphore.pxd +44 -0
- Cython/Includes/libcpp/set.pxd +228 -0
- Cython/Includes/libcpp/shared_mutex.pxd +72 -0
- Cython/Includes/libcpp/span.pxd +87 -0
- Cython/Includes/libcpp/stack.pxd +11 -0
- Cython/Includes/libcpp/stop_token.pxd +105 -0
- Cython/Includes/libcpp/string.pxd +355 -0
- Cython/Includes/libcpp/string_view.pxd +181 -0
- Cython/Includes/libcpp/typeindex.pxd +15 -0
- Cython/Includes/libcpp/typeinfo.pxd +10 -0
- Cython/Includes/libcpp/unordered_map.pxd +193 -0
- Cython/Includes/libcpp/unordered_set.pxd +152 -0
- Cython/Includes/libcpp/utility.pxd +30 -0
- Cython/Includes/libcpp/vector.pxd +186 -0
- Cython/Includes/openmp.pxd +50 -0
- Cython/Includes/posix/__init__.pxd +1 -0
- Cython/Includes/posix/dlfcn.pxd +14 -0
- Cython/Includes/posix/fcntl.pxd +86 -0
- Cython/Includes/posix/ioctl.pxd +4 -0
- Cython/Includes/posix/mman.pxd +101 -0
- Cython/Includes/posix/resource.pxd +57 -0
- Cython/Includes/posix/select.pxd +21 -0
- Cython/Includes/posix/signal.pxd +73 -0
- Cython/Includes/posix/stat.pxd +98 -0
- Cython/Includes/posix/stdio.pxd +37 -0
- Cython/Includes/posix/stdlib.pxd +29 -0
- Cython/Includes/posix/strings.pxd +9 -0
- Cython/Includes/posix/time.pxd +71 -0
- Cython/Includes/posix/types.pxd +30 -0
- Cython/Includes/posix/uio.pxd +26 -0
- Cython/Includes/posix/unistd.pxd +271 -0
- Cython/Includes/posix/wait.pxd +38 -0
- Cython/Plex/Actions.pxd +24 -0
- Cython/Plex/Actions.py +119 -0
- Cython/Plex/DFA.pxd +14 -0
- Cython/Plex/DFA.py +164 -0
- Cython/Plex/Errors.py +48 -0
- Cython/Plex/Lexicons.py +178 -0
- Cython/Plex/Machines.pxd +36 -0
- Cython/Plex/Machines.py +238 -0
- Cython/Plex/Regexps.py +539 -0
- Cython/Plex/Scanners.pxd +47 -0
- Cython/Plex/Scanners.py +360 -0
- Cython/Plex/Transitions.pxd +14 -0
- Cython/Plex/Transitions.py +239 -0
- Cython/Plex/__init__.py +34 -0
- Cython/Runtime/__init__.py +1 -0
- Cython/Runtime/refnanny.pyx +237 -0
- Cython/Shadow.py +690 -0
- Cython/Shadow.pyi +521 -0
- Cython/StringIOTree.py +170 -0
- Cython/Tempita/__init__.py +4 -0
- Cython/Tempita/_looper.py +154 -0
- Cython/Tempita/_tempita.py +1091 -0
- Cython/TestUtils.py +410 -0
- Cython/Tests/TestCodeWriter.py +128 -0
- Cython/Tests/TestCythonUtils.py +202 -0
- Cython/Tests/TestJediTyper.py +223 -0
- Cython/Tests/TestShadow.py +114 -0
- Cython/Tests/TestStringIOTree.py +67 -0
- Cython/Tests/TestTestUtils.py +90 -0
- Cython/Tests/__init__.py +1 -0
- Cython/Tests/xmlrunner.py +390 -0
- Cython/Utility/AsyncGen.c +1002 -0
- Cython/Utility/Buffer.c +875 -0
- Cython/Utility/BufferFormatFromTypeInfo.pxd +2 -0
- Cython/Utility/Builtins.c +776 -0
- Cython/Utility/CConvert.pyx +134 -0
- Cython/Utility/CMath.c +104 -0
- Cython/Utility/CommonStructures.c +118 -0
- Cython/Utility/Complex.c +378 -0
- Cython/Utility/Coroutine.c +2206 -0
- Cython/Utility/CpdefEnums.pyx +103 -0
- Cython/Utility/CppConvert.pyx +279 -0
- Cython/Utility/CppSupport.cpp +143 -0
- Cython/Utility/CythonFunction.c +1794 -0
- Cython/Utility/Dataclasses.c +185 -0
- Cython/Utility/Dataclasses.py +112 -0
- Cython/Utility/Embed.c +125 -0
- Cython/Utility/Exceptions.c +1012 -0
- Cython/Utility/ExtensionTypes.c +809 -0
- Cython/Utility/FunctionArguments.c +965 -0
- Cython/Utility/ImportExport.c +987 -0
- Cython/Utility/Lock.c +136 -0
- Cython/Utility/MemoryView.pxd +187 -0
- Cython/Utility/MemoryView.pyx +1481 -0
- Cython/Utility/MemoryView_C.c +1046 -0
- Cython/Utility/ModuleSetupCode.c +3059 -0
- Cython/Utility/NumpyImportArray.c +46 -0
- Cython/Utility/ObjectHandling.c +3342 -0
- Cython/Utility/Optimize.c +1589 -0
- Cython/Utility/Overflow.c +404 -0
- Cython/Utility/Printing.c +86 -0
- Cython/Utility/Profile.c +709 -0
- Cython/Utility/StringTools.c +1259 -0
- Cython/Utility/TestCyUtilityLoader.pyx +8 -0
- Cython/Utility/TestCythonScope.pyx +75 -0
- Cython/Utility/TestUtilityLoader.c +12 -0
- Cython/Utility/TypeConversion.c +1284 -0
- Cython/Utility/UFuncs.pyx +50 -0
- Cython/Utility/UFuncs_C.c +89 -0
- Cython/Utility/__init__.py +28 -0
- Cython/Utility/arrayarray.h +148 -0
- Cython/Utils.py +687 -0
- Cython/__init__.py +10 -0
- Cython/__init__.pyi +7 -0
- Cython/py.typed +0 -0
- cython-3.1.0.dist-info/COPYING.txt +19 -0
- cython-3.1.0.dist-info/LICENSE.txt +176 -0
- cython-3.1.0.dist-info/METADATA +636 -0
- cython-3.1.0.dist-info/RECORD +316 -0
- cython-3.1.0.dist-info/WHEEL +5 -0
- cython-3.1.0.dist-info/entry_points.txt +4 -0
- cython-3.1.0.dist-info/top_level.txt +3 -0
- cython.py +29 -0
- pyximport/__init__.py +4 -0
- pyximport/pyxbuild.py +160 -0
- pyximport/pyximport.py +482 -0
|
@@ -0,0 +1,316 @@
|
|
|
1
|
+
cython.py,sha256=pSc6akwWzrHnEbZXndrTylWt0w7kJa-4zq1yQ_xXbZU,631
|
|
2
|
+
Cython/CodeWriter.py,sha256=cgZKazW2jqCJbWAcr0LsXNYEJ8mJBzoAsUDwqnX45-Y,24111
|
|
3
|
+
Cython/Coverage.py,sha256=WGY5BW1nBcJ86f4Lrs6ZZIuFKCdngsEizs4Kor0iRsc,18783
|
|
4
|
+
Cython/Debugging.py,sha256=vFtJhn7QstMf5gnYru2qHIz5ZjPg1KSlZVGHr-pBCwM,552
|
|
5
|
+
Cython/Shadow.py,sha256=uGMZqACaRtW57DxJjebaLS3K1NpPKZEzWK_EAqbEOgo,19595
|
|
6
|
+
Cython/Shadow.pyi,sha256=V6_nyqC79lwsDARSwxAjM7rsrB0OIxnYdWN5ulgngeI,18572
|
|
7
|
+
Cython/StringIOTree.py,sha256=8u4R5jhUzqYvSX1w5_RrvxbgUvaMqW8jhQgXcCNKIkE,5570
|
|
8
|
+
Cython/TestUtils.py,sha256=H4BldkKXS54kfsctF10etiZp7RiZlwTK4DzA8ajJaHg,14988
|
|
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=7dVMX1cl8t01wmfEFF_Np2Wq1wbxDrocQMev5eE8oJc,12195
|
|
16
|
+
Cython/Build/Dependencies.py,sha256=7C3n7lI6bYMt8t5PlTpV2OoUUxQPZI8WK213QDyMFtM,51377
|
|
17
|
+
Cython/Build/Distutils.py,sha256=iO5tPX84Kc-ZWMocfuQbl_PqyC9HGGIRS-NiKI60-ZE,49
|
|
18
|
+
Cython/Build/Inline.py,sha256=hcRhJJ8XWRYZJ7eGW8P-Yh5DhWCQm2Hxr9Im7WP352g,16298
|
|
19
|
+
Cython/Build/IpythonMagic.py,sha256=X11ClQS2psBcjnI4S1Ovyz_3sW8xEjRqXIh-44ycdek,21455
|
|
20
|
+
Cython/Build/SharedModule.py,sha256=oweHFc3nn8DzWY7br2D85Ejne0mAUpVlWqTaTVGcurY,2811
|
|
21
|
+
Cython/Build/__init__.py,sha256=Wd8O1-WvSQWxQMHK3dUaNvOJEN4pw4dQeHayDlUWB3E,313
|
|
22
|
+
Cython/Build/Tests/TestCyCache.py,sha256=0yu2hshimJNwdjnfbRZdxXWTfy_KkLuqJIugcBf3WeY,6554
|
|
23
|
+
Cython/Build/Tests/TestCythonizeArgsParser.py,sha256=w8mw0sS_OV-8j1sdevv5wE28LZkhNFRmHdLcpddaCgE,20257
|
|
24
|
+
Cython/Build/Tests/TestDependencies.py,sha256=E8yGrYy03JvVPwtYB7JGE-VOCWyYB2ZkQpXKTORpyps,5566
|
|
25
|
+
Cython/Build/Tests/TestInline.py,sha256=pUvDhJOdgiHX0yeuZpKXnk4i3QxLzv9apwiVmdY1FLQ,5695
|
|
26
|
+
Cython/Build/Tests/TestIpythonMagic.py,sha256=9GL8U_Jtyk-sAdEBzCS81RkVjxeM0Jrs2-zAhfFUb54,9004
|
|
27
|
+
Cython/Build/Tests/TestRecythonize.py,sha256=6un9tt8-I1YiFJo9xXRWqe0aUndMfHwrwA0h81Emhwc,6276
|
|
28
|
+
Cython/Build/Tests/TestStripLiterals.py,sha256=NBsZVvCMAwkjIr-JhaI5DAwCxBsnhTDXFr6eHJ-FJxs,5285
|
|
29
|
+
Cython/Build/Tests/__init__.py,sha256=jOqtmPLCvMCq0xVMwGekuLpBmVgq0xtPFmUePySdOjs,13
|
|
30
|
+
Cython/Compiler/AnalysedTreeTransforms.py,sha256=f7YtGIZx2TannOY8QMvqv5-8GGVFvolkwGOgHO5h8f4,3786
|
|
31
|
+
Cython/Compiler/Annotate.py,sha256=aoDo41G3NvZ1TrrDdfRoJ3DGRd6GmjpB3b-Sa6WpVC8,13420
|
|
32
|
+
Cython/Compiler/AutoDocTransforms.py,sha256=YfBERnbaA-P4mmx_a0m4MP9zOIDK3f-5NWgBxISIHo0,11948
|
|
33
|
+
Cython/Compiler/Buffer.py,sha256=NMqvFYIofuS93840lWrNcvDXlBhuXgKLoEuMs0PffLk,26954
|
|
34
|
+
Cython/Compiler/Builtin.py,sha256=uagrbJm5wL1Fz9HXZZyWeTKpu-gH8Qm1fLZSiV1Loi0,40288
|
|
35
|
+
Cython/Compiler/CmdLine.py,sha256=nCECete5QLDTyH9Kmm6esSfSwumc9uUZ7pBuVSKiF40,13179
|
|
36
|
+
Cython/Compiler/Code.pxd,sha256=O98ta6urC-VBPSvD4100u2dezYd5XGVXCENDzqi-eYs,3968
|
|
37
|
+
Cython/Compiler/Code.py,sha256=1ZXaPH_b3vi_vHf1uO1Hw6q7GsrY9nJBabK1dHbNgEw,126035
|
|
38
|
+
Cython/Compiler/CodeGeneration.py,sha256=aEW8IwXvwEOsde0-RxvAi_cb8_qdaDGxH_nS_VFwKWc,1068
|
|
39
|
+
Cython/Compiler/CythonScope.py,sha256=xc--GL42F4k7o7lFRXLOnz0cr_9QuI1UmCLa0F4r5Us,7036
|
|
40
|
+
Cython/Compiler/Dataclass.py,sha256=BpXYLcDBg5gMhLUi3GHJcB1wVSChDpHpV2qp4CuHJNE,36863
|
|
41
|
+
Cython/Compiler/DebugFlags.py,sha256=-ht7qWQyoJO6H5o0XJgwVjj5gWayuol-H2HoLqiCXsE,713
|
|
42
|
+
Cython/Compiler/Errors.py,sha256=u-XsIYumbrABxcdyskF-dazi5GmhXRf0rPG6WQke-eM,9151
|
|
43
|
+
Cython/Compiler/ExprNodes.py,sha256=Yz6yI9lNVAQ7-7gjxNYTb8UtTjS--xElpfOrxSiuTKY,620545
|
|
44
|
+
Cython/Compiler/FlowControl.pxd,sha256=0wDFfkjWddMSOjs76KQSePJBMS1CQk5RjESRHXRkYww,2499
|
|
45
|
+
Cython/Compiler/FlowControl.py,sha256=kaEu43FgM434wHhHHP_1c81zcTCxrLMcXngTxFyT_RE,50930
|
|
46
|
+
Cython/Compiler/FusedNode.py,sha256=7fhaCfZsb-HVVIvP0XReHmVkFIYrdsioB4KxEVkZCJg,43050
|
|
47
|
+
Cython/Compiler/Future.py,sha256=NFtSWCJYqPlEqWZ5Ob_bv_pDfW6iS7pPYWeGH1OGA5g,629
|
|
48
|
+
Cython/Compiler/Interpreter.py,sha256=2C-tJZkVM_8PM48PF1QGJHy_ohTjkWKTc-xdaRTG6RQ,1831
|
|
49
|
+
Cython/Compiler/Lexicon.py,sha256=eI9sKB0vRqsG5Wm1vDf76lU_Dq65IPMYucY5AgvfNVY,21549
|
|
50
|
+
Cython/Compiler/LineTable.py,sha256=dgLxY8qS31d2xvPkh4jNDcRoUM4ivaU9GGtd2cFFEVM,4308
|
|
51
|
+
Cython/Compiler/Main.py,sha256=3L3TdvO1u8gyq1PWu2y1TEh4cOW51H2bVnZN4BIrkyA,34933
|
|
52
|
+
Cython/Compiler/MatchCaseNodes.py,sha256=yVGVAsc1yrda1jHTAI7mZ2-SL67tNdcfOn-ugdCRWPs,7792
|
|
53
|
+
Cython/Compiler/MemoryView.py,sha256=tid76G3oq01ZNGZ7QHaKLh0z_-53XlCYvYSLS-hbD8E,32923
|
|
54
|
+
Cython/Compiler/ModuleNode.py,sha256=bhnjz51h9RgzoXnV3dSQ7rlzLBwKz_9-USC4ndeOlds,186006
|
|
55
|
+
Cython/Compiler/Naming.py,sha256=B_zmwtlwjBDdRlZYkuLE7RnC-9hYwCCOnllWpuLdNfo,11610
|
|
56
|
+
Cython/Compiler/Nodes.py,sha256=DfEB180BZVbU32lXfzKHE7GeZeLPtDCDSGzrm0DUFO4,455878
|
|
57
|
+
Cython/Compiler/Optimize.py,sha256=OeQj5gjwGESDhewY8X0UvMEeekYqKNMyeekQlHeSBhg,228549
|
|
58
|
+
Cython/Compiler/Options.py,sha256=231vtNhRVj4URw0WJd1-ysO246qAPUwouzQA3jTbIWs,31624
|
|
59
|
+
Cython/Compiler/ParseTreeTransforms.pxd,sha256=fRHi_P4GheI84XvUTQ5LXQ295wScpT9uS6SZAq3Jn4M,2238
|
|
60
|
+
Cython/Compiler/ParseTreeTransforms.py,sha256=zyktZfkCoipNk5Y1UdWDqW3CObSmPGhZgEBD01wx4xY,182062
|
|
61
|
+
Cython/Compiler/Parsing.pxd,sha256=A5Ckd1TecRLV_NDx4IzhquYdMsM0BGcDWh7LyXOjKIg,351
|
|
62
|
+
Cython/Compiler/Parsing.py,sha256=OYf6sBbtmH2fns8KIBxKp7rEWowRwY1VZwegAb5EXhQ,157638
|
|
63
|
+
Cython/Compiler/Pipeline.py,sha256=JyYMnRekoKRBe9yOvAuW39Gy-pTitJm5jD_qfO9BAeU,16230
|
|
64
|
+
Cython/Compiler/PyrexTypes.py,sha256=TwCsPpKwxsFwQ-2glpu2S1B7ZmiTf300LnitTJwatP4,217515
|
|
65
|
+
Cython/Compiler/Pythran.py,sha256=wiRE1buAxQ0NFbxg7DHyyd03I6qgLp-KP_fokAvSii4,7888
|
|
66
|
+
Cython/Compiler/Scanning.pxd,sha256=EuzX6UR8GIQo-K1dPUyluJKznYyxjnpi50YzPs97yrk,1166
|
|
67
|
+
Cython/Compiler/Scanning.py,sha256=1oJF6erQaGK_X87YWqk_vA_lKnO--pRJJPWJF-7vjpM,19975
|
|
68
|
+
Cython/Compiler/StringEncoding.py,sha256=I4CLfRls4hyOfv8ZKPL0sIVlbSi9TSBLQ_afzWSeUmA,10242
|
|
69
|
+
Cython/Compiler/Symtab.py,sha256=EyJk-mIdKOVVrevi-lL24UFC9Oyx3Qjdu8unNyJUpKc,137336
|
|
70
|
+
Cython/Compiler/TreeFragment.py,sha256=1AscujwN_mCFeO137PGy1ghCnJ17L9uYoJfqc-7h9VY,9514
|
|
71
|
+
Cython/Compiler/TreePath.py,sha256=Vht_mzZpptXKJw2t_TM-PBYHtZIXXvZFWxjNkhPr9yg,7960
|
|
72
|
+
Cython/Compiler/TypeInference.py,sha256=LFmBXifmFDxJS26XUL4BCTF-J8qSJe6nDjTjwZinnrM,22210
|
|
73
|
+
Cython/Compiler/TypeSlots.py,sha256=OYWfhyXQ-ziaW39N5mDE5P2vy27W7AeoFLjAsqeHzeU,49976
|
|
74
|
+
Cython/Compiler/UFuncs.py,sha256=RZiS_DXlDqyeqRD6YdBsnftu36rVKrO41141YPPVo24,10874
|
|
75
|
+
Cython/Compiler/UtilNodes.py,sha256=GzzXI_7mw4IWr_y0aPwEy6af8CYIr17uddaPUGw6-_o,12380
|
|
76
|
+
Cython/Compiler/UtilityCode.py,sha256=zJuWOSvVlGECNdS0KuyOoSIZjjVL6O4IRbg3-4cUU3U,14313
|
|
77
|
+
Cython/Compiler/Version.py,sha256=24xykpTsCkAQLowr2Y16q5HnlEfiBaCLPD0y4TPy-h0,142
|
|
78
|
+
Cython/Compiler/Visitor.pxd,sha256=Ys_t3ZU9Oy_GqY-P6CvZxg36dcFEAmnDzoI1gTpg6KU,1783
|
|
79
|
+
Cython/Compiler/Visitor.py,sha256=KxPbGeg239Dd5vXabchffLuRMUE-vrUrD-Ag_Dlp56I,31117
|
|
80
|
+
Cython/Compiler/__init__.py,sha256=jOqtmPLCvMCq0xVMwGekuLpBmVgq0xtPFmUePySdOjs,13
|
|
81
|
+
Cython/Compiler/Tests/TestBuffer.py,sha256=conB2NtpIjYP6bqS50rnDOEhSVulkfviCvuUw5_Y9Nc,4144
|
|
82
|
+
Cython/Compiler/Tests/TestBuiltin.py,sha256=WyH4jo-2LCkxD_QPWMywRPaMPsUF2ZJerL4p60Hc3Mg,3453
|
|
83
|
+
Cython/Compiler/Tests/TestCmdLine.py,sha256=VMlGX1fzUIXxqAUAdL1K7BVfjDgboYM3joywMm0GIPA,22271
|
|
84
|
+
Cython/Compiler/Tests/TestCode.py,sha256=t5NBJsAoCgysW4XclYRA9tF0hWb42vVvE6vig3BzDnc,2230
|
|
85
|
+
Cython/Compiler/Tests/TestFlowControl.py,sha256=A07myiBrQwT7fdCbEv3E_ue0CkCLXgcyyOcukcWQcpI,1783
|
|
86
|
+
Cython/Compiler/Tests/TestGrammar.py,sha256=hem6fHhR0i6chQbBlSNnnvJutubXkL8GTVfb2Oj25hw,5086
|
|
87
|
+
Cython/Compiler/Tests/TestMemView.py,sha256=lB3oau8jpT6CZiuwezpOGKoHTj8mGq0MhFX5d2YTS2M,2492
|
|
88
|
+
Cython/Compiler/Tests/TestParseTreeTransforms.py,sha256=Iduz5Voh5mrwCWCsl6egmjh5sdolpJHkrY50P-PynpQ,8696
|
|
89
|
+
Cython/Compiler/Tests/TestScanning.py,sha256=jWHKDfk-4edBaCz_o_YBmwUDXSvsE-Eia-7SLKq7Ovo,4850
|
|
90
|
+
Cython/Compiler/Tests/TestSignatureMatching.py,sha256=tDlQks1mgo2MIPBW_uC5YkoZt0RjPGYAdluk1j82IvM,3342
|
|
91
|
+
Cython/Compiler/Tests/TestStringEncoding.py,sha256=vyE-k-GcfRlboVN1SMX4WZzN8kJ6pplp_WiEdf3pXas,1768
|
|
92
|
+
Cython/Compiler/Tests/TestTreeFragment.py,sha256=_fgSju1IU3tIsXPknjJ0Nv8jtexFKxNS3nLMc0BSzJE,2155
|
|
93
|
+
Cython/Compiler/Tests/TestTreePath.py,sha256=bRWPuoeAXOErEu59j-YtO2BaT16_6CfecwQYziNCz6s,4836
|
|
94
|
+
Cython/Compiler/Tests/TestTypes.py,sha256=hYaZY7cZZDtgPzRCsETe9bTdpgBs1zg_r-l5hmciu7I,3294
|
|
95
|
+
Cython/Compiler/Tests/TestUtilityLoad.py,sha256=5zuAYD_RuRW_KDl2cfA9aXCJ_G-LlDA9pIF4zbqeZlg,3923
|
|
96
|
+
Cython/Compiler/Tests/TestVisitor.py,sha256=bfOg4DhApiPdSroTAmC1M05RAnsY4ggZVnw4q08QWx8,2227
|
|
97
|
+
Cython/Compiler/Tests/Utils.py,sha256=ChgJ0EeGJRc_ZkNVjZFvFzk1tOj6dxjkW6X1BBot1Hc,1065
|
|
98
|
+
Cython/Compiler/Tests/__init__.py,sha256=jOqtmPLCvMCq0xVMwGekuLpBmVgq0xtPFmUePySdOjs,13
|
|
99
|
+
Cython/Debugger/Cygdb.py,sha256=cj-hfHqQYZPnTDrwRfvP4VfGEE4_sWJg-51IqBhbRZc,6961
|
|
100
|
+
Cython/Debugger/DebugWriter.py,sha256=l-_LVOoP__d5eLpURPFv-JvAKGu5i8KY2trbJWZtdBY,2279
|
|
101
|
+
Cython/Debugger/__init__.py,sha256=jOqtmPLCvMCq0xVMwGekuLpBmVgq0xtPFmUePySdOjs,13
|
|
102
|
+
Cython/Debugger/libcython.py,sha256=m3yvthTEuc-wSedc76VEZj_My6rFb86XRa-WIzQ9ejc,49951
|
|
103
|
+
Cython/Debugger/libpython.py,sha256=CzAI4N7X7cOYPTMhRYx2fWrlAg14APGJom6g3Vtr6iE,92865
|
|
104
|
+
Cython/Debugger/Tests/TestLibCython.py,sha256=o1V26-CUIfFm3mlceUBUiIwQ31oEbLjVLjQdomKtDzI,8392
|
|
105
|
+
Cython/Debugger/Tests/__init__.py,sha256=jOqtmPLCvMCq0xVMwGekuLpBmVgq0xtPFmUePySdOjs,13
|
|
106
|
+
Cython/Debugger/Tests/cfuncs.c,sha256=4SZurmnz5J1SiIs9N26Eu4zc2wvF_qMEKaN0eTcbDPo,71
|
|
107
|
+
Cython/Debugger/Tests/codefile,sha256=axsI884lThsoLMg2vlQJ6BPG8t9vil0mTDs_Pi7vuwI,642
|
|
108
|
+
Cython/Debugger/Tests/test_libcython_in_gdb.py,sha256=x6xoinhYTcDRHvi8mrEGv9NQ9OBLJm6yptt2AsiOObw,19077
|
|
109
|
+
Cython/Debugger/Tests/test_libpython_in_gdb.py,sha256=469c2YX8z9ZyN161__kW0BWYZHwDDIdw-7_DzdLGSv4,3249
|
|
110
|
+
Cython/Distutils/__init__.py,sha256=uyWaN2NJ_mKYLzVsDPi0qZCdIYoW5M_7YYEmAOIL3Ek,98
|
|
111
|
+
Cython/Distutils/build_ext.py,sha256=JbnyL8H1xyKnb8yDek6MDFIW9MTpbDbcoahqM5An1ho,5872
|
|
112
|
+
Cython/Distutils/extension.py,sha256=hJ8VeNgGyxdz7Lke_Bg7FUkiC6mu9uNz9TosfXsfTaI,3551
|
|
113
|
+
Cython/Distutils/old_build_ext.py,sha256=T-0H1lPbaP1wa_YgV9JkattbYOhHDHqQ9gsWkqYkkd0,13723
|
|
114
|
+
Cython/Includes/openmp.pxd,sha256=3GTRd5JH31CvfTzXErglXnyf_jye1Gvk9O4giTa6pc0,1712
|
|
115
|
+
Cython/Includes/cpython/__init__.pxd,sha256=dUl8RHGxo-181oczdAl7vND_jkcMaHnK4A2ji1hJaos,8100
|
|
116
|
+
Cython/Includes/cpython/array.pxd,sha256=CQ2cdYG-2MwJV_2hYZoQuUvREtpUKLrVgpRdy_kV9lg,6440
|
|
117
|
+
Cython/Includes/cpython/bool.pxd,sha256=2_ouVZUNuCHLVxpNwzQ4bCExpZTj354KcQ0iRv48LZs,1358
|
|
118
|
+
Cython/Includes/cpython/buffer.pxd,sha256=wm7aHygGUof_H3-JyICOek_xiU6Oks178ark1Nfk-a0,4870
|
|
119
|
+
Cython/Includes/cpython/bytearray.pxd,sha256=00A4Jz669d43AirqCWwswlVxaykwj1f3zNgMSYOYD74,1453
|
|
120
|
+
Cython/Includes/cpython/bytes.pxd,sha256=OH9krgA2CLdcNJWOM0PpgMskbh5vnq6fjjj1lzYOhOU,10066
|
|
121
|
+
Cython/Includes/cpython/cellobject.pxd,sha256=DXdTjSN1RP1m4CsaGuggyIA1nGiIO4Kr7-c0ZWfrpRo,1390
|
|
122
|
+
Cython/Includes/cpython/ceval.pxd,sha256=h6fBetZCUvWTcCn3bkXZg2kqnIuyC5ZSChyhOocxVus,236
|
|
123
|
+
Cython/Includes/cpython/codecs.pxd,sha256=3fyudEljkNGQ7e3dJPst6udXGcAeNKvlMK9U8EB1gXc,5084
|
|
124
|
+
Cython/Includes/cpython/complex.pxd,sha256=fPDPXa5J99BWENHF1IQu5fdkQ8sxhErXIpPNLI5JCVI,2080
|
|
125
|
+
Cython/Includes/cpython/contextvars.pxd,sha256=5kHKXWueZ7KlnKo5HeHA90YNdZtLy07FkyeNHYuU7O0,5867
|
|
126
|
+
Cython/Includes/cpython/conversion.pxd,sha256=dbbFuZJF0SscmcaNCUf0tlBQDRdKYf5tH8yzhTU_XYI,1696
|
|
127
|
+
Cython/Includes/cpython/datetime.pxd,sha256=jTNHusK6saqeuUkYkvPSlgTTaEaWgiihQfeVvHayId4,14213
|
|
128
|
+
Cython/Includes/cpython/descr.pxd,sha256=RPSPJUxyejKsWruYS3IWU1rg0L1pKFAYidYcXW9YAj0,728
|
|
129
|
+
Cython/Includes/cpython/dict.pxd,sha256=k3JbYRJ_LxF39v_aErVk_Ka2-czw-H6lQCpZNUmzmdU,7959
|
|
130
|
+
Cython/Includes/cpython/exc.pxd,sha256=0pI7VcDnMLqf-S_BClRgoiH2xGyDbhlmFGWOKcn3sGM,13830
|
|
131
|
+
Cython/Includes/cpython/fileobject.pxd,sha256=yQG3M9wfS2jwpgSTo-8oXx8K9xnpGIkL-etQt9YDwTU,2889
|
|
132
|
+
Cython/Includes/cpython/float.pxd,sha256=1wVFFSyGTQA0IWBACQU1BUVMwVRjXDQwNZEYcSXEew0,1670
|
|
133
|
+
Cython/Includes/cpython/function.pxd,sha256=IoJUprbz8F10DEKh-vSSpY6nWkCHw7SqG9p2f-4gHek,2671
|
|
134
|
+
Cython/Includes/cpython/genobject.pxd,sha256=emC1JPgkuvBbGC0rgeZapKDaXYEj48uWiDC-xF0Mx2I,1052
|
|
135
|
+
Cython/Includes/cpython/getargs.pxd,sha256=268twKzdiAkQMXMsetNiNlNqaqzlKtiBENKbhOHd8x4,775
|
|
136
|
+
Cython/Includes/cpython/instance.pxd,sha256=qCbxPeHKOJbuszDu3UEaI-KLX9lTopuaNCcpoHJ9ngU,985
|
|
137
|
+
Cython/Includes/cpython/iterator.pxd,sha256=o52mLHbdm14Kqant2hR2zAdYzqK4fkSWZtBcRmpoP-I,1319
|
|
138
|
+
Cython/Includes/cpython/iterobject.pxd,sha256=5UEZZwG5zyzxoCpknoQuh91zPUV11Uxr6F1taJdTv8k,1036
|
|
139
|
+
Cython/Includes/cpython/list.pxd,sha256=HhnwchBGhPIAoObzIXyg33KqvSxBRveWoq34iZM508s,4096
|
|
140
|
+
Cython/Includes/cpython/long.pxd,sha256=1gN-O5AcV4B_r974qxW9YDr7NedDyDrTRjOelClvoyA,7047
|
|
141
|
+
Cython/Includes/cpython/longintrepr.pxd,sha256=zHZAj59YfzjVn-acRB8D6AELEhkO2hsejtBB4gwzQrA,335
|
|
142
|
+
Cython/Includes/cpython/mapping.pxd,sha256=DI5_kOp78IaYx77qIWpetu13iMEgGXZew84mTsCPYtM,2692
|
|
143
|
+
Cython/Includes/cpython/marshal.pxd,sha256=-Tl2w_7VfgzrCSq1gpBIEZRADw1g1zZNMdPXz4YJClE,2897
|
|
144
|
+
Cython/Includes/cpython/mem.pxd,sha256=O8I4rWJj7VvrlYjPpR-Dhls5izYddgO5rNyAOAzWUQQ,5912
|
|
145
|
+
Cython/Includes/cpython/memoryview.pxd,sha256=5u269XhOhUc0vF1jBQrUkLlZB4rdxDDGz3PaXNjY5as,2528
|
|
146
|
+
Cython/Includes/cpython/method.pxd,sha256=UWXflhIlP4y7B5XDbH9rQ15iADciGW-iqV1-dlw2Wwg,2196
|
|
147
|
+
Cython/Includes/cpython/module.pxd,sha256=ahRxpmkz_KMZhnSk-ZrXn_kkSoUhNBxWXf9uPquXyis,10128
|
|
148
|
+
Cython/Includes/cpython/number.pxd,sha256=gd64hOPnFjeWQIUhBfLx2yC6hQHxROxxr7Xxs3Hgprw,11608
|
|
149
|
+
Cython/Includes/cpython/object.pxd,sha256=Y_Cu11am3qCI78SZLn3-dg4XtDEaw35Rn4pyeSoj9ng,19676
|
|
150
|
+
Cython/Includes/cpython/pycapsule.pxd,sha256=Z3-xhfFRIldr-SqznNaE5J0N0jlUvoa-I5sGTHzWTGg,5700
|
|
151
|
+
Cython/Includes/cpython/pylifecycle.pxd,sha256=LziJZHclGdtsr3yT28fULHNZ_n67bs1DmI9s8YzrBGg,2000
|
|
152
|
+
Cython/Includes/cpython/pyport.pxd,sha256=MfWCwvbMjd_qBvpmj5DuNUqGnTnLLEIx9pb8B1-dz_Y,222
|
|
153
|
+
Cython/Includes/cpython/pystate.pxd,sha256=TQb-_El6K7h6ktpFkgfehi1VBe4KcUNscH7TG7Nv8W4,3779
|
|
154
|
+
Cython/Includes/cpython/pythread.pxd,sha256=0375TaYmtNCDDkWBh9WY4oJ_jhoTxhu_RR5QiOsXmYg,1946
|
|
155
|
+
Cython/Includes/cpython/ref.pxd,sha256=_cyHnvXpqHCw6Pt8cpK2HjUdU3qSkqvSuhyFO-TCqkE,3323
|
|
156
|
+
Cython/Includes/cpython/sequence.pxd,sha256=UajXW6S_ssyCmYDDsXFiHGR9IUDMP3f6AuV4bBzh2Do,6006
|
|
157
|
+
Cython/Includes/cpython/set.pxd,sha256=ewHRPVMbHUGDInZ3NziisCq68LvtmEJ-SXFbzmuJxLc,5383
|
|
158
|
+
Cython/Includes/cpython/slice.pxd,sha256=Rzgn8diAsN7lS2xGTq4VZucV3ziFNra4oz4tKGEAkMo,3111
|
|
159
|
+
Cython/Includes/cpython/time.pxd,sha256=oC5qSaLnfcwKQXT8y-NLkBRS76Ns_1TzRb41Oo6gFUI,4344
|
|
160
|
+
Cython/Includes/cpython/tuple.pxd,sha256=DUUhJp4v23g0JOJ6OK3sGvHNgEz97Z9be8XBgZrqH0Y,3219
|
|
161
|
+
Cython/Includes/cpython/type.pxd,sha256=qt8Hqz3DKGJuMgWJgP2JuCpUHiySYp8KCJTerJ4gnpI,2067
|
|
162
|
+
Cython/Includes/cpython/unicode.pxd,sha256=68cguuI3cMJbspbqwRPuzmpjJfOsZe_IV10JvhMd-FQ,30635
|
|
163
|
+
Cython/Includes/cpython/version.pxd,sha256=l5KXt04isEv3qbGRJZ8fNlCYGO24HsA2l4EM3RxTEhE,847
|
|
164
|
+
Cython/Includes/cpython/weakref.pxd,sha256=ndmsjjpWN9UmLL3qT7p6SOoxswxVxCaTJDpLgvvCx4A,3240
|
|
165
|
+
Cython/Includes/libc/__init__.pxd,sha256=jOqtmPLCvMCq0xVMwGekuLpBmVgq0xtPFmUePySdOjs,13
|
|
166
|
+
Cython/Includes/libc/complex.pxd,sha256=m2ntA8NFZQG02UuY5YDGu-MrW-Avp0kSY82mhkR1Q8M,1224
|
|
167
|
+
Cython/Includes/libc/errno.pxd,sha256=tt0CJaCDWZN4HGtzC5nP7D-hT-jjoYD9m0FOPizmRvc,2049
|
|
168
|
+
Cython/Includes/libc/float.pxd,sha256=IhvZJljpTG0fZtcIp7EBO2Sqddozxoxwj4RFNVcKLpY,966
|
|
169
|
+
Cython/Includes/libc/limits.pxd,sha256=xHlIyuDIKpjqclvRRYzZIcfd5G1re5QtbmoDMqZR_Ec,621
|
|
170
|
+
Cython/Includes/libc/locale.pxd,sha256=sixG8EJ6wiVb0HIR1LWJ3lXTjTv463GJ9C_40HRovN4,1140
|
|
171
|
+
Cython/Includes/libc/math.pxd,sha256=Hy0ewq4Xw2sWPvrokbrbpHw6r6azx8C1nRsNWtuMhUs,6581
|
|
172
|
+
Cython/Includes/libc/setjmp.pxd,sha256=XRh-gSuhvFLl0nRvz5OhSWYe9eqX2attAck3JI7mwa4,297
|
|
173
|
+
Cython/Includes/libc/signal.pxd,sha256=RmJeCLtWUfYFTtwiocZSV-gJtJrxFijkTYOZnvOk9Pw,1179
|
|
174
|
+
Cython/Includes/libc/stddef.pxd,sha256=0rCyoocCfDL-1OQo3pxHQ-6fW20SAYktOLPoa4d97w8,164
|
|
175
|
+
Cython/Includes/libc/stdint.pxd,sha256=qHJXzpWCrbvJWSaHYZL27VJPupQreTZl9VGj0jgLdRU,3449
|
|
176
|
+
Cython/Includes/libc/stdio.pxd,sha256=qUaxEwNrQl1-4yHLorzzJZ-a-y5_-Rm_m7Z5meaRqH0,2476
|
|
177
|
+
Cython/Includes/libc/stdlib.pxd,sha256=p62xq2XfB24WfNCjRXgD6cOYoRuV47AnYijkjWv4ugE,2444
|
|
178
|
+
Cython/Includes/libc/string.pxd,sha256=tzYGbRrnccedFLes-KGgJqM0FEtwHF_q4f2fqltNvyE,2038
|
|
179
|
+
Cython/Includes/libc/threads.pxd,sha256=EQ7LavZH5GjX76tN5475eEUXtfaawCHJ5BUoVB1O_8E,2619
|
|
180
|
+
Cython/Includes/libc/time.pxd,sha256=p-1adbYN05wN-FKvanui1tMX10Ti2_o1nhRsGCxvQhw,1469
|
|
181
|
+
Cython/Includes/libcpp/__init__.pxd,sha256=PCx8ZRfOeoyMRu41PPlPY9uo2kZmt_7d0KR4Epzfe7c,94
|
|
182
|
+
Cython/Includes/libcpp/algorithm.pxd,sha256=HaatOKA2pIHc-RNHCIWayPXLT2Hd56Q0gKC5kLlCYYc,23704
|
|
183
|
+
Cython/Includes/libcpp/any.pxd,sha256=0HE8j4XF0bkCrxaYWE3DM1kV_2LhljH8WKh2ariwIWc,425
|
|
184
|
+
Cython/Includes/libcpp/atomic.pxd,sha256=BDFpDe8SmSdiDkEUfzbh55hjkY8yCUVDyeeUcMOwiy8,1705
|
|
185
|
+
Cython/Includes/libcpp/barrier.pxd,sha256=l4xtM1RDgw1olpFluH69cc97HQnu6AMkdA_Y8j9JIqw,769
|
|
186
|
+
Cython/Includes/libcpp/bit.pxd,sha256=Wd_4EoENOPZeqqhd0s--6TCOzeqPpUFfGNQibsqV9Ig,749
|
|
187
|
+
Cython/Includes/libcpp/cast.pxd,sha256=En4LBubdinfpm9Rel077tK_LGwg_3k4FAu9mlIbKjuw,501
|
|
188
|
+
Cython/Includes/libcpp/cmath.pxd,sha256=-_jnjIWY47jybkNnGrMk8ewZeGaWU0ezMWAZm9UCRk0,19935
|
|
189
|
+
Cython/Includes/libcpp/complex.pxd,sha256=JtuQuknvS6GQ0FfyJGQ914DXvzNEaF1-z9D0jST6gXM,2995
|
|
190
|
+
Cython/Includes/libcpp/deque.pxd,sha256=SwgYrnqq6OMQMSOEFTZpnpRsii7pIAT-06bLxMS5w7M,6718
|
|
191
|
+
Cython/Includes/libcpp/exception.pxd,sha256=AMIC8ZeCT0_rVcsy85rna4OBdOOELAriVXBKoI4zdUo,3175
|
|
192
|
+
Cython/Includes/libcpp/execution.pxd,sha256=I2KizUy9DGm_0edrd2BFdHPwyeip2ZcDxqdwb0t7taI,515
|
|
193
|
+
Cython/Includes/libcpp/forward_list.pxd,sha256=o2ThwKyJWZrNT4ZMB1aYmf-2wqYiqSCDdfVswpo8S8I,2429
|
|
194
|
+
Cython/Includes/libcpp/functional.pxd,sha256=kMul7WB1J0X2-611AMtXq6sP9jYYk3YO8zZoDKFaeDU,722
|
|
195
|
+
Cython/Includes/libcpp/future.pxd,sha256=llEx7s25KMql8ymxBFoWAHwlZZyiNlisAOj93RRSGf0,3838
|
|
196
|
+
Cython/Includes/libcpp/iterator.pxd,sha256=UjkDqqKq6pHLiwgdUY730PbzAiTKKlhak6gkVd3jtsk,1512
|
|
197
|
+
Cython/Includes/libcpp/latch.pxd,sha256=OFBq_vMgfdWCKTD0v4yDv6t4xbjnFhULjcAQ8TuQO9M,534
|
|
198
|
+
Cython/Includes/libcpp/limits.pxd,sha256=BWJzVBB8MZt3l9PUre1o5eScE2fGJa3_Sv6e_KH30Uw,1821
|
|
199
|
+
Cython/Includes/libcpp/list.pxd,sha256=iOovgIk_Slkf7yaDEv6-ZUss_AU98OGWkvgNQDF0K0A,4438
|
|
200
|
+
Cython/Includes/libcpp/map.pxd,sha256=C8EaEsvLEc2tmEkyybOzgkx3CoFWYFBpZelHhcKHI1s,10481
|
|
201
|
+
Cython/Includes/libcpp/memory.pxd,sha256=OqNDPX_1ps9bxWCEQDiefbQv-NeZJ7SNUQtdYB86MZs,3593
|
|
202
|
+
Cython/Includes/libcpp/mutex.pxd,sha256=3oKT_YQTcRu0Ir0E0RS5uKCZ1ES0vYFAkX0NXU2k244,4758
|
|
203
|
+
Cython/Includes/libcpp/numbers.pxd,sha256=SkBhbClhRTtzbSMj_QvR2pz-CjdB08ZXPJbXSwATzvw,395
|
|
204
|
+
Cython/Includes/libcpp/numeric.pxd,sha256=H4k7D-xrJ3mcLrGRUmghwS1-9FPb4BQnSREMuw3PvKQ,6570
|
|
205
|
+
Cython/Includes/libcpp/optional.pxd,sha256=Mf5gnZIvB9IR-L7bi3ntog2EOXB-pp1Xo45CWqyRCiU,990
|
|
206
|
+
Cython/Includes/libcpp/pair.pxd,sha256=UBJXw43uHkDlNsr0Pu1aP5tZ-ILXhUAyOLam2qdWmZA,27
|
|
207
|
+
Cython/Includes/libcpp/queue.pxd,sha256=FbL4Q7C3lgtZ2YzictU1XBXzQ7G-6y9i_7l2eqzA3Xc,649
|
|
208
|
+
Cython/Includes/libcpp/random.pxd,sha256=jgjjSbPvJturdi1NhYclH6NQRnDF3CiCbuPKgtrQ2lc,6203
|
|
209
|
+
Cython/Includes/libcpp/semaphore.pxd,sha256=CUH1gHmktaYnKcqHfaItNHVnxHwIavaH_Tw6pU4DU_Y,1578
|
|
210
|
+
Cython/Includes/libcpp/set.pxd,sha256=IAEHB3ElvGIm9AX8fWoO9db1jpz6eVXLDgMgOcoHhcY,9176
|
|
211
|
+
Cython/Includes/libcpp/shared_mutex.pxd,sha256=s_dLOip8hxx7mLRngw0JNp9JpCbTBPxhRP4NBupP1d8,2918
|
|
212
|
+
Cython/Includes/libcpp/span.pxd,sha256=vpjT9hk1lUpSCLLHRDooxh3H4nFahVKVsbAP_i2KPxw,3167
|
|
213
|
+
Cython/Includes/libcpp/stack.pxd,sha256=hCU6nVpHHkKhlzREnw4cSi64atGu9pWeuorFSZtEoh4,301
|
|
214
|
+
Cython/Includes/libcpp/stop_token.pxd,sha256=N6Bgx---jJm-N3alHAaKwo4KgKvD9jAARsddfp5HD5k,4078
|
|
215
|
+
Cython/Includes/libcpp/string.pxd,sha256=xtXGBe6kxk7DFNUmFi2l95mhVOlHIeyeuZZXNwjc-6c,15178
|
|
216
|
+
Cython/Includes/libcpp/string_view.pxd,sha256=uhSyFkZbcRJOuTIEiJJMVrvUmL309X95fAqXSBJcaFE,6550
|
|
217
|
+
Cython/Includes/libcpp/typeindex.pxd,sha256=mIHr5Mq6Lol0SlzqeK6w_giVERh3uAjZm78yPDLXzc4,524
|
|
218
|
+
Cython/Includes/libcpp/typeinfo.pxd,sha256=tITsqurrdaZjsEGFksem9xZtVhSxQRxHZxcoC-4Y-DY,304
|
|
219
|
+
Cython/Includes/libcpp/unordered_map.pxd,sha256=dHnTuJ1S3ja7OYGRW-hZ1Zh_xDpv3iW6JUxs9Um_K4U,7945
|
|
220
|
+
Cython/Includes/libcpp/unordered_set.pxd,sha256=yfmib2EnFDGn_RvlxCFkVy-eVapwQw2FvTHu-I5psTU,5810
|
|
221
|
+
Cython/Includes/libcpp/utility.pxd,sha256=hTbvp7c12pnU2yvzzMvflZB-MAc_--3xh3PXtD_VIwg,1040
|
|
222
|
+
Cython/Includes/libcpp/vector.pxd,sha256=h1FA-ke48g9t-yI6IQ5kooSO51nOBkBWhNw0_hzevFY,7680
|
|
223
|
+
Cython/Includes/posix/__init__.pxd,sha256=jOqtmPLCvMCq0xVMwGekuLpBmVgq0xtPFmUePySdOjs,13
|
|
224
|
+
Cython/Includes/posix/dlfcn.pxd,sha256=U-jAieh45NSlrlogsd6SJeCunYDxCG-AlQ7hpEXQgL4,356
|
|
225
|
+
Cython/Includes/posix/fcntl.pxd,sha256=s0Qj0-T7Luzk0dJH4Jn_U54Suzf1LrfKDlFp7qg_nfM,1697
|
|
226
|
+
Cython/Includes/posix/ioctl.pxd,sha256=2RC5zejPOCTkarDZM_6Vd2wc4oBuN7iaiL_C5MPBs90,99
|
|
227
|
+
Cython/Includes/posix/mman.pxd,sha256=jeRRW5YRK4o2cLx5M98Ce--CP7GGZWVyy3ylW2mP6nU,3475
|
|
228
|
+
Cython/Includes/posix/resource.pxd,sha256=_oeWwy1HOQ-PUAxfnM1Ha7jnSIi2uUosAaNaQmqUmsk,1338
|
|
229
|
+
Cython/Includes/posix/select.pxd,sha256=cF6U60K7hYUzQuY8udA8VF50vTC7xxau1eynXrADzAU,619
|
|
230
|
+
Cython/Includes/posix/signal.pxd,sha256=wFJI5UthdtU9mZWjEBeZ9IIfeX252JVwDk2tsbW_q3U,1876
|
|
231
|
+
Cython/Includes/posix/stat.pxd,sha256=5sHZ4Ira3nVeNDynsM-7aEcJu7DfC07d_aTwlcUhC0Q,2695
|
|
232
|
+
Cython/Includes/posix/stdio.pxd,sha256=nDxLG4Qdq2v9zLb-bfxphv9oCvCD5QenT2POqSX7Sww,1055
|
|
233
|
+
Cython/Includes/posix/stdlib.pxd,sha256=G5Miv-QwID6Te9BQsz2vlRyKTpmvtuuYdwOUX4RxRoM,935
|
|
234
|
+
Cython/Includes/posix/strings.pxd,sha256=GNEteqND2wgXXSvkv6U9eKSC9oIom3C7o2zQ6W_J_S4,374
|
|
235
|
+
Cython/Includes/posix/time.pxd,sha256=lX06ykHd1qZsrw9ziKLpsGNdoN03PURRfrEngOMRBcs,1981
|
|
236
|
+
Cython/Includes/posix/types.pxd,sha256=qSIuxPOkw-2ef4PoEzGgeNxINtXJEkZPSLWDopynz4c,1167
|
|
237
|
+
Cython/Includes/posix/uio.pxd,sha256=lsHOhduB-LgUwWz8uMYlenGa29gtfc2B_K8Jjw7_8OY,822
|
|
238
|
+
Cython/Includes/posix/unistd.pxd,sha256=w9B4d9NaXBsQ62XOr2xe9UFPGewmEk5BG6sqiRWdoM8,8061
|
|
239
|
+
Cython/Includes/posix/wait.pxd,sha256=8bQAm7_cADrhT9ZY8-HZUn6dbIeIvEkuy-ZYmaSYQMg,1246
|
|
240
|
+
Cython/Plex/Actions.pxd,sha256=FitAd4d7bqe88jGnCLcjmyDxaKzVn1iiujup4lmWx3I,553
|
|
241
|
+
Cython/Plex/Actions.py,sha256=WVLtt8Sumnch8AXbtCvXN4ppWt0iRhAWRULcrb6FqEs,2853
|
|
242
|
+
Cython/Plex/DFA.pxd,sha256=UQLNFC4_BG1-CF4KBSDT9K7cc38hioCh5NfN9q1NtYU,318
|
|
243
|
+
Cython/Plex/DFA.py,sha256=yvfavRVwI1DtEWOG3dr2GqpEb8_M7CEydDvNcvVvOMc,5927
|
|
244
|
+
Cython/Plex/Errors.py,sha256=UsCwtNpxD2_BfStOsYfb1gMeU0xe5a_8yUDd7WKf7cc,976
|
|
245
|
+
Cython/Plex/Lexicons.py,sha256=ZaTeuyhl_EHgvvDWk9hSzW6CeHTdFwLSKb5UM-kBGnU,5891
|
|
246
|
+
Cython/Plex/Machines.pxd,sha256=t77is2iFpmRLSOjwevMrjLxovLrHcwZb_EWN1rwI68Q,828
|
|
247
|
+
Cython/Plex/Machines.py,sha256=6JFyYBN5eQwYjEZ8_CseJSOg6bFpco_oE2ioUgluvEA,7516
|
|
248
|
+
Cython/Plex/Regexps.py,sha256=BF57aVD5UTpK7fVCTmlXTBCsDkxkHTbArYZQl0fFDm4,14909
|
|
249
|
+
Cython/Plex/Scanners.pxd,sha256=1uK9IsSrleYpgy1WSX2U_SbP_E8KM8f3yj9TpSLto24,1373
|
|
250
|
+
Cython/Plex/Scanners.py,sha256=UDju63_VylUtrKq4NzKoz5kWvLt_UT7_DGmIwvNlVFg,13087
|
|
251
|
+
Cython/Plex/Transitions.pxd,sha256=XH4WKLtvCHTfC5zW-fAD3g2MT-Eap8y_gH7Rlv6QPcM,300
|
|
252
|
+
Cython/Plex/Transitions.py,sha256=dUT-KTqiAEUNBWhQj7z3ldEsj8KVGmGbRsDis4iuFvg,7141
|
|
253
|
+
Cython/Plex/__init__.py,sha256=GMAj47guqw4qWDVw8dQLlRl2xzqgr7sRlSVVbDhePyw,1116
|
|
254
|
+
Cython/Runtime/__init__.py,sha256=jOqtmPLCvMCq0xVMwGekuLpBmVgq0xtPFmUePySdOjs,13
|
|
255
|
+
Cython/Runtime/refnanny.pyx,sha256=J3AKlsRk8Cbnn_ltuiqrwgFIO3yUVcXHEcT5Yl-brxg,7939
|
|
256
|
+
Cython/Tempita/__init__.py,sha256=YHujYHiLoYUwFNNswJCgzSrDuie3sV08JsWT9Nbmp78,152
|
|
257
|
+
Cython/Tempita/_looper.py,sha256=rtvD2BDuXThB7IvoRfecm1w8vSCkaOEZUBl08PnGLcM,3975
|
|
258
|
+
Cython/Tempita/_tempita.py,sha256=lj6mlSNyuJ3hHIsODq7lWbzLyL5Gak6ZVr0tc2vA2qI,37513
|
|
259
|
+
Cython/Tests/TestCodeWriter.py,sha256=_LonlPtsfkTLZBEQXMk8rOyJVvq417uzf01ha5alwGE,3783
|
|
260
|
+
Cython/Tests/TestCythonUtils.py,sha256=VnOT9GxbE3uxEOVYms8UKFRy2w0IUEinQay8BZ6VQ8k,6691
|
|
261
|
+
Cython/Tests/TestJediTyper.py,sha256=hroG-mBTs3HzIXCnZTDJuXDSUbVGrorIQGShONTqpxU,6780
|
|
262
|
+
Cython/Tests/TestShadow.py,sha256=ZLFhltcbcfc2olENzz1ARHOcGX9D4p9Y9nbwPM-C0BA,5107
|
|
263
|
+
Cython/Tests/TestStringIOTree.py,sha256=vTuu3z32WTcmJaf0fBq62NMghYtaPL2rRnfdl2WM--4,1946
|
|
264
|
+
Cython/Tests/TestTestUtils.py,sha256=w4SVcZ8G9Brr_2XGkoQl1EkWR8_sI9LPDAw2cCRQ13U,2901
|
|
265
|
+
Cython/Tests/__init__.py,sha256=jOqtmPLCvMCq0xVMwGekuLpBmVgq0xtPFmUePySdOjs,13
|
|
266
|
+
Cython/Tests/xmlrunner.py,sha256=1X79TBIYWOcZIzoylOSu9zULxVIR4xvq-RZ7f8Fn600,14612
|
|
267
|
+
Cython/Utility/AsyncGen.c,sha256=Fzu-AfAJ6O3i2ckvPBVYfsSWKkyOLetx8zuDzidFznI,31684
|
|
268
|
+
Cython/Utility/Buffer.c,sha256=f9gwBtLNgOTB8xdxSo007catDNr_QFVpiveikcfvphw,28411
|
|
269
|
+
Cython/Utility/BufferFormatFromTypeInfo.pxd,sha256=KoGGKw7rW8Utav9xrwVZpsLX-vlpFe3Xv0hmp45PimM,97
|
|
270
|
+
Cython/Utility/Builtins.c,sha256=r22JiNksu9dDD00-Sd5VJ2HHOlT2XWY53NYBR71MHcU,25313
|
|
271
|
+
Cython/Utility/CConvert.pyx,sha256=ihyFxzcoLco0YFscuvJvs1rZsSNRRwNwgq4xO-QB9nU,4461
|
|
272
|
+
Cython/Utility/CMath.c,sha256=rP6O5u23EybDGimRCHfy8WTpyxhPu5G1F6ksEmrgKnQ,3044
|
|
273
|
+
Cython/Utility/CommonStructures.c,sha256=pMVUz2JuR_kUaBWskMZGkutkHU8XK0Q9XfEHkfiyKqw,4045
|
|
274
|
+
Cython/Utility/Complex.c,sha256=nxxtxZk74ykGPoVhkHtYAnITLWLKYNHBSs8NEEmRf38,14033
|
|
275
|
+
Cython/Utility/Coroutine.c,sha256=gl9p3glWxKZ6nzbEjo2LNW0h7Uu1WL1_HGJjgmfRl_c,81519
|
|
276
|
+
Cython/Utility/CpdefEnums.pyx,sha256=TMXyfhDeip3zqatMgNEQTQiss41nnp-PzFGn78tgBAs,3531
|
|
277
|
+
Cython/Utility/CppConvert.pyx,sha256=pukqrZaFb8F1mfOVuIJpqPEw_hu8Y7qISXc7vjDQZO0,7188
|
|
278
|
+
Cython/Utility/CppSupport.cpp,sha256=sO-il65RFdwFefYWz_ni6bMlPgh6oHiJ5xQKM0rMDdE,5246
|
|
279
|
+
Cython/Utility/CythonFunction.c,sha256=Ln8iWClivXreUAgrx2MG_1ulDLTCg-0-3kC9P3VaD2g,61359
|
|
280
|
+
Cython/Utility/Dataclasses.c,sha256=FMxUtZ6qd3eAHQn52Xm_-ZqVzeO3CqCtdT6O2yEocUw,7255
|
|
281
|
+
Cython/Utility/Dataclasses.py,sha256=b-VYpKAIz1I5LLO3jQOBV6EzZ6UgCdMDpnIBCsGymmI,4051
|
|
282
|
+
Cython/Utility/Embed.c,sha256=NFI70-JU8I1IEv2iN7fYSMrp29Wc8FgeHXr5KYp_zOA,3462
|
|
283
|
+
Cython/Utility/Exceptions.c,sha256=RIv5jcjqz-k4Cq1jFnIEOTw334yKEzUTK1lLDDKr5Hg,35213
|
|
284
|
+
Cython/Utility/ExtensionTypes.c,sha256=rQMkWwkOM-Zx--_TDzB8VGaTsiZhwF_WfdphewnNLjM,30745
|
|
285
|
+
Cython/Utility/FunctionArguments.c,sha256=wYTKXmAwXR6RRXzccrJ4Tm5u7n2BRBEG04vxcwmJJls,31687
|
|
286
|
+
Cython/Utility/ImportExport.c,sha256=1vdwzpRjpu3FyoHGBn2GyzlkRQgfjpIZ7Lg-crCmYh8,32117
|
|
287
|
+
Cython/Utility/Lock.c,sha256=kx_mgBPW7_gvICyNRMk6R1vypsDER2PXh7hnGy2rlrU,6134
|
|
288
|
+
Cython/Utility/MemoryView.pxd,sha256=CYjBEoANz8fqxBwSLYtoZNbkTTVeuyxnduYE_GpL8f8,7097
|
|
289
|
+
Cython/Utility/MemoryView.pyx,sha256=swWfnptiKalOQAxLFhFppRRwATr9CaNLZq8rIfgtGRM,49817
|
|
290
|
+
Cython/Utility/MemoryView_C.c,sha256=I94fBPPJAtMyg7FIlJMnPvSzC2U58TndxQeNEpHFeIE,36172
|
|
291
|
+
Cython/Utility/ModuleSetupCode.c,sha256=zPlKad2VrL-_XTorKE_KTsZP_vZjEUSiAp1fAeCkWVE,111870
|
|
292
|
+
Cython/Utility/NumpyImportArray.c,sha256=Gwo493DF8JxUxhTTjJYIdyHHJ9TEwFKqDmKsdk_uPyw,2033
|
|
293
|
+
Cython/Utility/ObjectHandling.c,sha256=H5OVJ4TbxGHN2W3Rg0vVZkH8ClvcIY5e4vf3IBO75Zg,119439
|
|
294
|
+
Cython/Utility/Optimize.c,sha256=7vcn9_V9wcjsUleKCJga3RDPGbbXQfQXdral6sLpFOI,59399
|
|
295
|
+
Cython/Utility/Overflow.c,sha256=meqqnt-CVCOVALAjsRUVU9R_maJFAOdaXCnIZ83T_uE,15873
|
|
296
|
+
Cython/Utility/Printing.c,sha256=h3F9eyCXSs284Y8DZRivKtoAOcx5jIYPeNFOSD59foc,2898
|
|
297
|
+
Cython/Utility/Profile.c,sha256=8eTErzE63uD17r1UuDvnalAnbqIoqzFjHdD4I-Akz1M,39940
|
|
298
|
+
Cython/Utility/StringTools.c,sha256=i7cwCNKUfIleQ_qLqQqqAIwFemK9nDWtXnWUQGWplhg,44883
|
|
299
|
+
Cython/Utility/TestCyUtilityLoader.pyx,sha256=91lWWJub7l_6xNn3ncrvQZZ94RpkQzEx2NtAaFpvrxY,152
|
|
300
|
+
Cython/Utility/TestCythonScope.pyx,sha256=mWowHlHIs22w6xC5KAc8kelf2f2n6bhLapyqgz0JMpc,1999
|
|
301
|
+
Cython/Utility/TestUtilityLoader.c,sha256=dGy6ZWL2kBqtmUY7kF75UEox5kadQZ__BmZKscwg2aY,279
|
|
302
|
+
Cython/Utility/TypeConversion.c,sha256=L96aDO33JgZ8M2tc8ml8H0nFBkuM4gSzEeBfEv8pTmY,48508
|
|
303
|
+
Cython/Utility/UFuncs.pyx,sha256=ZcCCNCMMfrtqsSCwN31jJ4CVOiveDyseDcpJPgAdhPk,2026
|
|
304
|
+
Cython/Utility/UFuncs_C.c,sha256=yf9apP9NQlDlBrljn6YXYpNrwb5ILjxUt96Wzz2a6LM,3203
|
|
305
|
+
Cython/Utility/__init__.py,sha256=QBJ9uZ80GHBZG-TJevWaVWgx6HobLwQkZzWog9U9rb0,1158
|
|
306
|
+
Cython/Utility/arrayarray.h,sha256=xAbEAlFLcDvkouK_I9X97X1yWRz7nYWgubFX9l95bj4,4233
|
|
307
|
+
pyximport/__init__.py,sha256=9hOyKolFtOerPiVEyktKrT1VtzbGexq9UmORzo52iHI,79
|
|
308
|
+
pyximport/pyxbuild.py,sha256=AsL1tyLxG61Mj7Ah-DxtDBuaXF94W2Tb6KTos7r0w8I,5702
|
|
309
|
+
pyximport/pyximport.py,sha256=BnXVwq1cwo1EYRjPU0J-RUDcwzGjUlzKWZOOMDNcu-s,18510
|
|
310
|
+
cython-3.1.0.dist-info/COPYING.txt,sha256=4escSahQjoFz2sMBV-SmQ5pErYhGGUdGxCT7w_wrldc,756
|
|
311
|
+
cython-3.1.0.dist-info/LICENSE.txt,sha256=lWiisVXmasPguh_YC1K4J7lGDmz28jMSXny8qOIG3cM,10174
|
|
312
|
+
cython-3.1.0.dist-info/METADATA,sha256=UxbNxGnWl_1qZUw01CWJJBeXriKGtzsfy9qTpB6ZStY,30631
|
|
313
|
+
cython-3.1.0.dist-info/WHEEL,sha256=iAkIy5fosb7FzIOwONchHf19Qu7_1wCWyFNR5gu9nU0,91
|
|
314
|
+
cython-3.1.0.dist-info/entry_points.txt,sha256=VU8NX8gnQyFbyqiWMzfh9BHvYMuoQRS3Nbm3kKcKQeY,139
|
|
315
|
+
cython-3.1.0.dist-info/top_level.txt,sha256=jLV8tZV98iCbIfiJR4DVzTX5Ru1Y_pYMZ59wkMCe6SY,24
|
|
316
|
+
cython-3.1.0.dist-info/RECORD,,
|
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
pyximport/pyxbuild.py
ADDED
|
@@ -0,0 +1,160 @@
|
|
|
1
|
+
"""Build a Pyrex file from .pyx source to .so loadable module using
|
|
2
|
+
the installed distutils infrastructure. Call:
|
|
3
|
+
|
|
4
|
+
out_fname = pyx_to_dll("foo.pyx")
|
|
5
|
+
"""
|
|
6
|
+
import os
|
|
7
|
+
import sys
|
|
8
|
+
|
|
9
|
+
from distutils.errors import DistutilsArgError, DistutilsError, CCompilerError
|
|
10
|
+
from distutils.extension import Extension
|
|
11
|
+
from distutils.util import grok_environment_error
|
|
12
|
+
try:
|
|
13
|
+
from Cython.Distutils.build_ext import build_ext
|
|
14
|
+
HAS_CYTHON = True
|
|
15
|
+
except ImportError:
|
|
16
|
+
HAS_CYTHON = False
|
|
17
|
+
|
|
18
|
+
DEBUG = 0
|
|
19
|
+
|
|
20
|
+
_reloads={}
|
|
21
|
+
|
|
22
|
+
|
|
23
|
+
def pyx_to_dll(filename, ext=None, force_rebuild=0, build_in_temp=False, pyxbuild_dir=None,
|
|
24
|
+
setup_args=None, reload_support=False, inplace=False):
|
|
25
|
+
"""Compile a PYX file to a DLL and return the name of the generated .so
|
|
26
|
+
or .dll ."""
|
|
27
|
+
assert os.path.exists(filename), "Could not find %s" % os.path.abspath(filename)
|
|
28
|
+
|
|
29
|
+
path, name = os.path.split(os.path.abspath(filename))
|
|
30
|
+
|
|
31
|
+
if not ext:
|
|
32
|
+
modname, extension = os.path.splitext(name)
|
|
33
|
+
assert extension in (".pyx", ".py"), extension
|
|
34
|
+
if not HAS_CYTHON:
|
|
35
|
+
filename = filename[:-len(extension)] + '.c'
|
|
36
|
+
ext = Extension(name=modname, sources=[filename])
|
|
37
|
+
|
|
38
|
+
if setup_args is None:
|
|
39
|
+
setup_args = {}
|
|
40
|
+
if not pyxbuild_dir:
|
|
41
|
+
pyxbuild_dir = os.path.join(path, "_pyxbld")
|
|
42
|
+
|
|
43
|
+
package_base_dir = path
|
|
44
|
+
for package_name in ext.name.split('.')[-2::-1]:
|
|
45
|
+
package_base_dir, pname = os.path.split(package_base_dir)
|
|
46
|
+
if pname != package_name:
|
|
47
|
+
# something is wrong - package path doesn't match file path
|
|
48
|
+
package_base_dir = None
|
|
49
|
+
break
|
|
50
|
+
|
|
51
|
+
script_args=setup_args.get("script_args",[])
|
|
52
|
+
if DEBUG or "--verbose" in script_args:
|
|
53
|
+
quiet = "--verbose"
|
|
54
|
+
else:
|
|
55
|
+
quiet = "--quiet"
|
|
56
|
+
if build_in_temp:
|
|
57
|
+
args = [quiet, "build_ext", '--cython-c-in-temp']
|
|
58
|
+
else:
|
|
59
|
+
args = [quiet, "build_ext"]
|
|
60
|
+
if force_rebuild:
|
|
61
|
+
args.append("--force")
|
|
62
|
+
if inplace and package_base_dir:
|
|
63
|
+
args.extend(['--build-lib', package_base_dir])
|
|
64
|
+
if ext.name == '__init__' or ext.name.endswith('.__init__'):
|
|
65
|
+
# package => provide __path__ early
|
|
66
|
+
if not hasattr(ext, 'cython_directives'):
|
|
67
|
+
ext.cython_directives = {'set_initial_path' : 'SOURCEFILE'}
|
|
68
|
+
elif 'set_initial_path' not in ext.cython_directives:
|
|
69
|
+
ext.cython_directives['set_initial_path'] = 'SOURCEFILE'
|
|
70
|
+
|
|
71
|
+
sargs = setup_args.copy()
|
|
72
|
+
sargs.update({
|
|
73
|
+
"script_name": None,
|
|
74
|
+
"script_args": args + script_args,
|
|
75
|
+
})
|
|
76
|
+
# late import, in case setuptools replaced it
|
|
77
|
+
from distutils.dist import Distribution
|
|
78
|
+
dist = Distribution(sargs)
|
|
79
|
+
if not dist.ext_modules:
|
|
80
|
+
dist.ext_modules = []
|
|
81
|
+
dist.ext_modules.append(ext)
|
|
82
|
+
if HAS_CYTHON:
|
|
83
|
+
dist.cmdclass = {'build_ext': build_ext}
|
|
84
|
+
build = dist.get_command_obj('build')
|
|
85
|
+
build.build_base = pyxbuild_dir
|
|
86
|
+
|
|
87
|
+
cfgfiles = dist.find_config_files()
|
|
88
|
+
dist.parse_config_files(cfgfiles)
|
|
89
|
+
|
|
90
|
+
try:
|
|
91
|
+
ok = dist.parse_command_line()
|
|
92
|
+
except DistutilsArgError:
|
|
93
|
+
raise
|
|
94
|
+
|
|
95
|
+
if DEBUG:
|
|
96
|
+
print("options (after parsing command line):")
|
|
97
|
+
dist.dump_option_dicts()
|
|
98
|
+
assert ok
|
|
99
|
+
|
|
100
|
+
|
|
101
|
+
try:
|
|
102
|
+
obj_build_ext = dist.get_command_obj("build_ext")
|
|
103
|
+
dist.run_commands()
|
|
104
|
+
so_path = obj_build_ext.get_outputs()[0]
|
|
105
|
+
if obj_build_ext.inplace:
|
|
106
|
+
# Python distutils get_outputs()[ returns a wrong so_path
|
|
107
|
+
# when --inplace ; see https://bugs.python.org/issue5977
|
|
108
|
+
# workaround:
|
|
109
|
+
so_path = os.path.join(os.path.dirname(filename),
|
|
110
|
+
os.path.basename(so_path))
|
|
111
|
+
if reload_support:
|
|
112
|
+
org_path = so_path
|
|
113
|
+
timestamp = os.path.getmtime(org_path)
|
|
114
|
+
global _reloads
|
|
115
|
+
last_timestamp, last_path, count = _reloads.get(org_path, (None,None,0) )
|
|
116
|
+
if last_timestamp == timestamp:
|
|
117
|
+
so_path = last_path
|
|
118
|
+
else:
|
|
119
|
+
basename = os.path.basename(org_path)
|
|
120
|
+
while count < 100:
|
|
121
|
+
count += 1
|
|
122
|
+
r_path = os.path.join(obj_build_ext.build_lib,
|
|
123
|
+
basename + '.reload%s' % count)
|
|
124
|
+
try:
|
|
125
|
+
import shutil # late import / reload_support is: debugging
|
|
126
|
+
try:
|
|
127
|
+
# Try to unlink first --- if the .so file
|
|
128
|
+
# is mmapped by another process,
|
|
129
|
+
# overwriting its contents corrupts the
|
|
130
|
+
# loaded image (on Linux) and crashes the
|
|
131
|
+
# other process. On Windows, unlinking an
|
|
132
|
+
# open file just fails.
|
|
133
|
+
if os.path.isfile(r_path):
|
|
134
|
+
os.unlink(r_path)
|
|
135
|
+
except OSError:
|
|
136
|
+
continue
|
|
137
|
+
shutil.copy2(org_path, r_path)
|
|
138
|
+
so_path = r_path
|
|
139
|
+
except IOError:
|
|
140
|
+
continue
|
|
141
|
+
break
|
|
142
|
+
else:
|
|
143
|
+
# used up all 100 slots
|
|
144
|
+
raise ImportError("reload count for %s reached maximum" % org_path)
|
|
145
|
+
_reloads[org_path]=(timestamp, so_path, count)
|
|
146
|
+
return so_path
|
|
147
|
+
except KeyboardInterrupt:
|
|
148
|
+
sys.exit(1)
|
|
149
|
+
except (IOError, os.error):
|
|
150
|
+
exc = sys.exc_info()[1]
|
|
151
|
+
error = grok_environment_error(exc)
|
|
152
|
+
|
|
153
|
+
if DEBUG:
|
|
154
|
+
sys.stderr.write(error + "\n")
|
|
155
|
+
raise
|
|
156
|
+
|
|
157
|
+
|
|
158
|
+
if __name__=="__main__":
|
|
159
|
+
pyx_to_dll("dummy.pyx")
|
|
160
|
+
from . import test
|