Cython 3.1.2__tar.gz → 3.1.4__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2540) hide show
  1. cython-3.1.4/.gitrev +1 -0
  2. {cython-3.1.2 → cython-3.1.4}/CHANGES.rst +75 -0
  3. {cython-3.1.2 → cython-3.1.4}/Cython/Build/Dependencies.py +5 -0
  4. {cython-3.1.2 → cython-3.1.4}/Cython/Compiler/ExprNodes.py +46 -24
  5. {cython-3.1.2 → cython-3.1.4}/Cython/Compiler/Lexicon.py +71 -63
  6. {cython-3.1.2 → cython-3.1.4}/Cython/Compiler/MemoryView.py +13 -8
  7. {cython-3.1.2 → cython-3.1.4}/Cython/Compiler/ModuleNode.py +1 -1
  8. {cython-3.1.2 → cython-3.1.4}/Cython/Compiler/Nodes.py +2 -10
  9. {cython-3.1.2 → cython-3.1.4}/Cython/Compiler/ParseTreeTransforms.pxd +1 -0
  10. {cython-3.1.2 → cython-3.1.4}/Cython/Compiler/ParseTreeTransforms.py +15 -1
  11. {cython-3.1.2 → cython-3.1.4}/Cython/Compiler/PyrexTypes.py +4 -6
  12. {cython-3.1.2 → cython-3.1.4}/Cython/Compiler/Scanning.py +5 -12
  13. {cython-3.1.2 → cython-3.1.4}/Cython/Compiler/StringEncoding.py +5 -3
  14. {cython-3.1.2 → cython-3.1.4}/Cython/Compiler/Symtab.py +4 -1
  15. {cython-3.1.2 → cython-3.1.4}/Cython/Compiler/TypeSlots.py +5 -9
  16. cython-3.1.4/Cython/Includes/cpython/ref.pxd +141 -0
  17. {cython-3.1.2 → cython-3.1.4}/Cython/Plex/Scanners.pxd +0 -1
  18. {cython-3.1.2 → cython-3.1.4}/Cython/Plex/Scanners.py +1 -0
  19. {cython-3.1.2 → cython-3.1.4}/Cython/Shadow.py +1 -1
  20. {cython-3.1.2 → cython-3.1.4}/Cython/Shadow.pyi +2 -2
  21. {cython-3.1.2 → cython-3.1.4}/Cython/Utility/Builtins.c +2 -2
  22. {cython-3.1.2 → cython-3.1.4}/Cython/Utility/CommonStructures.c +2 -1
  23. {cython-3.1.2 → cython-3.1.4}/Cython/Utility/CythonFunction.c +1 -1
  24. {cython-3.1.2 → cython-3.1.4}/Cython/Utility/Exceptions.c +1 -1
  25. {cython-3.1.2 → cython-3.1.4}/Cython/Utility/ExtensionTypes.c +5 -1
  26. {cython-3.1.2 → cython-3.1.4}/Cython/Utility/ImportExport.c +5 -3
  27. {cython-3.1.2 → cython-3.1.4}/Cython/Utility/MemoryView_C.c +0 -157
  28. {cython-3.1.2 → cython-3.1.4}/Cython/Utility/ModuleSetupCode.c +12 -39
  29. {cython-3.1.2 → cython-3.1.4}/Cython/Utility/ObjectHandling.c +25 -17
  30. {cython-3.1.2 → cython-3.1.4}/Cython/Utility/Optimize.c +34 -0
  31. {cython-3.1.2 → cython-3.1.4}/Cython/Utility/Profile.c +7 -7
  32. cython-3.1.4/Cython/Utility/Synchronization.c +355 -0
  33. {cython-3.1.2 → cython-3.1.4}/Demos/benchmarks/run_benchmarks.py +7 -6
  34. {cython-3.1.2 → cython-3.1.4}/PKG-INFO +27 -46
  35. {cython-3.1.2 → cython-3.1.4}/Tools/ci-run.sh +16 -22
  36. {cython-3.1.2 → cython-3.1.4}/Tools/cython-generate-lexicon.py +1 -0
  37. {cython-3.1.2 → cython-3.1.4}/docs/examples/tutorial/embedding/embedded_main.c +2 -3
  38. {cython-3.1.2 → cython-3.1.4}/docs/src/userguide/limited_api.rst +5 -5
  39. {cython-3.1.2 → cython-3.1.4}/docs/src/userguide/migrating_to_cy30.rst +23 -19
  40. {cython-3.1.2 → cython-3.1.4}/docs/src/userguide/source_files_and_compilation.rst +7 -0
  41. {cython-3.1.2 → cython-3.1.4}/runtests.py +6 -5
  42. cython-3.1.4/test-requirements-cpython.txt +3 -0
  43. cython-3.1.2/test-requirements-312.txt → cython-3.1.4/test-requirements.txt +1 -1
  44. cython-3.1.4/tests/errors/w_lock_type.pyx +29 -0
  45. {cython-3.1.2 → cython-3.1.4}/tests/limited_api_bugs.txt +2 -1
  46. {cython-3.1.2 → cython-3.1.4}/tests/pypy_bugs.txt +0 -3
  47. cython-3.1.4/tests/run/api_class.srctree +55 -0
  48. {cython-3.1.2 → cython-3.1.4}/tests/run/extra_walrus.py +28 -0
  49. cython-3.1.4/tests/run/exttype_dealloc_pxd.srctree +53 -0
  50. {cython-3.1.2 → cython-3.1.4}/tests/run/pyintop.pyx +236 -0
  51. {cython-3.1.2 → cython-3.1.4}/tests/run/strliterals.pyx +6 -0
  52. {cython-3.1.2 → cython-3.1.4}/tests/run/sys_monitoring.py +14 -0
  53. {cython-3.1.2 → cython-3.1.4}/tests/run/unicode_ascii_auto_encoding.pyx +42 -0
  54. cython-3.1.2/.gitrev +0 -1
  55. cython-3.1.2/Cython/Includes/cpython/ref.pxd +0 -67
  56. cython-3.1.2/Cython/Utility/Lock.c +0 -136
  57. cython-3.1.2/test-requirements-cpython.txt +0 -4
  58. cython-3.1.2/test-requirements.txt +0 -4
  59. cython-3.1.2/tests/errors/w_lock_type.pyx +0 -14
  60. {cython-3.1.2 → cython-3.1.4}/COPYING.txt +0 -0
  61. {cython-3.1.2 → cython-3.1.4}/Cython/Build/BuildExecutable.py +0 -0
  62. {cython-3.1.2 → cython-3.1.4}/Cython/Build/Cache.py +0 -0
  63. {cython-3.1.2 → cython-3.1.4}/Cython/Build/Cythonize.py +0 -0
  64. {cython-3.1.2 → cython-3.1.4}/Cython/Build/Distutils.py +0 -0
  65. {cython-3.1.2 → cython-3.1.4}/Cython/Build/Inline.py +0 -0
  66. {cython-3.1.2 → cython-3.1.4}/Cython/Build/IpythonMagic.py +0 -0
  67. {cython-3.1.2 → cython-3.1.4}/Cython/Build/SharedModule.py +0 -0
  68. {cython-3.1.2 → cython-3.1.4}/Cython/Build/Tests/TestCyCache.py +0 -0
  69. {cython-3.1.2 → cython-3.1.4}/Cython/Build/Tests/TestCythonizeArgsParser.py +0 -0
  70. {cython-3.1.2 → cython-3.1.4}/Cython/Build/Tests/TestDependencies.py +0 -0
  71. {cython-3.1.2 → cython-3.1.4}/Cython/Build/Tests/TestInline.py +0 -0
  72. {cython-3.1.2 → cython-3.1.4}/Cython/Build/Tests/TestIpythonMagic.py +0 -0
  73. {cython-3.1.2 → cython-3.1.4}/Cython/Build/Tests/TestRecythonize.py +0 -0
  74. {cython-3.1.2 → cython-3.1.4}/Cython/Build/Tests/TestStripLiterals.py +0 -0
  75. {cython-3.1.2 → cython-3.1.4}/Cython/Build/Tests/__init__.py +0 -0
  76. {cython-3.1.2 → cython-3.1.4}/Cython/Build/__init__.py +0 -0
  77. {cython-3.1.2 → cython-3.1.4}/Cython/CodeWriter.py +0 -0
  78. {cython-3.1.2 → cython-3.1.4}/Cython/Compiler/AnalysedTreeTransforms.py +0 -0
  79. {cython-3.1.2 → cython-3.1.4}/Cython/Compiler/Annotate.py +0 -0
  80. {cython-3.1.2 → cython-3.1.4}/Cython/Compiler/AutoDocTransforms.py +0 -0
  81. {cython-3.1.2 → cython-3.1.4}/Cython/Compiler/Buffer.py +0 -0
  82. {cython-3.1.2 → cython-3.1.4}/Cython/Compiler/Builtin.py +0 -0
  83. {cython-3.1.2 → cython-3.1.4}/Cython/Compiler/CmdLine.py +0 -0
  84. {cython-3.1.2 → cython-3.1.4}/Cython/Compiler/Code.pxd +0 -0
  85. {cython-3.1.2 → cython-3.1.4}/Cython/Compiler/Code.py +0 -0
  86. {cython-3.1.2 → cython-3.1.4}/Cython/Compiler/CodeGeneration.py +0 -0
  87. {cython-3.1.2 → cython-3.1.4}/Cython/Compiler/CythonScope.py +0 -0
  88. {cython-3.1.2 → cython-3.1.4}/Cython/Compiler/Dataclass.py +0 -0
  89. {cython-3.1.2 → cython-3.1.4}/Cython/Compiler/DebugFlags.py +0 -0
  90. {cython-3.1.2 → cython-3.1.4}/Cython/Compiler/Errors.py +0 -0
  91. {cython-3.1.2 → cython-3.1.4}/Cython/Compiler/FlowControl.pxd +0 -0
  92. {cython-3.1.2 → cython-3.1.4}/Cython/Compiler/FlowControl.py +0 -0
  93. {cython-3.1.2 → cython-3.1.4}/Cython/Compiler/FusedNode.py +0 -0
  94. {cython-3.1.2 → cython-3.1.4}/Cython/Compiler/Future.py +0 -0
  95. {cython-3.1.2 → cython-3.1.4}/Cython/Compiler/Interpreter.py +0 -0
  96. {cython-3.1.2 → cython-3.1.4}/Cython/Compiler/LineTable.py +0 -0
  97. {cython-3.1.2 → cython-3.1.4}/Cython/Compiler/Main.py +0 -0
  98. {cython-3.1.2 → cython-3.1.4}/Cython/Compiler/MatchCaseNodes.py +0 -0
  99. {cython-3.1.2 → cython-3.1.4}/Cython/Compiler/Naming.py +0 -0
  100. {cython-3.1.2 → cython-3.1.4}/Cython/Compiler/Optimize.py +0 -0
  101. {cython-3.1.2 → cython-3.1.4}/Cython/Compiler/Options.py +0 -0
  102. {cython-3.1.2 → cython-3.1.4}/Cython/Compiler/Parsing.pxd +0 -0
  103. {cython-3.1.2 → cython-3.1.4}/Cython/Compiler/Parsing.py +0 -0
  104. {cython-3.1.2 → cython-3.1.4}/Cython/Compiler/Pipeline.py +0 -0
  105. {cython-3.1.2 → cython-3.1.4}/Cython/Compiler/Pythran.py +0 -0
  106. {cython-3.1.2 → cython-3.1.4}/Cython/Compiler/Scanning.pxd +0 -0
  107. {cython-3.1.2 → cython-3.1.4}/Cython/Compiler/Tests/TestBuffer.py +0 -0
  108. {cython-3.1.2 → cython-3.1.4}/Cython/Compiler/Tests/TestBuiltin.py +0 -0
  109. {cython-3.1.2 → cython-3.1.4}/Cython/Compiler/Tests/TestCmdLine.py +0 -0
  110. {cython-3.1.2 → cython-3.1.4}/Cython/Compiler/Tests/TestCode.py +0 -0
  111. {cython-3.1.2 → cython-3.1.4}/Cython/Compiler/Tests/TestFlowControl.py +0 -0
  112. {cython-3.1.2 → cython-3.1.4}/Cython/Compiler/Tests/TestGrammar.py +0 -0
  113. {cython-3.1.2 → cython-3.1.4}/Cython/Compiler/Tests/TestMemView.py +0 -0
  114. {cython-3.1.2 → cython-3.1.4}/Cython/Compiler/Tests/TestParseTreeTransforms.py +0 -0
  115. {cython-3.1.2 → cython-3.1.4}/Cython/Compiler/Tests/TestScanning.py +0 -0
  116. {cython-3.1.2 → cython-3.1.4}/Cython/Compiler/Tests/TestSignatureMatching.py +0 -0
  117. {cython-3.1.2 → cython-3.1.4}/Cython/Compiler/Tests/TestStringEncoding.py +0 -0
  118. {cython-3.1.2 → cython-3.1.4}/Cython/Compiler/Tests/TestTreeFragment.py +0 -0
  119. {cython-3.1.2 → cython-3.1.4}/Cython/Compiler/Tests/TestTreePath.py +0 -0
  120. {cython-3.1.2 → cython-3.1.4}/Cython/Compiler/Tests/TestTypes.py +0 -0
  121. {cython-3.1.2 → cython-3.1.4}/Cython/Compiler/Tests/TestUtilityLoad.py +0 -0
  122. {cython-3.1.2 → cython-3.1.4}/Cython/Compiler/Tests/TestVisitor.py +0 -0
  123. {cython-3.1.2 → cython-3.1.4}/Cython/Compiler/Tests/Utils.py +0 -0
  124. {cython-3.1.2 → cython-3.1.4}/Cython/Compiler/Tests/__init__.py +0 -0
  125. {cython-3.1.2 → cython-3.1.4}/Cython/Compiler/TreeFragment.py +0 -0
  126. {cython-3.1.2 → cython-3.1.4}/Cython/Compiler/TreePath.py +0 -0
  127. {cython-3.1.2 → cython-3.1.4}/Cython/Compiler/TypeInference.py +0 -0
  128. {cython-3.1.2 → cython-3.1.4}/Cython/Compiler/UFuncs.py +0 -0
  129. {cython-3.1.2 → cython-3.1.4}/Cython/Compiler/UtilNodes.py +0 -0
  130. {cython-3.1.2 → cython-3.1.4}/Cython/Compiler/UtilityCode.py +0 -0
  131. {cython-3.1.2 → cython-3.1.4}/Cython/Compiler/Version.py +0 -0
  132. {cython-3.1.2 → cython-3.1.4}/Cython/Compiler/Visitor.pxd +0 -0
  133. {cython-3.1.2 → cython-3.1.4}/Cython/Compiler/Visitor.py +0 -0
  134. {cython-3.1.2 → cython-3.1.4}/Cython/Compiler/__init__.py +0 -0
  135. {cython-3.1.2 → cython-3.1.4}/Cython/Coverage.py +0 -0
  136. {cython-3.1.2 → cython-3.1.4}/Cython/Debugger/Cygdb.py +0 -0
  137. {cython-3.1.2 → cython-3.1.4}/Cython/Debugger/DebugWriter.py +0 -0
  138. {cython-3.1.2 → cython-3.1.4}/Cython/Debugger/Tests/TestLibCython.py +0 -0
  139. {cython-3.1.2 → cython-3.1.4}/Cython/Debugger/Tests/__init__.py +0 -0
  140. {cython-3.1.2 → cython-3.1.4}/Cython/Debugger/Tests/cfuncs.c +0 -0
  141. {cython-3.1.2 → cython-3.1.4}/Cython/Debugger/Tests/cfuncs.h +0 -0
  142. {cython-3.1.2 → cython-3.1.4}/Cython/Debugger/Tests/codefile +0 -0
  143. {cython-3.1.2 → cython-3.1.4}/Cython/Debugger/Tests/test_libcython_in_gdb.py +0 -0
  144. {cython-3.1.2 → cython-3.1.4}/Cython/Debugger/Tests/test_libpython_in_gdb.py +0 -0
  145. {cython-3.1.2 → cython-3.1.4}/Cython/Debugger/__init__.py +0 -0
  146. {cython-3.1.2 → cython-3.1.4}/Cython/Debugger/libcython.py +0 -0
  147. {cython-3.1.2 → cython-3.1.4}/Cython/Debugger/libpython.py +0 -0
  148. {cython-3.1.2 → cython-3.1.4}/Cython/Debugging.py +0 -0
  149. {cython-3.1.2 → cython-3.1.4}/Cython/Distutils/__init__.py +0 -0
  150. {cython-3.1.2 → cython-3.1.4}/Cython/Distutils/build_ext.py +0 -0
  151. {cython-3.1.2 → cython-3.1.4}/Cython/Distutils/extension.py +0 -0
  152. {cython-3.1.2 → cython-3.1.4}/Cython/Distutils/old_build_ext.py +0 -0
  153. {cython-3.1.2 → cython-3.1.4}/Cython/Includes/cpython/__init__.pxd +0 -0
  154. {cython-3.1.2 → cython-3.1.4}/Cython/Includes/cpython/array.pxd +0 -0
  155. {cython-3.1.2 → cython-3.1.4}/Cython/Includes/cpython/bool.pxd +0 -0
  156. {cython-3.1.2 → cython-3.1.4}/Cython/Includes/cpython/buffer.pxd +0 -0
  157. {cython-3.1.2 → cython-3.1.4}/Cython/Includes/cpython/bytearray.pxd +0 -0
  158. {cython-3.1.2 → cython-3.1.4}/Cython/Includes/cpython/bytes.pxd +0 -0
  159. {cython-3.1.2 → cython-3.1.4}/Cython/Includes/cpython/cellobject.pxd +0 -0
  160. {cython-3.1.2 → cython-3.1.4}/Cython/Includes/cpython/ceval.pxd +0 -0
  161. {cython-3.1.2 → cython-3.1.4}/Cython/Includes/cpython/codecs.pxd +0 -0
  162. {cython-3.1.2 → cython-3.1.4}/Cython/Includes/cpython/complex.pxd +0 -0
  163. {cython-3.1.2 → cython-3.1.4}/Cython/Includes/cpython/contextvars.pxd +0 -0
  164. {cython-3.1.2 → cython-3.1.4}/Cython/Includes/cpython/conversion.pxd +0 -0
  165. {cython-3.1.2 → cython-3.1.4}/Cython/Includes/cpython/datetime.pxd +0 -0
  166. {cython-3.1.2 → cython-3.1.4}/Cython/Includes/cpython/descr.pxd +0 -0
  167. {cython-3.1.2 → cython-3.1.4}/Cython/Includes/cpython/dict.pxd +0 -0
  168. {cython-3.1.2 → cython-3.1.4}/Cython/Includes/cpython/exc.pxd +0 -0
  169. {cython-3.1.2 → cython-3.1.4}/Cython/Includes/cpython/fileobject.pxd +0 -0
  170. {cython-3.1.2 → cython-3.1.4}/Cython/Includes/cpython/float.pxd +0 -0
  171. {cython-3.1.2 → cython-3.1.4}/Cython/Includes/cpython/function.pxd +0 -0
  172. {cython-3.1.2 → cython-3.1.4}/Cython/Includes/cpython/genobject.pxd +0 -0
  173. {cython-3.1.2 → cython-3.1.4}/Cython/Includes/cpython/getargs.pxd +0 -0
  174. {cython-3.1.2 → cython-3.1.4}/Cython/Includes/cpython/instance.pxd +0 -0
  175. {cython-3.1.2 → cython-3.1.4}/Cython/Includes/cpython/iterator.pxd +0 -0
  176. {cython-3.1.2 → cython-3.1.4}/Cython/Includes/cpython/iterobject.pxd +0 -0
  177. {cython-3.1.2 → cython-3.1.4}/Cython/Includes/cpython/list.pxd +0 -0
  178. {cython-3.1.2 → cython-3.1.4}/Cython/Includes/cpython/long.pxd +0 -0
  179. {cython-3.1.2 → cython-3.1.4}/Cython/Includes/cpython/longintrepr.pxd +0 -0
  180. {cython-3.1.2 → cython-3.1.4}/Cython/Includes/cpython/mapping.pxd +0 -0
  181. {cython-3.1.2 → cython-3.1.4}/Cython/Includes/cpython/marshal.pxd +0 -0
  182. {cython-3.1.2 → cython-3.1.4}/Cython/Includes/cpython/mem.pxd +0 -0
  183. {cython-3.1.2 → cython-3.1.4}/Cython/Includes/cpython/memoryview.pxd +0 -0
  184. {cython-3.1.2 → cython-3.1.4}/Cython/Includes/cpython/method.pxd +0 -0
  185. {cython-3.1.2 → cython-3.1.4}/Cython/Includes/cpython/module.pxd +0 -0
  186. {cython-3.1.2 → cython-3.1.4}/Cython/Includes/cpython/number.pxd +0 -0
  187. {cython-3.1.2 → cython-3.1.4}/Cython/Includes/cpython/object.pxd +0 -0
  188. {cython-3.1.2 → cython-3.1.4}/Cython/Includes/cpython/pycapsule.pxd +0 -0
  189. {cython-3.1.2 → cython-3.1.4}/Cython/Includes/cpython/pylifecycle.pxd +0 -0
  190. {cython-3.1.2 → cython-3.1.4}/Cython/Includes/cpython/pyport.pxd +0 -0
  191. {cython-3.1.2 → cython-3.1.4}/Cython/Includes/cpython/pystate.pxd +0 -0
  192. {cython-3.1.2 → cython-3.1.4}/Cython/Includes/cpython/pythread.pxd +0 -0
  193. {cython-3.1.2 → cython-3.1.4}/Cython/Includes/cpython/sequence.pxd +0 -0
  194. {cython-3.1.2 → cython-3.1.4}/Cython/Includes/cpython/set.pxd +0 -0
  195. {cython-3.1.2 → cython-3.1.4}/Cython/Includes/cpython/slice.pxd +0 -0
  196. {cython-3.1.2 → cython-3.1.4}/Cython/Includes/cpython/time.pxd +0 -0
  197. {cython-3.1.2 → cython-3.1.4}/Cython/Includes/cpython/tuple.pxd +0 -0
  198. {cython-3.1.2 → cython-3.1.4}/Cython/Includes/cpython/type.pxd +0 -0
  199. {cython-3.1.2 → cython-3.1.4}/Cython/Includes/cpython/unicode.pxd +0 -0
  200. {cython-3.1.2 → cython-3.1.4}/Cython/Includes/cpython/version.pxd +0 -0
  201. {cython-3.1.2 → cython-3.1.4}/Cython/Includes/cpython/weakref.pxd +0 -0
  202. {cython-3.1.2 → cython-3.1.4}/Cython/Includes/libc/__init__.pxd +0 -0
  203. {cython-3.1.2 → cython-3.1.4}/Cython/Includes/libc/complex.pxd +0 -0
  204. {cython-3.1.2 → cython-3.1.4}/Cython/Includes/libc/errno.pxd +0 -0
  205. {cython-3.1.2 → cython-3.1.4}/Cython/Includes/libc/float.pxd +0 -0
  206. {cython-3.1.2 → cython-3.1.4}/Cython/Includes/libc/limits.pxd +0 -0
  207. {cython-3.1.2 → cython-3.1.4}/Cython/Includes/libc/locale.pxd +0 -0
  208. {cython-3.1.2 → cython-3.1.4}/Cython/Includes/libc/math.pxd +0 -0
  209. {cython-3.1.2 → cython-3.1.4}/Cython/Includes/libc/setjmp.pxd +0 -0
  210. {cython-3.1.2 → cython-3.1.4}/Cython/Includes/libc/signal.pxd +0 -0
  211. {cython-3.1.2 → cython-3.1.4}/Cython/Includes/libc/stddef.pxd +0 -0
  212. {cython-3.1.2 → cython-3.1.4}/Cython/Includes/libc/stdint.pxd +0 -0
  213. {cython-3.1.2 → cython-3.1.4}/Cython/Includes/libc/stdio.pxd +0 -0
  214. {cython-3.1.2 → cython-3.1.4}/Cython/Includes/libc/stdlib.pxd +0 -0
  215. {cython-3.1.2 → cython-3.1.4}/Cython/Includes/libc/string.pxd +0 -0
  216. {cython-3.1.2 → cython-3.1.4}/Cython/Includes/libc/threads.pxd +0 -0
  217. {cython-3.1.2 → cython-3.1.4}/Cython/Includes/libc/time.pxd +0 -0
  218. {cython-3.1.2 → cython-3.1.4}/Cython/Includes/libcpp/__init__.pxd +0 -0
  219. {cython-3.1.2 → cython-3.1.4}/Cython/Includes/libcpp/algorithm.pxd +0 -0
  220. {cython-3.1.2 → cython-3.1.4}/Cython/Includes/libcpp/any.pxd +0 -0
  221. {cython-3.1.2 → cython-3.1.4}/Cython/Includes/libcpp/atomic.pxd +0 -0
  222. {cython-3.1.2 → cython-3.1.4}/Cython/Includes/libcpp/barrier.pxd +0 -0
  223. {cython-3.1.2 → cython-3.1.4}/Cython/Includes/libcpp/bit.pxd +0 -0
  224. {cython-3.1.2 → cython-3.1.4}/Cython/Includes/libcpp/cast.pxd +0 -0
  225. {cython-3.1.2 → cython-3.1.4}/Cython/Includes/libcpp/cmath.pxd +0 -0
  226. {cython-3.1.2 → cython-3.1.4}/Cython/Includes/libcpp/complex.pxd +0 -0
  227. {cython-3.1.2 → cython-3.1.4}/Cython/Includes/libcpp/deque.pxd +0 -0
  228. {cython-3.1.2 → cython-3.1.4}/Cython/Includes/libcpp/exception.pxd +0 -0
  229. {cython-3.1.2 → cython-3.1.4}/Cython/Includes/libcpp/execution.pxd +0 -0
  230. {cython-3.1.2 → cython-3.1.4}/Cython/Includes/libcpp/forward_list.pxd +0 -0
  231. {cython-3.1.2 → cython-3.1.4}/Cython/Includes/libcpp/functional.pxd +0 -0
  232. {cython-3.1.2 → cython-3.1.4}/Cython/Includes/libcpp/future.pxd +0 -0
  233. {cython-3.1.2 → cython-3.1.4}/Cython/Includes/libcpp/iterator.pxd +0 -0
  234. {cython-3.1.2 → cython-3.1.4}/Cython/Includes/libcpp/latch.pxd +0 -0
  235. {cython-3.1.2 → cython-3.1.4}/Cython/Includes/libcpp/limits.pxd +0 -0
  236. {cython-3.1.2 → cython-3.1.4}/Cython/Includes/libcpp/list.pxd +0 -0
  237. {cython-3.1.2 → cython-3.1.4}/Cython/Includes/libcpp/map.pxd +0 -0
  238. {cython-3.1.2 → cython-3.1.4}/Cython/Includes/libcpp/memory.pxd +0 -0
  239. {cython-3.1.2 → cython-3.1.4}/Cython/Includes/libcpp/mutex.pxd +0 -0
  240. {cython-3.1.2 → cython-3.1.4}/Cython/Includes/libcpp/numbers.pxd +0 -0
  241. {cython-3.1.2 → cython-3.1.4}/Cython/Includes/libcpp/numeric.pxd +0 -0
  242. {cython-3.1.2 → cython-3.1.4}/Cython/Includes/libcpp/optional.pxd +0 -0
  243. {cython-3.1.2 → cython-3.1.4}/Cython/Includes/libcpp/pair.pxd +0 -0
  244. {cython-3.1.2 → cython-3.1.4}/Cython/Includes/libcpp/queue.pxd +0 -0
  245. {cython-3.1.2 → cython-3.1.4}/Cython/Includes/libcpp/random.pxd +0 -0
  246. {cython-3.1.2 → cython-3.1.4}/Cython/Includes/libcpp/semaphore.pxd +0 -0
  247. {cython-3.1.2 → cython-3.1.4}/Cython/Includes/libcpp/set.pxd +0 -0
  248. {cython-3.1.2 → cython-3.1.4}/Cython/Includes/libcpp/shared_mutex.pxd +0 -0
  249. {cython-3.1.2 → cython-3.1.4}/Cython/Includes/libcpp/span.pxd +0 -0
  250. {cython-3.1.2 → cython-3.1.4}/Cython/Includes/libcpp/stack.pxd +0 -0
  251. {cython-3.1.2 → cython-3.1.4}/Cython/Includes/libcpp/stop_token.pxd +0 -0
  252. {cython-3.1.2 → cython-3.1.4}/Cython/Includes/libcpp/string.pxd +0 -0
  253. {cython-3.1.2 → cython-3.1.4}/Cython/Includes/libcpp/string_view.pxd +0 -0
  254. {cython-3.1.2 → cython-3.1.4}/Cython/Includes/libcpp/typeindex.pxd +0 -0
  255. {cython-3.1.2 → cython-3.1.4}/Cython/Includes/libcpp/typeinfo.pxd +0 -0
  256. {cython-3.1.2 → cython-3.1.4}/Cython/Includes/libcpp/unordered_map.pxd +0 -0
  257. {cython-3.1.2 → cython-3.1.4}/Cython/Includes/libcpp/unordered_set.pxd +0 -0
  258. {cython-3.1.2 → cython-3.1.4}/Cython/Includes/libcpp/utility.pxd +0 -0
  259. {cython-3.1.2 → cython-3.1.4}/Cython/Includes/libcpp/vector.pxd +0 -0
  260. {cython-3.1.2 → cython-3.1.4}/Cython/Includes/numpy/math.pxd +0 -0
  261. {cython-3.1.2 → cython-3.1.4}/Cython/Includes/openmp.pxd +0 -0
  262. {cython-3.1.2 → cython-3.1.4}/Cython/Includes/posix/__init__.pxd +0 -0
  263. {cython-3.1.2 → cython-3.1.4}/Cython/Includes/posix/dlfcn.pxd +0 -0
  264. {cython-3.1.2 → cython-3.1.4}/Cython/Includes/posix/fcntl.pxd +0 -0
  265. {cython-3.1.2 → cython-3.1.4}/Cython/Includes/posix/ioctl.pxd +0 -0
  266. {cython-3.1.2 → cython-3.1.4}/Cython/Includes/posix/mman.pxd +0 -0
  267. {cython-3.1.2 → cython-3.1.4}/Cython/Includes/posix/resource.pxd +0 -0
  268. {cython-3.1.2 → cython-3.1.4}/Cython/Includes/posix/select.pxd +0 -0
  269. {cython-3.1.2 → cython-3.1.4}/Cython/Includes/posix/signal.pxd +0 -0
  270. {cython-3.1.2 → cython-3.1.4}/Cython/Includes/posix/stat.pxd +0 -0
  271. {cython-3.1.2 → cython-3.1.4}/Cython/Includes/posix/stdio.pxd +0 -0
  272. {cython-3.1.2 → cython-3.1.4}/Cython/Includes/posix/stdlib.pxd +0 -0
  273. {cython-3.1.2 → cython-3.1.4}/Cython/Includes/posix/strings.pxd +0 -0
  274. {cython-3.1.2 → cython-3.1.4}/Cython/Includes/posix/time.pxd +0 -0
  275. {cython-3.1.2 → cython-3.1.4}/Cython/Includes/posix/types.pxd +0 -0
  276. {cython-3.1.2 → cython-3.1.4}/Cython/Includes/posix/uio.pxd +0 -0
  277. {cython-3.1.2 → cython-3.1.4}/Cython/Includes/posix/unistd.pxd +0 -0
  278. {cython-3.1.2 → cython-3.1.4}/Cython/Includes/posix/wait.pxd +0 -0
  279. {cython-3.1.2 → cython-3.1.4}/Cython/Parser/ConcreteSyntaxTree.pyx +0 -0
  280. {cython-3.1.2 → cython-3.1.4}/Cython/Parser/Grammar +0 -0
  281. {cython-3.1.2 → cython-3.1.4}/Cython/Parser/__init__.py +0 -0
  282. {cython-3.1.2 → cython-3.1.4}/Cython/Plex/Actions.pxd +0 -0
  283. {cython-3.1.2 → cython-3.1.4}/Cython/Plex/Actions.py +0 -0
  284. {cython-3.1.2 → cython-3.1.4}/Cython/Plex/DFA.pxd +0 -0
  285. {cython-3.1.2 → cython-3.1.4}/Cython/Plex/DFA.py +0 -0
  286. {cython-3.1.2 → cython-3.1.4}/Cython/Plex/Errors.py +0 -0
  287. {cython-3.1.2 → cython-3.1.4}/Cython/Plex/Lexicons.py +0 -0
  288. {cython-3.1.2 → cython-3.1.4}/Cython/Plex/Machines.pxd +0 -0
  289. {cython-3.1.2 → cython-3.1.4}/Cython/Plex/Machines.py +0 -0
  290. {cython-3.1.2 → cython-3.1.4}/Cython/Plex/Regexps.py +0 -0
  291. {cython-3.1.2 → cython-3.1.4}/Cython/Plex/Transitions.pxd +0 -0
  292. {cython-3.1.2 → cython-3.1.4}/Cython/Plex/Transitions.py +0 -0
  293. {cython-3.1.2 → cython-3.1.4}/Cython/Plex/__init__.py +0 -0
  294. {cython-3.1.2 → cython-3.1.4}/Cython/Runtime/__init__.py +0 -0
  295. {cython-3.1.2 → cython-3.1.4}/Cython/Runtime/refnanny.pyx +0 -0
  296. {cython-3.1.2 → cython-3.1.4}/Cython/StringIOTree.pxd +0 -0
  297. {cython-3.1.2 → cython-3.1.4}/Cython/StringIOTree.py +0 -0
  298. {cython-3.1.2 → cython-3.1.4}/Cython/Tempita/__init__.py +0 -0
  299. {cython-3.1.2 → cython-3.1.4}/Cython/Tempita/_looper.py +0 -0
  300. {cython-3.1.2 → cython-3.1.4}/Cython/Tempita/_tempita.py +0 -0
  301. {cython-3.1.2 → cython-3.1.4}/Cython/TestUtils.py +0 -0
  302. {cython-3.1.2 → cython-3.1.4}/Cython/Tests/TestCodeWriter.py +0 -0
  303. {cython-3.1.2 → cython-3.1.4}/Cython/Tests/TestCythonUtils.py +0 -0
  304. {cython-3.1.2 → cython-3.1.4}/Cython/Tests/TestJediTyper.py +0 -0
  305. {cython-3.1.2 → cython-3.1.4}/Cython/Tests/TestShadow.py +0 -0
  306. {cython-3.1.2 → cython-3.1.4}/Cython/Tests/TestStringIOTree.py +0 -0
  307. {cython-3.1.2 → cython-3.1.4}/Cython/Tests/TestTestUtils.py +0 -0
  308. {cython-3.1.2 → cython-3.1.4}/Cython/Tests/__init__.py +0 -0
  309. {cython-3.1.2 → cython-3.1.4}/Cython/Tests/xmlrunner.py +0 -0
  310. {cython-3.1.2 → cython-3.1.4}/Cython/Utility/AsyncGen.c +0 -0
  311. {cython-3.1.2 → cython-3.1.4}/Cython/Utility/Buffer.c +0 -0
  312. {cython-3.1.2 → cython-3.1.4}/Cython/Utility/BufferFormatFromTypeInfo.pxd +0 -0
  313. {cython-3.1.2 → cython-3.1.4}/Cython/Utility/CConvert.pyx +0 -0
  314. {cython-3.1.2 → cython-3.1.4}/Cython/Utility/CMath.c +0 -0
  315. {cython-3.1.2 → cython-3.1.4}/Cython/Utility/Complex.c +0 -0
  316. {cython-3.1.2 → cython-3.1.4}/Cython/Utility/Coroutine.c +0 -0
  317. {cython-3.1.2 → cython-3.1.4}/Cython/Utility/CpdefEnums.pyx +0 -0
  318. {cython-3.1.2 → cython-3.1.4}/Cython/Utility/CppConvert.pyx +0 -0
  319. {cython-3.1.2 → cython-3.1.4}/Cython/Utility/CppSupport.cpp +0 -0
  320. {cython-3.1.2 → cython-3.1.4}/Cython/Utility/Dataclasses.c +0 -0
  321. {cython-3.1.2 → cython-3.1.4}/Cython/Utility/Dataclasses.py +0 -0
  322. {cython-3.1.2 → cython-3.1.4}/Cython/Utility/Embed.c +0 -0
  323. {cython-3.1.2 → cython-3.1.4}/Cython/Utility/FunctionArguments.c +0 -0
  324. {cython-3.1.2 → cython-3.1.4}/Cython/Utility/MemoryView.pxd +0 -0
  325. {cython-3.1.2 → cython-3.1.4}/Cython/Utility/MemoryView.pyx +0 -0
  326. {cython-3.1.2 → cython-3.1.4}/Cython/Utility/NumpyImportArray.c +0 -0
  327. {cython-3.1.2 → cython-3.1.4}/Cython/Utility/Overflow.c +0 -0
  328. {cython-3.1.2 → cython-3.1.4}/Cython/Utility/Printing.c +0 -0
  329. {cython-3.1.2 → cython-3.1.4}/Cython/Utility/StringTools.c +0 -0
  330. {cython-3.1.2 → cython-3.1.4}/Cython/Utility/TestCyUtilityLoader.pyx +0 -0
  331. {cython-3.1.2 → cython-3.1.4}/Cython/Utility/TestCythonScope.pyx +0 -0
  332. {cython-3.1.2 → cython-3.1.4}/Cython/Utility/TestUtilityLoader.c +0 -0
  333. {cython-3.1.2 → cython-3.1.4}/Cython/Utility/TypeConversion.c +0 -0
  334. {cython-3.1.2 → cython-3.1.4}/Cython/Utility/UFuncs.pyx +0 -0
  335. {cython-3.1.2 → cython-3.1.4}/Cython/Utility/UFuncs_C.c +0 -0
  336. {cython-3.1.2 → cython-3.1.4}/Cython/Utility/__init__.py +0 -0
  337. {cython-3.1.2 → cython-3.1.4}/Cython/Utility/arrayarray.h +0 -0
  338. {cython-3.1.2 → cython-3.1.4}/Cython/Utils.pxd +0 -0
  339. {cython-3.1.2 → cython-3.1.4}/Cython/Utils.py +0 -0
  340. {cython-3.1.2 → cython-3.1.4}/Cython/__init__.py +0 -0
  341. {cython-3.1.2 → cython-3.1.4}/Cython/__init__.pyi +0 -0
  342. {cython-3.1.2 → cython-3.1.4}/Cython/py.typed +0 -0
  343. {cython-3.1.2 → cython-3.1.4}/Demos/Makefile +0 -0
  344. {cython-3.1.2 → cython-3.1.4}/Demos/Makefile.nodistutils +0 -0
  345. {cython-3.1.2 → cython-3.1.4}/Demos/benchmarks/bm_async_generators.py +0 -0
  346. {cython-3.1.2 → cython-3.1.4}/Demos/benchmarks/bm_chaos.pxd +0 -0
  347. {cython-3.1.2 → cython-3.1.4}/Demos/benchmarks/bm_chaos.py +0 -0
  348. {cython-3.1.2 → cython-3.1.4}/Demos/benchmarks/bm_comprehensions.py +0 -0
  349. {cython-3.1.2 → cython-3.1.4}/Demos/benchmarks/bm_coroutines.py +0 -0
  350. {cython-3.1.2 → cython-3.1.4}/Demos/benchmarks/bm_cython.pyx +0 -0
  351. {cython-3.1.2 → cython-3.1.4}/Demos/benchmarks/bm_fib.py +0 -0
  352. {cython-3.1.2 → cython-3.1.4}/Demos/benchmarks/bm_fstrings.py +0 -0
  353. {cython-3.1.2 → cython-3.1.4}/Demos/benchmarks/bm_generators.py +0 -0
  354. {cython-3.1.2 → cython-3.1.4}/Demos/benchmarks/bm_meteor_contest.py +0 -0
  355. {cython-3.1.2 → cython-3.1.4}/Demos/benchmarks/bm_nbody.py +0 -0
  356. {cython-3.1.2 → cython-3.1.4}/Demos/benchmarks/bm_nqueens.py +0 -0
  357. {cython-3.1.2 → cython-3.1.4}/Demos/benchmarks/bm_raytrace.py +0 -0
  358. {cython-3.1.2 → cython-3.1.4}/Demos/benchmarks/bm_richards_cclass.pxd +0 -0
  359. {cython-3.1.2 → cython-3.1.4}/Demos/benchmarks/bm_richards_cclass.py +0 -0
  360. {cython-3.1.2 → cython-3.1.4}/Demos/benchmarks/bm_richards_pyclass.py +0 -0
  361. {cython-3.1.2 → cython-3.1.4}/Demos/benchmarks/bm_unpack_sequence.py +0 -0
  362. {cython-3.1.2 → cython-3.1.4}/Demos/benchmarks/chaos.pxd +0 -0
  363. {cython-3.1.2 → cython-3.1.4}/Demos/benchmarks/chaos.py +0 -0
  364. {cython-3.1.2 → cython-3.1.4}/Demos/benchmarks/hexiom2.pxd +0 -0
  365. {cython-3.1.2 → cython-3.1.4}/Demos/benchmarks/hexiom2.py +0 -0
  366. {cython-3.1.2 → cython-3.1.4}/Demos/benchmarks/report.py +0 -0
  367. {cython-3.1.2 → cython-3.1.4}/Demos/benchmarks/setup.py +0 -0
  368. {cython-3.1.2 → cython-3.1.4}/Demos/benchmarks/spectralnorm.py +0 -0
  369. {cython-3.1.2 → cython-3.1.4}/Demos/benchmarks/util.py +0 -0
  370. {cython-3.1.2 → cython-3.1.4}/Demos/callback/Makefile +0 -0
  371. {cython-3.1.2 → cython-3.1.4}/Demos/callback/Makefile.nodistutils +0 -0
  372. {cython-3.1.2 → cython-3.1.4}/Demos/callback/README.rst +0 -0
  373. {cython-3.1.2 → cython-3.1.4}/Demos/callback/Setup.py +0 -0
  374. {cython-3.1.2 → cython-3.1.4}/Demos/callback/cheese.pyx +0 -0
  375. {cython-3.1.2 → cython-3.1.4}/Demos/callback/cheesefinder.c +0 -0
  376. {cython-3.1.2 → cython-3.1.4}/Demos/callback/cheesefinder.h +0 -0
  377. {cython-3.1.2 → cython-3.1.4}/Demos/callback/run_cheese.py +0 -0
  378. {cython-3.1.2 → cython-3.1.4}/Demos/embed/Makefile +0 -0
  379. {cython-3.1.2 → cython-3.1.4}/Demos/embed/Makefile.msc +0 -0
  380. {cython-3.1.2 → cython-3.1.4}/Demos/embed/Makefile.msc.static +0 -0
  381. {cython-3.1.2 → cython-3.1.4}/Demos/embed/Makefile.unix +0 -0
  382. {cython-3.1.2 → cython-3.1.4}/Demos/embed/README.rst +0 -0
  383. {cython-3.1.2 → cython-3.1.4}/Demos/embed/assert_equal.py +0 -0
  384. {cython-3.1.2 → cython-3.1.4}/Demos/embed/embedded.output +0 -0
  385. {cython-3.1.2 → cython-3.1.4}/Demos/embed/embedded.pyx +0 -0
  386. {cython-3.1.2 → cython-3.1.4}/Demos/freeze/Makefile +0 -0
  387. {cython-3.1.2 → cython-3.1.4}/Demos/freeze/README.rst +0 -0
  388. {cython-3.1.2 → cython-3.1.4}/Demos/freeze/combinatorics.pyx +0 -0
  389. {cython-3.1.2 → cython-3.1.4}/Demos/freeze/lcmath.pyx +0 -0
  390. {cython-3.1.2 → cython-3.1.4}/Demos/integrate0.py +0 -0
  391. {cython-3.1.2 → cython-3.1.4}/Demos/integrate1.pyx +0 -0
  392. {cython-3.1.2 → cython-3.1.4}/Demos/integrate2.pyx +0 -0
  393. {cython-3.1.2 → cython-3.1.4}/Demos/integrate_timing.py +0 -0
  394. {cython-3.1.2 → cython-3.1.4}/Demos/libraries/call_mymath.pyx +0 -0
  395. {cython-3.1.2 → cython-3.1.4}/Demos/libraries/mymath.c +0 -0
  396. {cython-3.1.2 → cython-3.1.4}/Demos/libraries/mymath.h +0 -0
  397. {cython-3.1.2 → cython-3.1.4}/Demos/libraries/setup.py +0 -0
  398. {cython-3.1.2 → cython-3.1.4}/Demos/numpy_demo.pyx +0 -0
  399. {cython-3.1.2 → cython-3.1.4}/Demos/overflow_perf.pyx +0 -0
  400. {cython-3.1.2 → cython-3.1.4}/Demos/overflow_perf_run.py +0 -0
  401. {cython-3.1.2 → cython-3.1.4}/Demos/primes.pyx +0 -0
  402. {cython-3.1.2 → cython-3.1.4}/Demos/pyprimes.py +0 -0
  403. {cython-3.1.2 → cython-3.1.4}/Demos/run_numeric_demo.py +0 -0
  404. {cython-3.1.2 → cython-3.1.4}/Demos/run_primes.py +0 -0
  405. {cython-3.1.2 → cython-3.1.4}/Demos/run_spam.py +0 -0
  406. {cython-3.1.2 → cython-3.1.4}/Demos/setup.py +0 -0
  407. {cython-3.1.2 → cython-3.1.4}/Demos/spam.pyx +0 -0
  408. {cython-3.1.2 → cython-3.1.4}/INSTALL.txt +0 -0
  409. {cython-3.1.2 → cython-3.1.4}/LICENSE.txt +0 -0
  410. {cython-3.1.2 → cython-3.1.4}/MANIFEST.in +0 -0
  411. {cython-3.1.2 → cython-3.1.4}/Makefile +0 -0
  412. {cython-3.1.2 → cython-3.1.4}/README.rst +0 -0
  413. {cython-3.1.2 → cython-3.1.4}/ToDo.txt +0 -0
  414. {cython-3.1.2 → cython-3.1.4}/Tools/BUILD.bazel +0 -0
  415. {cython-3.1.2 → cython-3.1.4}/Tools/cevaltrace.py +0 -0
  416. {cython-3.1.2 → cython-3.1.4}/Tools/cystdlib.py +0 -0
  417. {cython-3.1.2 → cython-3.1.4}/Tools/cython-epydoc.py +0 -0
  418. {cython-3.1.2 → cython-3.1.4}/Tools/cython-generate-shadow-pyi.py +0 -0
  419. {cython-3.1.2 → cython-3.1.4}/Tools/cython-numpy-mode-kate.xml +0 -0
  420. {cython-3.1.2 → cython-3.1.4}/Tools/cython.st +0 -0
  421. {cython-3.1.2 → cython-3.1.4}/Tools/dataclass_test_data/test_dataclasses.py +0 -0
  422. {cython-3.1.2 → cython-3.1.4}/Tools/dump_github_issues.py +0 -0
  423. {cython-3.1.2 → cython-3.1.4}/Tools/gen_tests_for_posix_pxds.py +0 -0
  424. {cython-3.1.2 → cython-3.1.4}/Tools/jedityper.py +0 -0
  425. {cython-3.1.2 → cython-3.1.4}/Tools/kate.diff +0 -0
  426. {cython-3.1.2 → cython-3.1.4}/Tools/make_dataclass_tests.py +0 -0
  427. {cython-3.1.2 → cython-3.1.4}/Tools/rules.bzl +0 -0
  428. {cython-3.1.2 → cython-3.1.4}/Tools/site_scons/site_tools/cython.py +0 -0
  429. {cython-3.1.2 → cython-3.1.4}/Tools/site_scons/site_tools/pyext.py +0 -0
  430. {cython-3.1.2 → cython-3.1.4}/USAGE.txt +0 -0
  431. {cython-3.1.2 → cython-3.1.4}/bin/cygdb +0 -0
  432. {cython-3.1.2 → cython-3.1.4}/bin/cython +0 -0
  433. {cython-3.1.2 → cython-3.1.4}/bin/cython.bat +0 -0
  434. {cython-3.1.2 → cython-3.1.4}/bin/cython_freeze +0 -0
  435. {cython-3.1.2 → cython-3.1.4}/bin/cythonize +0 -0
  436. {cython-3.1.2 → cython-3.1.4}/bin/cythonrun +0 -0
  437. {cython-3.1.2 → cython-3.1.4}/bin/move-declarators.sed +0 -0
  438. {cython-3.1.2 → cython-3.1.4}/bin/pcython +0 -0
  439. {cython-3.1.2 → cython-3.1.4}/cygdb.py +0 -0
  440. {cython-3.1.2 → cython-3.1.4}/cython.py +0 -0
  441. {cython-3.1.2 → cython-3.1.4}/cythonize.py +0 -0
  442. {cython-3.1.2 → cython-3.1.4}/doc-requirements.txt +0 -0
  443. {cython-3.1.2 → cython-3.1.4}/docs/.hgignore +0 -0
  444. {cython-3.1.2 → cython-3.1.4}/docs/CONTRIBUTING.rst +0 -0
  445. {cython-3.1.2 → cython-3.1.4}/docs/Makefile +0 -0
  446. {cython-3.1.2 → cython-3.1.4}/docs/README.md +0 -0
  447. {cython-3.1.2 → cython-3.1.4}/docs/TODO +0 -0
  448. {cython-3.1.2 → cython-3.1.4}/docs/_static/css/tabs.css +0 -0
  449. {cython-3.1.2 → cython-3.1.4}/docs/_static/cython-logo-C.svg +0 -0
  450. {cython-3.1.2 → cython-3.1.4}/docs/_static/cython-logo-light.png +0 -0
  451. {cython-3.1.2 → cython-3.1.4}/docs/_static/cython-logo.svg +0 -0
  452. {cython-3.1.2 → cython-3.1.4}/docs/_static/cythonlogo.png +0 -0
  453. {cython-3.1.2 → cython-3.1.4}/docs/_static/favicon.ico +0 -0
  454. {cython-3.1.2 → cython-3.1.4}/docs/_templates/layout.html +0 -0
  455. {cython-3.1.2 → cython-3.1.4}/docs/conf.py +0 -0
  456. {cython-3.1.2 → cython-3.1.4}/docs/examples/Cython Magics.ipynb +0 -0
  457. {cython-3.1.2 → cython-3.1.4}/docs/examples/README.rst +0 -0
  458. {cython-3.1.2 → cython-3.1.4}/docs/examples/not_in_docs/great_circle/c1.pyx +0 -0
  459. {cython-3.1.2 → cython-3.1.4}/docs/examples/not_in_docs/great_circle/c2.pyx +0 -0
  460. {cython-3.1.2 → cython-3.1.4}/docs/examples/not_in_docs/great_circle/p1.py +0 -0
  461. {cython-3.1.2 → cython-3.1.4}/docs/examples/quickstart/build/hello.pyx +0 -0
  462. {cython-3.1.2 → cython-3.1.4}/docs/examples/quickstart/build/setup.py +0 -0
  463. {cython-3.1.2 → cython-3.1.4}/docs/examples/quickstart/cythonize/cdef_keyword.py +0 -0
  464. {cython-3.1.2 → cython-3.1.4}/docs/examples/quickstart/cythonize/cdef_keyword.pyx +0 -0
  465. {cython-3.1.2 → cython-3.1.4}/docs/examples/quickstart/cythonize/integrate.py +0 -0
  466. {cython-3.1.2 → cython-3.1.4}/docs/examples/quickstart/cythonize/integrate_cy.py +0 -0
  467. {cython-3.1.2 → cython-3.1.4}/docs/examples/quickstart/cythonize/integrate_cy.pyx +0 -0
  468. {cython-3.1.2 → cython-3.1.4}/docs/examples/tutorial/array/clone.py +0 -0
  469. {cython-3.1.2 → cython-3.1.4}/docs/examples/tutorial/array/clone.pyx +0 -0
  470. {cython-3.1.2 → cython-3.1.4}/docs/examples/tutorial/array/overhead.py +0 -0
  471. {cython-3.1.2 → cython-3.1.4}/docs/examples/tutorial/array/overhead.pyx +0 -0
  472. {cython-3.1.2 → cython-3.1.4}/docs/examples/tutorial/array/resize.py +0 -0
  473. {cython-3.1.2 → cython-3.1.4}/docs/examples/tutorial/array/resize.pyx +0 -0
  474. {cython-3.1.2 → cython-3.1.4}/docs/examples/tutorial/array/safe_usage.py +0 -0
  475. {cython-3.1.2 → cython-3.1.4}/docs/examples/tutorial/array/safe_usage.pyx +0 -0
  476. {cython-3.1.2 → cython-3.1.4}/docs/examples/tutorial/array/unsafe_usage.py +0 -0
  477. {cython-3.1.2 → cython-3.1.4}/docs/examples/tutorial/array/unsafe_usage.pyx +0 -0
  478. {cython-3.1.2 → cython-3.1.4}/docs/examples/tutorial/cdef_classes/integrate.py +0 -0
  479. {cython-3.1.2 → cython-3.1.4}/docs/examples/tutorial/cdef_classes/integrate.pyx +0 -0
  480. {cython-3.1.2 → cython-3.1.4}/docs/examples/tutorial/cdef_classes/math_function.py +0 -0
  481. {cython-3.1.2 → cython-3.1.4}/docs/examples/tutorial/cdef_classes/math_function_2.py +0 -0
  482. {cython-3.1.2 → cython-3.1.4}/docs/examples/tutorial/cdef_classes/math_function_2.pyx +0 -0
  483. {cython-3.1.2 → cython-3.1.4}/docs/examples/tutorial/cdef_classes/nonecheck.py +0 -0
  484. {cython-3.1.2 → cython-3.1.4}/docs/examples/tutorial/cdef_classes/nonecheck.pyx +0 -0
  485. {cython-3.1.2 → cython-3.1.4}/docs/examples/tutorial/cdef_classes/sin_of_square.pxd +0 -0
  486. {cython-3.1.2 → cython-3.1.4}/docs/examples/tutorial/cdef_classes/sin_of_square.py +0 -0
  487. {cython-3.1.2 → cython-3.1.4}/docs/examples/tutorial/cdef_classes/sin_of_square.pyx +0 -0
  488. {cython-3.1.2 → cython-3.1.4}/docs/examples/tutorial/cdef_classes/wave_function.py +0 -0
  489. {cython-3.1.2 → cython-3.1.4}/docs/examples/tutorial/cdef_classes/wave_function.pyx +0 -0
  490. {cython-3.1.2 → cython-3.1.4}/docs/examples/tutorial/clibraries/c-algorithms/src/queue.h +0 -0
  491. {cython-3.1.2 → cython-3.1.4}/docs/examples/tutorial/clibraries/cqueue.pxd +0 -0
  492. {cython-3.1.2 → cython-3.1.4}/docs/examples/tutorial/clibraries/queue.py +0 -0
  493. {cython-3.1.2 → cython-3.1.4}/docs/examples/tutorial/clibraries/queue.pyx +0 -0
  494. {cython-3.1.2 → cython-3.1.4}/docs/examples/tutorial/clibraries/queue2.py +0 -0
  495. {cython-3.1.2 → cython-3.1.4}/docs/examples/tutorial/clibraries/queue2.pyx +0 -0
  496. {cython-3.1.2 → cython-3.1.4}/docs/examples/tutorial/clibraries/queue3.py +0 -0
  497. {cython-3.1.2 → cython-3.1.4}/docs/examples/tutorial/clibraries/queue3.pyx +0 -0
  498. {cython-3.1.2 → cython-3.1.4}/docs/examples/tutorial/clibraries/test_queue.py +0 -0
  499. {cython-3.1.2 → cython-3.1.4}/docs/examples/tutorial/cython_tutorial/fibonacci.py +0 -0
  500. {cython-3.1.2 → cython-3.1.4}/docs/examples/tutorial/cython_tutorial/primes.py +0 -0
  501. {cython-3.1.2 → cython-3.1.4}/docs/examples/tutorial/cython_tutorial/primes.pyx +0 -0
  502. {cython-3.1.2 → cython-3.1.4}/docs/examples/tutorial/cython_tutorial/primes_cpp.py +0 -0
  503. {cython-3.1.2 → cython-3.1.4}/docs/examples/tutorial/cython_tutorial/primes_cpp.pyx +0 -0
  504. {cython-3.1.2 → cython-3.1.4}/docs/examples/tutorial/cython_tutorial/primes_python.py +0 -0
  505. {cython-3.1.2 → cython-3.1.4}/docs/examples/tutorial/embedding/embedded.pyx +0 -0
  506. {cython-3.1.2 → cython-3.1.4}/docs/examples/tutorial/external/atoi.py +0 -0
  507. {cython-3.1.2 → cython-3.1.4}/docs/examples/tutorial/external/atoi.pyx +0 -0
  508. {cython-3.1.2 → cython-3.1.4}/docs/examples/tutorial/external/cpdef_sin.pyx +0 -0
  509. {cython-3.1.2 → cython-3.1.4}/docs/examples/tutorial/external/keyword_args.pyx +0 -0
  510. {cython-3.1.2 → cython-3.1.4}/docs/examples/tutorial/external/keyword_args_call.py +0 -0
  511. {cython-3.1.2 → cython-3.1.4}/docs/examples/tutorial/external/keyword_args_call.pyx +0 -0
  512. {cython-3.1.2 → cython-3.1.4}/docs/examples/tutorial/external/libc_sin.py +0 -0
  513. {cython-3.1.2 → cython-3.1.4}/docs/examples/tutorial/external/libc_sin.pyx +0 -0
  514. {cython-3.1.2 → cython-3.1.4}/docs/examples/tutorial/external/py_version_hex.py +0 -0
  515. {cython-3.1.2 → cython-3.1.4}/docs/examples/tutorial/external/py_version_hex.pyx +0 -0
  516. {cython-3.1.2 → cython-3.1.4}/docs/examples/tutorial/external/setup.py +0 -0
  517. {cython-3.1.2 → cython-3.1.4}/docs/examples/tutorial/external/strstr.pxd +0 -0
  518. {cython-3.1.2 → cython-3.1.4}/docs/examples/tutorial/memory_allocation/malloc.py +0 -0
  519. {cython-3.1.2 → cython-3.1.4}/docs/examples/tutorial/memory_allocation/malloc.pyx +0 -0
  520. {cython-3.1.2 → cython-3.1.4}/docs/examples/tutorial/memory_allocation/some_memory.py +0 -0
  521. {cython-3.1.2 → cython-3.1.4}/docs/examples/tutorial/memory_allocation/some_memory.pyx +0 -0
  522. {cython-3.1.2 → cython-3.1.4}/docs/examples/tutorial/numpy/convolve2.pyx +0 -0
  523. {cython-3.1.2 → cython-3.1.4}/docs/examples/tutorial/numpy/convolve_py.py +0 -0
  524. {cython-3.1.2 → cython-3.1.4}/docs/examples/tutorial/parallelization/manual_work.py +0 -0
  525. {cython-3.1.2 → cython-3.1.4}/docs/examples/tutorial/parallelization/manual_work.pyx +0 -0
  526. {cython-3.1.2 → cython-3.1.4}/docs/examples/tutorial/parallelization/median.py +0 -0
  527. {cython-3.1.2 → cython-3.1.4}/docs/examples/tutorial/parallelization/median.pyx +0 -0
  528. {cython-3.1.2 → cython-3.1.4}/docs/examples/tutorial/parallelization/norm.py +0 -0
  529. {cython-3.1.2 → cython-3.1.4}/docs/examples/tutorial/parallelization/norm.pyx +0 -0
  530. {cython-3.1.2 → cython-3.1.4}/docs/examples/tutorial/parallelization/normalize.py +0 -0
  531. {cython-3.1.2 → cython-3.1.4}/docs/examples/tutorial/parallelization/normalize.pyx +0 -0
  532. {cython-3.1.2 → cython-3.1.4}/docs/examples/tutorial/parallelization/parallel_sin.py +0 -0
  533. {cython-3.1.2 → cython-3.1.4}/docs/examples/tutorial/parallelization/parallel_sin.pyx +0 -0
  534. {cython-3.1.2 → cython-3.1.4}/docs/examples/tutorial/parallelization/setup.py +0 -0
  535. {cython-3.1.2 → cython-3.1.4}/docs/examples/tutorial/profiling_tutorial/calc_pi.py +0 -0
  536. {cython-3.1.2 → cython-3.1.4}/docs/examples/tutorial/profiling_tutorial/calc_pi_2.py +0 -0
  537. {cython-3.1.2 → cython-3.1.4}/docs/examples/tutorial/profiling_tutorial/calc_pi_2.pyx +0 -0
  538. {cython-3.1.2 → cython-3.1.4}/docs/examples/tutorial/profiling_tutorial/calc_pi_3.py +0 -0
  539. {cython-3.1.2 → cython-3.1.4}/docs/examples/tutorial/profiling_tutorial/calc_pi_3.pyx +0 -0
  540. {cython-3.1.2 → cython-3.1.4}/docs/examples/tutorial/profiling_tutorial/calc_pi_4.py +0 -0
  541. {cython-3.1.2 → cython-3.1.4}/docs/examples/tutorial/profiling_tutorial/calc_pi_4.pyx +0 -0
  542. {cython-3.1.2 → cython-3.1.4}/docs/examples/tutorial/profiling_tutorial/often_called.py +0 -0
  543. {cython-3.1.2 → cython-3.1.4}/docs/examples/tutorial/profiling_tutorial/often_called.pyx +0 -0
  544. {cython-3.1.2 → cython-3.1.4}/docs/examples/tutorial/profiling_tutorial/profile.py +0 -0
  545. {cython-3.1.2 → cython-3.1.4}/docs/examples/tutorial/profiling_tutorial/profile_2.py +0 -0
  546. {cython-3.1.2 → cython-3.1.4}/docs/examples/tutorial/pure/A.pxd +0 -0
  547. {cython-3.1.2 → cython-3.1.4}/docs/examples/tutorial/pure/A.py +0 -0
  548. {cython-3.1.2 → cython-3.1.4}/docs/examples/tutorial/pure/A_equivalent.pyx +0 -0
  549. {cython-3.1.2 → cython-3.1.4}/docs/examples/tutorial/pure/annotations.py +0 -0
  550. {cython-3.1.2 → cython-3.1.4}/docs/examples/tutorial/pure/c_arrays.py +0 -0
  551. {cython-3.1.2 → cython-3.1.4}/docs/examples/tutorial/pure/cclass.py +0 -0
  552. {cython-3.1.2 → cython-3.1.4}/docs/examples/tutorial/pure/compiled_switch.py +0 -0
  553. {cython-3.1.2 → cython-3.1.4}/docs/examples/tutorial/pure/cython_declare.py +0 -0
  554. {cython-3.1.2 → cython-3.1.4}/docs/examples/tutorial/pure/cython_declare2.py +0 -0
  555. {cython-3.1.2 → cython-3.1.4}/docs/examples/tutorial/pure/disabled_annotations.py +0 -0
  556. {cython-3.1.2 → cython-3.1.4}/docs/examples/tutorial/pure/dostuff.pxd +0 -0
  557. {cython-3.1.2 → cython-3.1.4}/docs/examples/tutorial/pure/dostuff.py +0 -0
  558. {cython-3.1.2 → cython-3.1.4}/docs/examples/tutorial/pure/exceptval.py +0 -0
  559. {cython-3.1.2 → cython-3.1.4}/docs/examples/tutorial/pure/locals.py +0 -0
  560. {cython-3.1.2 → cython-3.1.4}/docs/examples/tutorial/pure/mymodule.pxd +0 -0
  561. {cython-3.1.2 → cython-3.1.4}/docs/examples/tutorial/pure/mymodule.py +0 -0
  562. {cython-3.1.2 → cython-3.1.4}/docs/examples/tutorial/pure/pep_526.py +0 -0
  563. {cython-3.1.2 → cython-3.1.4}/docs/examples/tutorial/pure/py_cimport.py +0 -0
  564. {cython-3.1.2 → cython-3.1.4}/docs/examples/tutorial/pxd_files/cmath.pxd +0 -0
  565. {cython-3.1.2 → cython-3.1.4}/docs/examples/tutorial/pxd_files/inline.pxd +0 -0
  566. {cython-3.1.2 → cython-3.1.4}/docs/examples/tutorial/pxd_files/integrate.py +0 -0
  567. {cython-3.1.2 → cython-3.1.4}/docs/examples/tutorial/pxd_files/integrate.pyx +0 -0
  568. {cython-3.1.2 → cython-3.1.4}/docs/examples/tutorial/string/api_func.py +0 -0
  569. {cython-3.1.2 → cython-3.1.4}/docs/examples/tutorial/string/api_func.pyx +0 -0
  570. {cython-3.1.2 → cython-3.1.4}/docs/examples/tutorial/string/arg_memview.py +0 -0
  571. {cython-3.1.2 → cython-3.1.4}/docs/examples/tutorial/string/arg_memview.pyx +0 -0
  572. {cython-3.1.2 → cython-3.1.4}/docs/examples/tutorial/string/auto_conversion_1.pyx +0 -0
  573. {cython-3.1.2 → cython-3.1.4}/docs/examples/tutorial/string/auto_conversion_3.pyx +0 -0
  574. {cython-3.1.2 → cython-3.1.4}/docs/examples/tutorial/string/c_func.pxd +0 -0
  575. {cython-3.1.2 → cython-3.1.4}/docs/examples/tutorial/string/c_func.py +0 -0
  576. {cython-3.1.2 → cython-3.1.4}/docs/examples/tutorial/string/c_func.pyx +0 -0
  577. {cython-3.1.2 → cython-3.1.4}/docs/examples/tutorial/string/c_string_to_str.py +0 -0
  578. {cython-3.1.2 → cython-3.1.4}/docs/examples/tutorial/string/c_string_to_str.pyx +0 -0
  579. {cython-3.1.2 → cython-3.1.4}/docs/examples/tutorial/string/const.pyx +0 -0
  580. {cython-3.1.2 → cython-3.1.4}/docs/examples/tutorial/string/cpp_string.py +0 -0
  581. {cython-3.1.2 → cython-3.1.4}/docs/examples/tutorial/string/cpp_string.pyx +0 -0
  582. {cython-3.1.2 → cython-3.1.4}/docs/examples/tutorial/string/decode.py +0 -0
  583. {cython-3.1.2 → cython-3.1.4}/docs/examples/tutorial/string/decode.pyx +0 -0
  584. {cython-3.1.2 → cython-3.1.4}/docs/examples/tutorial/string/decode_cpp_string.py +0 -0
  585. {cython-3.1.2 → cython-3.1.4}/docs/examples/tutorial/string/decode_cpp_string.pyx +0 -0
  586. {cython-3.1.2 → cython-3.1.4}/docs/examples/tutorial/string/for_bytes.py +0 -0
  587. {cython-3.1.2 → cython-3.1.4}/docs/examples/tutorial/string/for_bytes.pyx +0 -0
  588. {cython-3.1.2 → cython-3.1.4}/docs/examples/tutorial/string/for_char.py +0 -0
  589. {cython-3.1.2 → cython-3.1.4}/docs/examples/tutorial/string/for_char.pyx +0 -0
  590. {cython-3.1.2 → cython-3.1.4}/docs/examples/tutorial/string/for_unicode.py +0 -0
  591. {cython-3.1.2 → cython-3.1.4}/docs/examples/tutorial/string/for_unicode.pyx +0 -0
  592. {cython-3.1.2 → cython-3.1.4}/docs/examples/tutorial/string/if_char_in.py +0 -0
  593. {cython-3.1.2 → cython-3.1.4}/docs/examples/tutorial/string/if_char_in.pyx +0 -0
  594. {cython-3.1.2 → cython-3.1.4}/docs/examples/tutorial/string/naive_decode.py +0 -0
  595. {cython-3.1.2 → cython-3.1.4}/docs/examples/tutorial/string/naive_decode.pyx +0 -0
  596. {cython-3.1.2 → cython-3.1.4}/docs/examples/tutorial/string/return_memview.py +0 -0
  597. {cython-3.1.2 → cython-3.1.4}/docs/examples/tutorial/string/return_memview.pyx +0 -0
  598. {cython-3.1.2 → cython-3.1.4}/docs/examples/tutorial/string/slicing_c_string.py +0 -0
  599. {cython-3.1.2 → cython-3.1.4}/docs/examples/tutorial/string/slicing_c_string.pyx +0 -0
  600. {cython-3.1.2 → cython-3.1.4}/docs/examples/tutorial/string/someheader.h +0 -0
  601. {cython-3.1.2 → cython-3.1.4}/docs/examples/tutorial/string/to_char.py +0 -0
  602. {cython-3.1.2 → cython-3.1.4}/docs/examples/tutorial/string/to_char.pyx +0 -0
  603. {cython-3.1.2 → cython-3.1.4}/docs/examples/tutorial/string/to_unicode.pxd +0 -0
  604. {cython-3.1.2 → cython-3.1.4}/docs/examples/tutorial/string/to_unicode.py +0 -0
  605. {cython-3.1.2 → cython-3.1.4}/docs/examples/tutorial/string/to_unicode.pyx +0 -0
  606. {cython-3.1.2 → cython-3.1.4}/docs/examples/tutorial/string/try_finally.py +0 -0
  607. {cython-3.1.2 → cython-3.1.4}/docs/examples/tutorial/string/try_finally.pyx +0 -0
  608. {cython-3.1.2 → cython-3.1.4}/docs/examples/tutorial/string/utf_eight.py +0 -0
  609. {cython-3.1.2 → cython-3.1.4}/docs/examples/tutorial/string/utf_eight.pyx +0 -0
  610. {cython-3.1.2 → cython-3.1.4}/docs/examples/userguide/buffer/matrix.py +0 -0
  611. {cython-3.1.2 → cython-3.1.4}/docs/examples/userguide/buffer/matrix.pyx +0 -0
  612. {cython-3.1.2 → cython-3.1.4}/docs/examples/userguide/buffer/matrix_with_buffer.py +0 -0
  613. {cython-3.1.2 → cython-3.1.4}/docs/examples/userguide/buffer/matrix_with_buffer.pyx +0 -0
  614. {cython-3.1.2 → cython-3.1.4}/docs/examples/userguide/buffer/view_count.py +0 -0
  615. {cython-3.1.2 → cython-3.1.4}/docs/examples/userguide/buffer/view_count.pyx +0 -0
  616. {cython-3.1.2 → cython-3.1.4}/docs/examples/userguide/early_binding_for_speed/rectangle.py +0 -0
  617. {cython-3.1.2 → cython-3.1.4}/docs/examples/userguide/early_binding_for_speed/rectangle.pyx +0 -0
  618. {cython-3.1.2 → cython-3.1.4}/docs/examples/userguide/early_binding_for_speed/rectangle_cdef.py +0 -0
  619. {cython-3.1.2 → cython-3.1.4}/docs/examples/userguide/early_binding_for_speed/rectangle_cdef.pyx +0 -0
  620. {cython-3.1.2 → cython-3.1.4}/docs/examples/userguide/early_binding_for_speed/rectangle_cpdef.py +0 -0
  621. {cython-3.1.2 → cython-3.1.4}/docs/examples/userguide/early_binding_for_speed/rectangle_cpdef.pyx +0 -0
  622. {cython-3.1.2 → cython-3.1.4}/docs/examples/userguide/extension_types/c_property.pyx +0 -0
  623. {cython-3.1.2 → cython-3.1.4}/docs/examples/userguide/extension_types/cheesy.py +0 -0
  624. {cython-3.1.2 → cython-3.1.4}/docs/examples/userguide/extension_types/cheesy.pyx +0 -0
  625. {cython-3.1.2 → cython-3.1.4}/docs/examples/userguide/extension_types/dataclass.py +0 -0
  626. {cython-3.1.2 → cython-3.1.4}/docs/examples/userguide/extension_types/dataclass.pyx +0 -0
  627. {cython-3.1.2 → cython-3.1.4}/docs/examples/userguide/extension_types/dict_animal.py +0 -0
  628. {cython-3.1.2 → cython-3.1.4}/docs/examples/userguide/extension_types/dict_animal.pyx +0 -0
  629. {cython-3.1.2 → cython-3.1.4}/docs/examples/userguide/extension_types/extendable_animal.py +0 -0
  630. {cython-3.1.2 → cython-3.1.4}/docs/examples/userguide/extension_types/extendable_animal.pyx +0 -0
  631. {cython-3.1.2 → cython-3.1.4}/docs/examples/userguide/extension_types/my_module.pxd +0 -0
  632. {cython-3.1.2 → cython-3.1.4}/docs/examples/userguide/extension_types/my_module.pyx +0 -0
  633. {cython-3.1.2 → cython-3.1.4}/docs/examples/userguide/extension_types/owned_pointer.py +0 -0
  634. {cython-3.1.2 → cython-3.1.4}/docs/examples/userguide/extension_types/owned_pointer.pyx +0 -0
  635. {cython-3.1.2 → cython-3.1.4}/docs/examples/userguide/extension_types/penguin.py +0 -0
  636. {cython-3.1.2 → cython-3.1.4}/docs/examples/userguide/extension_types/penguin.pyx +0 -0
  637. {cython-3.1.2 → cython-3.1.4}/docs/examples/userguide/extension_types/penguin2.py +0 -0
  638. {cython-3.1.2 → cython-3.1.4}/docs/examples/userguide/extension_types/penguin2.pyx +0 -0
  639. {cython-3.1.2 → cython-3.1.4}/docs/examples/userguide/extension_types/pets.py +0 -0
  640. {cython-3.1.2 → cython-3.1.4}/docs/examples/userguide/extension_types/pets.pyx +0 -0
  641. {cython-3.1.2 → cython-3.1.4}/docs/examples/userguide/extension_types/python_access.py +0 -0
  642. {cython-3.1.2 → cython-3.1.4}/docs/examples/userguide/extension_types/python_access.pyx +0 -0
  643. {cython-3.1.2 → cython-3.1.4}/docs/examples/userguide/extension_types/shrubbery.py +0 -0
  644. {cython-3.1.2 → cython-3.1.4}/docs/examples/userguide/extension_types/shrubbery.pyx +0 -0
  645. {cython-3.1.2 → cython-3.1.4}/docs/examples/userguide/extension_types/shrubbery_2.py +0 -0
  646. {cython-3.1.2 → cython-3.1.4}/docs/examples/userguide/extension_types/shrubbery_2.pyx +0 -0
  647. {cython-3.1.2 → cython-3.1.4}/docs/examples/userguide/extension_types/widen_shrubbery.py +0 -0
  648. {cython-3.1.2 → cython-3.1.4}/docs/examples/userguide/extension_types/widen_shrubbery.pyx +0 -0
  649. {cython-3.1.2 → cython-3.1.4}/docs/examples/userguide/extension_types/wrapper_class.py +0 -0
  650. {cython-3.1.2 → cython-3.1.4}/docs/examples/userguide/extension_types/wrapper_class.pyx +0 -0
  651. {cython-3.1.2 → cython-3.1.4}/docs/examples/userguide/external_C_code/delorean.pyx +0 -0
  652. {cython-3.1.2 → cython-3.1.4}/docs/examples/userguide/external_C_code/marty.c +0 -0
  653. {cython-3.1.2 → cython-3.1.4}/docs/examples/userguide/external_C_code/platform_adaptation.pyx +0 -0
  654. {cython-3.1.2 → cython-3.1.4}/docs/examples/userguide/external_C_code/struct_field_adaptation.h +0 -0
  655. {cython-3.1.2 → cython-3.1.4}/docs/examples/userguide/external_C_code/struct_field_adaptation.pyx +0 -0
  656. {cython-3.1.2 → cython-3.1.4}/docs/examples/userguide/external_C_code/verbatim_c_code.pyx +0 -0
  657. {cython-3.1.2 → cython-3.1.4}/docs/examples/userguide/fusedtypes/char_or_float.py +0 -0
  658. {cython-3.1.2 → cython-3.1.4}/docs/examples/userguide/fusedtypes/char_or_float.pyx +0 -0
  659. {cython-3.1.2 → cython-3.1.4}/docs/examples/userguide/fusedtypes/conditional_gil.py +0 -0
  660. {cython-3.1.2 → cython-3.1.4}/docs/examples/userguide/fusedtypes/conditional_gil.pyx +0 -0
  661. {cython-3.1.2 → cython-3.1.4}/docs/examples/userguide/fusedtypes/indexing.py +0 -0
  662. {cython-3.1.2 → cython-3.1.4}/docs/examples/userguide/fusedtypes/indexing.pyx +0 -0
  663. {cython-3.1.2 → cython-3.1.4}/docs/examples/userguide/fusedtypes/memoryview_indexing.py +0 -0
  664. {cython-3.1.2 → cython-3.1.4}/docs/examples/userguide/fusedtypes/memoryview_indexing.pyx +0 -0
  665. {cython-3.1.2 → cython-3.1.4}/docs/examples/userguide/fusedtypes/pointer.py +0 -0
  666. {cython-3.1.2 → cython-3.1.4}/docs/examples/userguide/fusedtypes/pointer.pyx +0 -0
  667. {cython-3.1.2 → cython-3.1.4}/docs/examples/userguide/fusedtypes/type_checking.py +0 -0
  668. {cython-3.1.2 → cython-3.1.4}/docs/examples/userguide/fusedtypes/type_checking.pyx +0 -0
  669. {cython-3.1.2 → cython-3.1.4}/docs/examples/userguide/language_basics/casting_python.pxd +0 -0
  670. {cython-3.1.2 → cython-3.1.4}/docs/examples/userguide/language_basics/casting_python.py +0 -0
  671. {cython-3.1.2 → cython-3.1.4}/docs/examples/userguide/language_basics/casting_python.pyx +0 -0
  672. {cython-3.1.2 → cython-3.1.4}/docs/examples/userguide/language_basics/cdef_block.pyx +0 -0
  673. {cython-3.1.2 → cython-3.1.4}/docs/examples/userguide/language_basics/compile_time.pyx +0 -0
  674. {cython-3.1.2 → cython-3.1.4}/docs/examples/userguide/language_basics/enum.pyx +0 -0
  675. {cython-3.1.2 → cython-3.1.4}/docs/examples/userguide/language_basics/function_pointer.pyx +0 -0
  676. {cython-3.1.2 → cython-3.1.4}/docs/examples/userguide/language_basics/function_pointer_struct.pyx +0 -0
  677. {cython-3.1.2 → cython-3.1.4}/docs/examples/userguide/language_basics/kwargs_1.pyx +0 -0
  678. {cython-3.1.2 → cython-3.1.4}/docs/examples/userguide/language_basics/kwargs_2.pyx +0 -0
  679. {cython-3.1.2 → cython-3.1.4}/docs/examples/userguide/language_basics/open_file.py +0 -0
  680. {cython-3.1.2 → cython-3.1.4}/docs/examples/userguide/language_basics/open_file.pyx +0 -0
  681. {cython-3.1.2 → cython-3.1.4}/docs/examples/userguide/language_basics/optional_subclassing.pxd +0 -0
  682. {cython-3.1.2 → cython-3.1.4}/docs/examples/userguide/language_basics/optional_subclassing.py +0 -0
  683. {cython-3.1.2 → cython-3.1.4}/docs/examples/userguide/language_basics/optional_subclassing.pyx +0 -0
  684. {cython-3.1.2 → cython-3.1.4}/docs/examples/userguide/language_basics/override.py +0 -0
  685. {cython-3.1.2 → cython-3.1.4}/docs/examples/userguide/language_basics/override.pyx +0 -0
  686. {cython-3.1.2 → cython-3.1.4}/docs/examples/userguide/language_basics/parameter_refcount.py +0 -0
  687. {cython-3.1.2 → cython-3.1.4}/docs/examples/userguide/language_basics/parameter_refcount.pyx +0 -0
  688. {cython-3.1.2 → cython-3.1.4}/docs/examples/userguide/language_basics/struct.py +0 -0
  689. {cython-3.1.2 → cython-3.1.4}/docs/examples/userguide/language_basics/struct.pyx +0 -0
  690. {cython-3.1.2 → cython-3.1.4}/docs/examples/userguide/language_basics/type_qualifiers.py +0 -0
  691. {cython-3.1.2 → cython-3.1.4}/docs/examples/userguide/language_basics/type_qualifiers.pyx +0 -0
  692. {cython-3.1.2 → cython-3.1.4}/docs/examples/userguide/language_basics/union.py +0 -0
  693. {cython-3.1.2 → cython-3.1.4}/docs/examples/userguide/language_basics/union.pyx +0 -0
  694. {cython-3.1.2 → cython-3.1.4}/docs/examples/userguide/memoryviews/C_func_file.c +0 -0
  695. {cython-3.1.2 → cython-3.1.4}/docs/examples/userguide/memoryviews/C_func_file.h +0 -0
  696. {cython-3.1.2 → cython-3.1.4}/docs/examples/userguide/memoryviews/add_one.py +0 -0
  697. {cython-3.1.2 → cython-3.1.4}/docs/examples/userguide/memoryviews/add_one.pyx +0 -0
  698. {cython-3.1.2 → cython-3.1.4}/docs/examples/userguide/memoryviews/copy.py +0 -0
  699. {cython-3.1.2 → cython-3.1.4}/docs/examples/userguide/memoryviews/copy.pyx +0 -0
  700. {cython-3.1.2 → cython-3.1.4}/docs/examples/userguide/memoryviews/cpython_array.py +0 -0
  701. {cython-3.1.2 → cython-3.1.4}/docs/examples/userguide/memoryviews/cpython_array.pyx +0 -0
  702. {cython-3.1.2 → cython-3.1.4}/docs/examples/userguide/memoryviews/custom_dtype.pyx +0 -0
  703. {cython-3.1.2 → cython-3.1.4}/docs/examples/userguide/memoryviews/cython_array.py +0 -0
  704. {cython-3.1.2 → cython-3.1.4}/docs/examples/userguide/memoryviews/cython_array.pyx +0 -0
  705. {cython-3.1.2 → cython-3.1.4}/docs/examples/userguide/memoryviews/memory_layout.py +0 -0
  706. {cython-3.1.2 → cython-3.1.4}/docs/examples/userguide/memoryviews/memory_layout.pyx +0 -0
  707. {cython-3.1.2 → cython-3.1.4}/docs/examples/userguide/memoryviews/memory_layout_2.py +0 -0
  708. {cython-3.1.2 → cython-3.1.4}/docs/examples/userguide/memoryviews/memory_layout_2.pyx +0 -0
  709. {cython-3.1.2 → cython-3.1.4}/docs/examples/userguide/memoryviews/memview_to_c.pxd +0 -0
  710. {cython-3.1.2 → cython-3.1.4}/docs/examples/userguide/memoryviews/memview_to_c.py +0 -0
  711. {cython-3.1.2 → cython-3.1.4}/docs/examples/userguide/memoryviews/memview_to_c.pyx +0 -0
  712. {cython-3.1.2 → cython-3.1.4}/docs/examples/userguide/memoryviews/not_none.py +0 -0
  713. {cython-3.1.2 → cython-3.1.4}/docs/examples/userguide/memoryviews/not_none.pyx +0 -0
  714. {cython-3.1.2 → cython-3.1.4}/docs/examples/userguide/memoryviews/np_flag_const.pyx +0 -0
  715. {cython-3.1.2 → cython-3.1.4}/docs/examples/userguide/memoryviews/old_sum3d.pyx +0 -0
  716. {cython-3.1.2 → cython-3.1.4}/docs/examples/userguide/memoryviews/quickstart.py +0 -0
  717. {cython-3.1.2 → cython-3.1.4}/docs/examples/userguide/memoryviews/quickstart.pyx +0 -0
  718. {cython-3.1.2 → cython-3.1.4}/docs/examples/userguide/memoryviews/slicing.py +0 -0
  719. {cython-3.1.2 → cython-3.1.4}/docs/examples/userguide/memoryviews/slicing.pyx +0 -0
  720. {cython-3.1.2 → cython-3.1.4}/docs/examples/userguide/memoryviews/transpose.py +0 -0
  721. {cython-3.1.2 → cython-3.1.4}/docs/examples/userguide/memoryviews/transpose.pyx +0 -0
  722. {cython-3.1.2 → cython-3.1.4}/docs/examples/userguide/memoryviews/view_string.pyx +0 -0
  723. {cython-3.1.2 → cython-3.1.4}/docs/examples/userguide/numpy_tutorial/compute_fused_types.py +0 -0
  724. {cython-3.1.2 → cython-3.1.4}/docs/examples/userguide/numpy_tutorial/compute_fused_types.pyx +0 -0
  725. {cython-3.1.2 → cython-3.1.4}/docs/examples/userguide/numpy_tutorial/compute_infer_types.py +0 -0
  726. {cython-3.1.2 → cython-3.1.4}/docs/examples/userguide/numpy_tutorial/compute_infer_types.pyx +0 -0
  727. {cython-3.1.2 → cython-3.1.4}/docs/examples/userguide/numpy_tutorial/compute_memview.py +0 -0
  728. {cython-3.1.2 → cython-3.1.4}/docs/examples/userguide/numpy_tutorial/compute_memview.pyx +0 -0
  729. {cython-3.1.2 → cython-3.1.4}/docs/examples/userguide/numpy_tutorial/compute_prange.py +0 -0
  730. {cython-3.1.2 → cython-3.1.4}/docs/examples/userguide/numpy_tutorial/compute_prange.pyx +0 -0
  731. {cython-3.1.2 → cython-3.1.4}/docs/examples/userguide/numpy_tutorial/compute_py.py +0 -0
  732. {cython-3.1.2 → cython-3.1.4}/docs/examples/userguide/numpy_tutorial/compute_typed.py +0 -0
  733. {cython-3.1.2 → cython-3.1.4}/docs/examples/userguide/numpy_tutorial/compute_typed.pyx +0 -0
  734. {cython-3.1.2 → cython-3.1.4}/docs/examples/userguide/numpy_tutorial/numpy_and_cython.ipynb +0 -0
  735. {cython-3.1.2 → cython-3.1.4}/docs/examples/userguide/numpy_ufuncs/ufunc.py +0 -0
  736. {cython-3.1.2 → cython-3.1.4}/docs/examples/userguide/numpy_ufuncs/ufunc.pyx +0 -0
  737. {cython-3.1.2 → cython-3.1.4}/docs/examples/userguide/numpy_ufuncs/ufunc_ctuple.py +0 -0
  738. {cython-3.1.2 → cython-3.1.4}/docs/examples/userguide/numpy_ufuncs/ufunc_ctuple.pyx +0 -0
  739. {cython-3.1.2 → cython-3.1.4}/docs/examples/userguide/numpy_ufuncs/ufunc_fused.py +0 -0
  740. {cython-3.1.2 → cython-3.1.4}/docs/examples/userguide/numpy_ufuncs/ufunc_fused.pyx +0 -0
  741. {cython-3.1.2 → cython-3.1.4}/docs/examples/userguide/parallelism/breaking_loop.py +0 -0
  742. {cython-3.1.2 → cython-3.1.4}/docs/examples/userguide/parallelism/breaking_loop.pyx +0 -0
  743. {cython-3.1.2 → cython-3.1.4}/docs/examples/userguide/parallelism/cimport_openmp.py +0 -0
  744. {cython-3.1.2 → cython-3.1.4}/docs/examples/userguide/parallelism/cimport_openmp.pyx +0 -0
  745. {cython-3.1.2 → cython-3.1.4}/docs/examples/userguide/parallelism/condition_sum.py +0 -0
  746. {cython-3.1.2 → cython-3.1.4}/docs/examples/userguide/parallelism/condition_sum.pyx +0 -0
  747. {cython-3.1.2 → cython-3.1.4}/docs/examples/userguide/parallelism/memoryview_sum.py +0 -0
  748. {cython-3.1.2 → cython-3.1.4}/docs/examples/userguide/parallelism/memoryview_sum.pyx +0 -0
  749. {cython-3.1.2 → cython-3.1.4}/docs/examples/userguide/parallelism/parallel.py +0 -0
  750. {cython-3.1.2 → cython-3.1.4}/docs/examples/userguide/parallelism/parallel.pyx +0 -0
  751. {cython-3.1.2 → cython-3.1.4}/docs/examples/userguide/parallelism/setup_py.py +0 -0
  752. {cython-3.1.2 → cython-3.1.4}/docs/examples/userguide/parallelism/setup_pyx.py +0 -0
  753. {cython-3.1.2 → cython-3.1.4}/docs/examples/userguide/parallelism/simple_sum.py +0 -0
  754. {cython-3.1.2 → cython-3.1.4}/docs/examples/userguide/parallelism/simple_sum.pyx +0 -0
  755. {cython-3.1.2 → cython-3.1.4}/docs/examples/userguide/sharing_declarations/c_lunch.pxd +0 -0
  756. {cython-3.1.2 → cython-3.1.4}/docs/examples/userguide/sharing_declarations/dishes.pxd +0 -0
  757. {cython-3.1.2 → cython-3.1.4}/docs/examples/userguide/sharing_declarations/landscaping.py +0 -0
  758. {cython-3.1.2 → cython-3.1.4}/docs/examples/userguide/sharing_declarations/landscaping.pyx +0 -0
  759. {cython-3.1.2 → cython-3.1.4}/docs/examples/userguide/sharing_declarations/lunch.h +0 -0
  760. {cython-3.1.2 → cython-3.1.4}/docs/examples/userguide/sharing_declarations/lunch.py +0 -0
  761. {cython-3.1.2 → cython-3.1.4}/docs/examples/userguide/sharing_declarations/lunch.pyx +0 -0
  762. {cython-3.1.2 → cython-3.1.4}/docs/examples/userguide/sharing_declarations/restaurant.py +0 -0
  763. {cython-3.1.2 → cython-3.1.4}/docs/examples/userguide/sharing_declarations/restaurant.pyx +0 -0
  764. {cython-3.1.2 → cython-3.1.4}/docs/examples/userguide/sharing_declarations/setup_py.py +0 -0
  765. {cython-3.1.2 → cython-3.1.4}/docs/examples/userguide/sharing_declarations/setup_pyx.py +0 -0
  766. {cython-3.1.2 → cython-3.1.4}/docs/examples/userguide/sharing_declarations/shrubbing.pxd +0 -0
  767. {cython-3.1.2 → cython-3.1.4}/docs/examples/userguide/sharing_declarations/shrubbing.py +0 -0
  768. {cython-3.1.2 → cython-3.1.4}/docs/examples/userguide/sharing_declarations/shrubbing.pyx +0 -0
  769. {cython-3.1.2 → cython-3.1.4}/docs/examples/userguide/sharing_declarations/spammery.py +0 -0
  770. {cython-3.1.2 → cython-3.1.4}/docs/examples/userguide/sharing_declarations/spammery.pyx +0 -0
  771. {cython-3.1.2 → cython-3.1.4}/docs/examples/userguide/sharing_declarations/volume.pxd +0 -0
  772. {cython-3.1.2 → cython-3.1.4}/docs/examples/userguide/sharing_declarations/volume.py +0 -0
  773. {cython-3.1.2 → cython-3.1.4}/docs/examples/userguide/sharing_declarations/volume.pyx +0 -0
  774. {cython-3.1.2 → cython-3.1.4}/docs/examples/userguide/special_methods/total_ordering.py +0 -0
  775. {cython-3.1.2 → cython-3.1.4}/docs/examples/userguide/special_methods/total_ordering.pyx +0 -0
  776. {cython-3.1.2 → cython-3.1.4}/docs/examples/userguide/wrapping_CPlusPlus/Rectangle.cpp +0 -0
  777. {cython-3.1.2 → cython-3.1.4}/docs/examples/userguide/wrapping_CPlusPlus/Rectangle.h +0 -0
  778. {cython-3.1.2 → cython-3.1.4}/docs/examples/userguide/wrapping_CPlusPlus/Rectangle.pxd +0 -0
  779. {cython-3.1.2 → cython-3.1.4}/docs/examples/userguide/wrapping_CPlusPlus/cython_usage.pyx +0 -0
  780. {cython-3.1.2 → cython-3.1.4}/docs/examples/userguide/wrapping_CPlusPlus/function_templates.pyx +0 -0
  781. {cython-3.1.2 → cython-3.1.4}/docs/examples/userguide/wrapping_CPlusPlus/iterate.pyx +0 -0
  782. {cython-3.1.2 → cython-3.1.4}/docs/examples/userguide/wrapping_CPlusPlus/nested_class.pyx +0 -0
  783. {cython-3.1.2 → cython-3.1.4}/docs/examples/userguide/wrapping_CPlusPlus/python_to_cpp.pyx +0 -0
  784. {cython-3.1.2 → cython-3.1.4}/docs/examples/userguide/wrapping_CPlusPlus/rect.pyx +0 -0
  785. {cython-3.1.2 → cython-3.1.4}/docs/examples/userguide/wrapping_CPlusPlus/rect_ptr.pyx +0 -0
  786. {cython-3.1.2 → cython-3.1.4}/docs/examples/userguide/wrapping_CPlusPlus/rect_with_attributes.pyx +0 -0
  787. {cython-3.1.2 → cython-3.1.4}/docs/examples/userguide/wrapping_CPlusPlus/setup.py +0 -0
  788. {cython-3.1.2 → cython-3.1.4}/docs/examples/userguide/wrapping_CPlusPlus/templates.pyx +0 -0
  789. {cython-3.1.2 → cython-3.1.4}/docs/examples/userguide/wrapping_CPlusPlus/vector_demo.pyx +0 -0
  790. {cython-3.1.2 → cython-3.1.4}/docs/examples/userguide/wrapping_CPlusPlus/wrapper_vector.pyx +0 -0
  791. {cython-3.1.2 → cython-3.1.4}/docs/index.rst +0 -0
  792. {cython-3.1.2 → cython-3.1.4}/docs/make.bat +0 -0
  793. {cython-3.1.2 → cython-3.1.4}/docs/src/changes.rst +0 -0
  794. {cython-3.1.2 → cython-3.1.4}/docs/src/cimport-warning +0 -0
  795. {cython-3.1.2 → cython-3.1.4}/docs/src/donating.rst +0 -0
  796. {cython-3.1.2 → cython-3.1.4}/docs/src/quickstart/build.rst +0 -0
  797. {cython-3.1.2 → cython-3.1.4}/docs/src/quickstart/cython_in_jupyter.ipynb +0 -0
  798. {cython-3.1.2 → cython-3.1.4}/docs/src/quickstart/cythonize.rst +0 -0
  799. {cython-3.1.2 → cython-3.1.4}/docs/src/quickstart/demo.pyx +0 -0
  800. {cython-3.1.2 → cython-3.1.4}/docs/src/quickstart/htmlreport_py.png +0 -0
  801. {cython-3.1.2 → cython-3.1.4}/docs/src/quickstart/htmlreport_pyx.png +0 -0
  802. {cython-3.1.2 → cython-3.1.4}/docs/src/quickstart/index.rst +0 -0
  803. {cython-3.1.2 → cython-3.1.4}/docs/src/quickstart/install.rst +0 -0
  804. {cython-3.1.2 → cython-3.1.4}/docs/src/quickstart/jupyter.png +0 -0
  805. {cython-3.1.2 → cython-3.1.4}/docs/src/quickstart/overview.rst +0 -0
  806. {cython-3.1.2 → cython-3.1.4}/docs/src/reference/compilation.rst +0 -0
  807. {cython-3.1.2 → cython-3.1.4}/docs/src/reference/directives.rst +0 -0
  808. {cython-3.1.2 → cython-3.1.4}/docs/src/reference/extension_types.rst +0 -0
  809. {cython-3.1.2 → cython-3.1.4}/docs/src/reference/index.rst +0 -0
  810. {cython-3.1.2 → cython-3.1.4}/docs/src/reference/interfacing_with_other_code.rst +0 -0
  811. {cython-3.1.2 → cython-3.1.4}/docs/src/reference/language_basics.rst +0 -0
  812. {cython-3.1.2 → cython-3.1.4}/docs/src/reference/limitations.rst +0 -0
  813. {cython-3.1.2 → cython-3.1.4}/docs/src/reference/special_mention.rst +0 -0
  814. {cython-3.1.2 → cython-3.1.4}/docs/src/reference/special_methods_table.rst +0 -0
  815. {cython-3.1.2 → cython-3.1.4}/docs/src/tutorial/annotation_typing_table.csv +0 -0
  816. {cython-3.1.2 → cython-3.1.4}/docs/src/tutorial/appendix.rst +0 -0
  817. {cython-3.1.2 → cython-3.1.4}/docs/src/tutorial/array.rst +0 -0
  818. {cython-3.1.2 → cython-3.1.4}/docs/src/tutorial/caveats.rst +0 -0
  819. {cython-3.1.2 → cython-3.1.4}/docs/src/tutorial/cdef_classes.rst +0 -0
  820. {cython-3.1.2 → cython-3.1.4}/docs/src/tutorial/clibraries.rst +0 -0
  821. {cython-3.1.2 → cython-3.1.4}/docs/src/tutorial/cython_tutorial.rst +0 -0
  822. {cython-3.1.2 → cython-3.1.4}/docs/src/tutorial/data.py +0 -0
  823. {cython-3.1.2 → cython-3.1.4}/docs/src/tutorial/embedding.rst +0 -0
  824. {cython-3.1.2 → cython-3.1.4}/docs/src/tutorial/external.rst +0 -0
  825. {cython-3.1.2 → cython-3.1.4}/docs/src/tutorial/htmlreport_py.png +0 -0
  826. {cython-3.1.2 → cython-3.1.4}/docs/src/tutorial/htmlreport_pyx.png +0 -0
  827. {cython-3.1.2 → cython-3.1.4}/docs/src/tutorial/index.rst +0 -0
  828. {cython-3.1.2 → cython-3.1.4}/docs/src/tutorial/memory_allocation.rst +0 -0
  829. {cython-3.1.2 → cython-3.1.4}/docs/src/tutorial/numpy.rst +0 -0
  830. {cython-3.1.2 → cython-3.1.4}/docs/src/tutorial/parallelization.rst +0 -0
  831. {cython-3.1.2 → cython-3.1.4}/docs/src/tutorial/profiling_tutorial.rst +0 -0
  832. {cython-3.1.2 → cython-3.1.4}/docs/src/tutorial/pure.rst +0 -0
  833. {cython-3.1.2 → cython-3.1.4}/docs/src/tutorial/pxd_files.rst +0 -0
  834. {cython-3.1.2 → cython-3.1.4}/docs/src/tutorial/python_division.png +0 -0
  835. {cython-3.1.2 → cython-3.1.4}/docs/src/tutorial/readings.rst +0 -0
  836. {cython-3.1.2 → cython-3.1.4}/docs/src/tutorial/related_work.rst +0 -0
  837. {cython-3.1.2 → cython-3.1.4}/docs/src/tutorial/strings.rst +0 -0
  838. {cython-3.1.2 → cython-3.1.4}/docs/src/two-syntax-variants-used +0 -0
  839. {cython-3.1.2 → cython-3.1.4}/docs/src/userguide/buffer.rst +0 -0
  840. {cython-3.1.2 → cython-3.1.4}/docs/src/userguide/compute_typed_py_html.png +0 -0
  841. {cython-3.1.2 → cython-3.1.4}/docs/src/userguide/compute_typed_pyx_html.png +0 -0
  842. {cython-3.1.2 → cython-3.1.4}/docs/src/userguide/cpow_table.csv +0 -0
  843. {cython-3.1.2 → cython-3.1.4}/docs/src/userguide/debugging.rst +0 -0
  844. {cython-3.1.2 → cython-3.1.4}/docs/src/userguide/early_binding_for_speed.rst +0 -0
  845. {cython-3.1.2 → cython-3.1.4}/docs/src/userguide/extension_types.rst +0 -0
  846. {cython-3.1.2 → cython-3.1.4}/docs/src/userguide/external_C_code.rst +0 -0
  847. {cython-3.1.2 → cython-3.1.4}/docs/src/userguide/faq.rst +0 -0
  848. {cython-3.1.2 → cython-3.1.4}/docs/src/userguide/freethreading.rst +0 -0
  849. {cython-3.1.2 → cython-3.1.4}/docs/src/userguide/fusedtypes.rst +0 -0
  850. {cython-3.1.2 → cython-3.1.4}/docs/src/userguide/glossary.rst +0 -0
  851. {cython-3.1.2 → cython-3.1.4}/docs/src/userguide/index.rst +0 -0
  852. {cython-3.1.2 → cython-3.1.4}/docs/src/userguide/language_basics.rst +0 -0
  853. {cython-3.1.2 → cython-3.1.4}/docs/src/userguide/limitations.rst +0 -0
  854. {cython-3.1.2 → cython-3.1.4}/docs/src/userguide/memoryviews.rst +0 -0
  855. {cython-3.1.2 → cython-3.1.4}/docs/src/userguide/nogil.rst +0 -0
  856. {cython-3.1.2 → cython-3.1.4}/docs/src/userguide/numpy_pythran.rst +0 -0
  857. {cython-3.1.2 → cython-3.1.4}/docs/src/userguide/numpy_tutorial.rst +0 -0
  858. {cython-3.1.2 → cython-3.1.4}/docs/src/userguide/numpy_ufuncs.rst +0 -0
  859. {cython-3.1.2 → cython-3.1.4}/docs/src/userguide/parallelism.rst +0 -0
  860. {cython-3.1.2 → cython-3.1.4}/docs/src/userguide/pypy.rst +0 -0
  861. {cython-3.1.2 → cython-3.1.4}/docs/src/userguide/pyrex_differences.rst +0 -0
  862. {cython-3.1.2 → cython-3.1.4}/docs/src/userguide/sharing_declarations.rst +0 -0
  863. {cython-3.1.2 → cython-3.1.4}/docs/src/userguide/special_methods.rst +0 -0
  864. {cython-3.1.2 → cython-3.1.4}/docs/src/userguide/troubleshooting.rst +0 -0
  865. {cython-3.1.2 → cython-3.1.4}/docs/src/userguide/wrapping_CPlusPlus.rst +0 -0
  866. {cython-3.1.2 → cython-3.1.4}/pylintrc +0 -0
  867. {cython-3.1.2 → cython-3.1.4}/pyximport/PKG-INFO +0 -0
  868. {cython-3.1.2 → cython-3.1.4}/pyximport/__init__.py +0 -0
  869. {cython-3.1.2 → cython-3.1.4}/pyximport/pyxbuild.py +0 -0
  870. {cython-3.1.2 → cython-3.1.4}/pyximport/pyximport.py +0 -0
  871. {cython-3.1.2 → cython-3.1.4}/pyximport/test/test_pyximport.py +0 -0
  872. {cython-3.1.2 → cython-3.1.4}/pyximport/test/test_reload.py +0 -0
  873. {cython-3.1.2 → cython-3.1.4}/setup.cfg +0 -0
  874. {cython-3.1.2 → cython-3.1.4}/setup.py +0 -0
  875. {cython-3.1.2 → cython-3.1.4}/test-requirements-313.txt +0 -0
  876. {cython-3.1.2 → cython-3.1.4}/tests/broken/b_extimpinherit.pyx +0 -0
  877. {cython-3.1.2 → cython-3.1.4}/tests/broken/big_t.pyx +0 -0
  878. {cython-3.1.2 → cython-3.1.4}/tests/broken/builtinconst.pyx +0 -0
  879. {cython-3.1.2 → cython-3.1.4}/tests/broken/builtindict.pyx +0 -0
  880. {cython-3.1.2 → cython-3.1.4}/tests/broken/cascadedass.pyx +0 -0
  881. {cython-3.1.2 → cython-3.1.4}/tests/broken/cexportfunc.pyx +0 -0
  882. {cython-3.1.2 → cython-3.1.4}/tests/broken/cimport.pyx +0 -0
  883. {cython-3.1.2 → cython-3.1.4}/tests/broken/cimportfrom.pyx +0 -0
  884. {cython-3.1.2 → cython-3.1.4}/tests/broken/cimportfrompkgdir.pyx +0 -0
  885. {cython-3.1.2 → cython-3.1.4}/tests/broken/cimportfunc.pyx +0 -0
  886. {cython-3.1.2 → cython-3.1.4}/tests/broken/ctypedefextern.pyx +0 -0
  887. {cython-3.1.2 → cython-3.1.4}/tests/broken/externfunc.pyx +0 -0
  888. {cython-3.1.2 → cython-3.1.4}/tests/broken/externsue.pyx +0 -0
  889. {cython-3.1.2 → cython-3.1.4}/tests/broken/fwddeclcclass.pyx +0 -0
  890. {cython-3.1.2 → cython-3.1.4}/tests/broken/getattr.pyx +0 -0
  891. {cython-3.1.2 → cython-3.1.4}/tests/broken/getattr3ref.pyx +0 -0
  892. {cython-3.1.2 → cython-3.1.4}/tests/broken/i_public.pyx +0 -0
  893. {cython-3.1.2 → cython-3.1.4}/tests/broken/includepublic.pyx +0 -0
  894. {cython-3.1.2 → cython-3.1.4}/tests/broken/intindex.pyx +0 -0
  895. {cython-3.1.2 → cython-3.1.4}/tests/broken/invalid-module-name.pyx +0 -0
  896. {cython-3.1.2 → cython-3.1.4}/tests/broken/l_capi.pyx +0 -0
  897. {cython-3.1.2 → cython-3.1.4}/tests/broken/l_cfuncexport.pyx +0 -0
  898. {cython-3.1.2 → cython-3.1.4}/tests/broken/naanou_1.pyx +0 -0
  899. {cython-3.1.2 → cython-3.1.4}/tests/broken/pkg.cimport.pyx +0 -0
  900. {cython-3.1.2 → cython-3.1.4}/tests/broken/pkg.cimportfrom.pyx +0 -0
  901. {cython-3.1.2 → cython-3.1.4}/tests/broken/plex2.pyx +0 -0
  902. {cython-3.1.2 → cython-3.1.4}/tests/broken/r_capi.pyx +0 -0
  903. {cython-3.1.2 → cython-3.1.4}/tests/broken/r_cfuncimport.pyx +0 -0
  904. {cython-3.1.2 → cython-3.1.4}/tests/broken/r_classdoc.pyx +0 -0
  905. {cython-3.1.2 → cython-3.1.4}/tests/broken/r_classmodname.pyx +0 -0
  906. {cython-3.1.2 → cython-3.1.4}/tests/broken/r_excval.pyx +0 -0
  907. {cython-3.1.2 → cython-3.1.4}/tests/broken/r_extimpinherit.pyx +0 -0
  908. {cython-3.1.2 → cython-3.1.4}/tests/broken/r_extinherit.pyx +0 -0
  909. {cython-3.1.2 → cython-3.1.4}/tests/broken/r_extmember.pyx +0 -0
  910. {cython-3.1.2 → cython-3.1.4}/tests/broken/r_extnumeric2.pyx +0 -0
  911. {cython-3.1.2 → cython-3.1.4}/tests/broken/r_extproperty.pyx +0 -0
  912. {cython-3.1.2 → cython-3.1.4}/tests/broken/r_extweakref.pyx +0 -0
  913. {cython-3.1.2 → cython-3.1.4}/tests/broken/r_getattr3.pyx +0 -0
  914. {cython-3.1.2 → cython-3.1.4}/tests/broken/r_import.pyx +0 -0
  915. {cython-3.1.2 → cython-3.1.4}/tests/broken/r_inhcmethcall.pyx +0 -0
  916. {cython-3.1.2 → cython-3.1.4}/tests/broken/r_kwonlyargs.pyx +0 -0
  917. {cython-3.1.2 → cython-3.1.4}/tests/broken/r_newstyleclass.pyx +0 -0
  918. {cython-3.1.2 → cython-3.1.4}/tests/broken/r_simpcall.pyx +0 -0
  919. {cython-3.1.2 → cython-3.1.4}/tests/broken/r_tbfilename.pyx +0 -0
  920. {cython-3.1.2 → cython-3.1.4}/tests/broken/r_traceback.pyx +0 -0
  921. {cython-3.1.2 → cython-3.1.4}/tests/broken/r_unpack.pyx +0 -0
  922. {cython-3.1.2 → cython-3.1.4}/tests/broken/raise.pyx +0 -0
  923. {cython-3.1.2 → cython-3.1.4}/tests/broken/retconvert.pyx +0 -0
  924. {cython-3.1.2 → cython-3.1.4}/tests/broken/test_include_options.pyx +0 -0
  925. {cython-3.1.2 → cython-3.1.4}/tests/broken/tryexceptelse.pyx +0 -0
  926. {cython-3.1.2 → cython-3.1.4}/tests/broken/tslots.pyx +0 -0
  927. {cython-3.1.2 → cython-3.1.4}/tests/buffers/bufaccess.h +0 -0
  928. {cython-3.1.2 → cython-3.1.4}/tests/buffers/bufaccess.pyx +0 -0
  929. {cython-3.1.2 → cython-3.1.4}/tests/buffers/buffer.pyx +0 -0
  930. {cython-3.1.2 → cython-3.1.4}/tests/buffers/buffmt.pyx +0 -0
  931. {cython-3.1.2 → cython-3.1.4}/tests/buffers/mockbuffers.pxi +0 -0
  932. {cython-3.1.2 → cython-3.1.4}/tests/buffers/userbuffer.pyx +0 -0
  933. {cython-3.1.2 → cython-3.1.4}/tests/bugs.txt +0 -0
  934. {cython-3.1.2 → cython-3.1.4}/tests/build/basic_cythonize.srctree +0 -0
  935. {cython-3.1.2 → cython-3.1.4}/tests/build/basic_distutils.srctree +0 -0
  936. {cython-3.1.2 → cython-3.1.4}/tests/build/build_dir.srctree +0 -0
  937. {cython-3.1.2 → cython-3.1.4}/tests/build/build_dir_src.srctree +0 -0
  938. {cython-3.1.2 → cython-3.1.4}/tests/build/build_ext_cython_c_in_temp.srctree +0 -0
  939. {cython-3.1.2 → cython-3.1.4}/tests/build/build_ext_cython_cplus.srctree +0 -0
  940. {cython-3.1.2 → cython-3.1.4}/tests/build/build_ext_cython_include_dirs.srctree +0 -0
  941. {cython-3.1.2 → cython-3.1.4}/tests/build/common_include_dir.srctree +0 -0
  942. {cython-3.1.2 → cython-3.1.4}/tests/build/compile_env_distutils.srctree +0 -0
  943. {cython-3.1.2 → cython-3.1.4}/tests/build/cpp_cythonize.srctree +0 -0
  944. {cython-3.1.2 → cython-3.1.4}/tests/build/cython_language_level.srctree +0 -0
  945. {cython-3.1.2 → cython-3.1.4}/tests/build/cythonize_additional_sources.srctree +0 -0
  946. {cython-3.1.2 → cython-3.1.4}/tests/build/cythonize_additional_sources_ext.srctree +0 -0
  947. {cython-3.1.2 → cython-3.1.4}/tests/build/cythonize_cymeit.srctree +0 -0
  948. {cython-3.1.2 → cython-3.1.4}/tests/build/cythonize_cython.srctree +0 -0
  949. {cython-3.1.2 → cython-3.1.4}/tests/build/cythonize_glob.srctree +0 -0
  950. {cython-3.1.2 → cython-3.1.4}/tests/build/cythonize_newer_files.srctree +0 -0
  951. {cython-3.1.2 → cython-3.1.4}/tests/build/cythonize_options.srctree +0 -0
  952. {cython-3.1.2 → cython-3.1.4}/tests/build/cythonize_pep420_namespace.srctree +0 -0
  953. {cython-3.1.2 → cython-3.1.4}/tests/build/cythonize_rename_ext.srctree +0 -0
  954. {cython-3.1.2 → cython-3.1.4}/tests/build/cythonize_script.srctree +0 -0
  955. {cython-3.1.2 → cython-3.1.4}/tests/build/cythonize_script_excludes.srctree +0 -0
  956. {cython-3.1.2 → cython-3.1.4}/tests/build/cythonize_script_package.srctree +0 -0
  957. {cython-3.1.2 → cython-3.1.4}/tests/build/cythonize_with_annotate.srctree +0 -0
  958. {cython-3.1.2 → cython-3.1.4}/tests/build/cythonize_with_annotate_via_Options.srctree +0 -0
  959. {cython-3.1.2 → cython-3.1.4}/tests/build/cythonize_with_annotate_via_cli.srctree +0 -0
  960. {cython-3.1.2 → cython-3.1.4}/tests/build/depfile.srctree +0 -0
  961. {cython-3.1.2 → cython-3.1.4}/tests/build/depfile_numpy.srctree +0 -0
  962. {cython-3.1.2 → cython-3.1.4}/tests/build/depfile_package_cython.srctree +0 -0
  963. {cython-3.1.2 → cython-3.1.4}/tests/build/depfile_package_cythonize.srctree +0 -0
  964. {cython-3.1.2 → cython-3.1.4}/tests/build/dotted.filename.modules.pxd +0 -0
  965. {cython-3.1.2 → cython-3.1.4}/tests/build/dotted.filename.modules.pyx +0 -0
  966. {cython-3.1.2 → cython-3.1.4}/tests/build/inline_distutils.srctree +0 -0
  967. {cython-3.1.2 → cython-3.1.4}/tests/build/module_api.srctree +0 -0
  968. {cython-3.1.2 → cython-3.1.4}/tests/build/package_compilation.srctree +0 -0
  969. {cython-3.1.2 → cython-3.1.4}/tests/build/run_cython_not_in_cwd.srctree +0 -0
  970. {cython-3.1.2 → cython-3.1.4}/tests/build/setuptools_reimport.srctree +0 -0
  971. {cython-3.1.2 → cython-3.1.4}/tests/compile/a/__init__.py +0 -0
  972. {cython-3.1.2 → cython-3.1.4}/tests/compile/a/b.pxd +0 -0
  973. {cython-3.1.2 → cython-3.1.4}/tests/compile/a_capi.pyx +0 -0
  974. {cython-3.1.2 → cython-3.1.4}/tests/compile/altet1.h +0 -0
  975. {cython-3.1.2 → cython-3.1.4}/tests/compile/altet1.pyx.BROKEN +0 -0
  976. {cython-3.1.2 → cython-3.1.4}/tests/compile/argdefault.pyx +0 -0
  977. {cython-3.1.2 → cython-3.1.4}/tests/compile/arrayargs.pyx +0 -0
  978. {cython-3.1.2 → cython-3.1.4}/tests/compile/arrayptrcompat.pyx +0 -0
  979. {cython-3.1.2 → cython-3.1.4}/tests/compile/arraytoptrarg.pyx +0 -0
  980. {cython-3.1.2 → cython-3.1.4}/tests/compile/ass2longlong.pyx +0 -0
  981. {cython-3.1.2 → cython-3.1.4}/tests/compile/assert2.pyx +0 -0
  982. {cython-3.1.2 → cython-3.1.4}/tests/compile/behnel4.pyx +0 -0
  983. {cython-3.1.2 → cython-3.1.4}/tests/compile/belchenko1.pyx +0 -0
  984. {cython-3.1.2 → cython-3.1.4}/tests/compile/belchenko2.h +0 -0
  985. {cython-3.1.2 → cython-3.1.4}/tests/compile/belchenko2.pyx.BROKEN +0 -0
  986. {cython-3.1.2 → cython-3.1.4}/tests/compile/branch_hints.pyx +0 -0
  987. {cython-3.1.2 → cython-3.1.4}/tests/compile/buildenv.pyx +0 -0
  988. {cython-3.1.2 → cython-3.1.4}/tests/compile/builtin.pyx +0 -0
  989. {cython-3.1.2 → cython-3.1.4}/tests/compile/builtin_complex.pyx +0 -0
  990. {cython-3.1.2 → cython-3.1.4}/tests/compile/builtinbuffer.py +0 -0
  991. {cython-3.1.2 → cython-3.1.4}/tests/compile/builtinfuncs.pyx +0 -0
  992. {cython-3.1.2 → cython-3.1.4}/tests/compile/builtinlist.pyx +0 -0
  993. {cython-3.1.2 → cython-3.1.4}/tests/compile/burton1.pyx.BROKEN +0 -0
  994. {cython-3.1.2 → cython-3.1.4}/tests/compile/c_directives.pyx +0 -0
  995. {cython-3.1.2 → cython-3.1.4}/tests/compile/callingconvention.srctree +0 -0
  996. {cython-3.1.2 → cython-3.1.4}/tests/compile/cargdef.pyx +0 -0
  997. {cython-3.1.2 → cython-3.1.4}/tests/compile/carrdecl.pyx +0 -0
  998. {cython-3.1.2 → cython-3.1.4}/tests/compile/cassign.pyx +0 -0
  999. {cython-3.1.2 → cython-3.1.4}/tests/compile/cast_ctypedef_array_T518.pyx +0 -0
  1000. {cython-3.1.2 → cython-3.1.4}/tests/compile/cast_ctypedef_array_T518_helper.h +0 -0
  1001. {cython-3.1.2 → cython-3.1.4}/tests/compile/casttoexttype.pyx +0 -0
  1002. {cython-3.1.2 → cython-3.1.4}/tests/compile/cdef_syntax.pyx +0 -0
  1003. {cython-3.1.2 → cython-3.1.4}/tests/compile/cdefemptysue.pyx +0 -0
  1004. {cython-3.1.2 → cython-3.1.4}/tests/compile/cdefexternblock.pyx +0 -0
  1005. {cython-3.1.2 → cython-3.1.4}/tests/compile/cdefexternempty.pyx +0 -0
  1006. {cython-3.1.2 → cython-3.1.4}/tests/compile/cdefexternfromstar.pyx +0 -0
  1007. {cython-3.1.2 → cython-3.1.4}/tests/compile/cenum.pyx +0 -0
  1008. {cython-3.1.2 → cython-3.1.4}/tests/compile/cforfromloop.pyx +0 -0
  1009. {cython-3.1.2 → cython-3.1.4}/tests/compile/cheese.h +0 -0
  1010. {cython-3.1.2 → cython-3.1.4}/tests/compile/chinese_code_gh6800.py +0 -0
  1011. {cython-3.1.2 → cython-3.1.4}/tests/compile/cimport_package_module_T4.pyx +0 -0
  1012. {cython-3.1.2 → cython-3.1.4}/tests/compile/cimported_class_base.srctree +0 -0
  1013. {cython-3.1.2 → cython-3.1.4}/tests/compile/cimportfrom_T248.pyx +0 -0
  1014. {cython-3.1.2 → cython-3.1.4}/tests/compile/classmethargdefault.pyx +0 -0
  1015. {cython-3.1.2 → cython-3.1.4}/tests/compile/cnamespec.pyx +0 -0
  1016. {cython-3.1.2 → cython-3.1.4}/tests/compile/cnumop.pyx +0 -0
  1017. {cython-3.1.2 → cython-3.1.4}/tests/compile/coercetovoidptr.pyx +0 -0
  1018. {cython-3.1.2 → cython-3.1.4}/tests/compile/complex_annotations.pyx +0 -0
  1019. {cython-3.1.2 → cython-3.1.4}/tests/compile/complex_decorators.pyx +0 -0
  1020. {cython-3.1.2 → cython-3.1.4}/tests/compile/complexbasetype.pyx +0 -0
  1021. {cython-3.1.2 → cython-3.1.4}/tests/compile/conditional_dependencies.srctree +0 -0
  1022. {cython-3.1.2 → cython-3.1.4}/tests/compile/const_T42.srctree +0 -0
  1023. {cython-3.1.2 → cython-3.1.4}/tests/compile/const_decl.pyx +0 -0
  1024. {cython-3.1.2 → cython-3.1.4}/tests/compile/constcast.pyx +0 -0
  1025. {cython-3.1.2 → cython-3.1.4}/tests/compile/constexpr.pyx +0 -0
  1026. {cython-3.1.2 → cython-3.1.4}/tests/compile/coventry1.pyx +0 -0
  1027. {cython-3.1.2 → cython-3.1.4}/tests/compile/cpdef.pyx +0 -0
  1028. {cython-3.1.2 → cython-3.1.4}/tests/compile/cpp_class_redefinition.pyx +0 -0
  1029. {cython-3.1.2 → cython-3.1.4}/tests/compile/cpp_nogil.h +0 -0
  1030. {cython-3.1.2 → cython-3.1.4}/tests/compile/cpp_nogil.pyx +0 -0
  1031. {cython-3.1.2 → cython-3.1.4}/tests/compile/cpp_rvalue_reference_binding.pyx +0 -0
  1032. {cython-3.1.2 → cython-3.1.4}/tests/compile/cpp_structs.pyx +0 -0
  1033. {cython-3.1.2 → cython-3.1.4}/tests/compile/cpp_temp_assignment.pyx +0 -0
  1034. {cython-3.1.2 → cython-3.1.4}/tests/compile/cpp_templated_ctypedef.pyx +0 -0
  1035. {cython-3.1.2 → cython-3.1.4}/tests/compile/cpp_templates.pyx +0 -0
  1036. {cython-3.1.2 → cython-3.1.4}/tests/compile/cpp_templates_nested.pyx +0 -0
  1037. {cython-3.1.2 → cython-3.1.4}/tests/compile/cppenum.pyx +0 -0
  1038. {cython-3.1.2 → cython-3.1.4}/tests/compile/create_extension.srctree +0 -0
  1039. {cython-3.1.2 → cython-3.1.4}/tests/compile/crunchytype.pxd +0 -0
  1040. {cython-3.1.2 → cython-3.1.4}/tests/compile/cstructreturn.pyx +0 -0
  1041. {cython-3.1.2 → cython-3.1.4}/tests/compile/ctuple_cimport.pxd +0 -0
  1042. {cython-3.1.2 → cython-3.1.4}/tests/compile/ctuple_cimport_T1427.pyx +0 -0
  1043. {cython-3.1.2 → cython-3.1.4}/tests/compile/ctuple_unused_T3543.pyx +0 -0
  1044. {cython-3.1.2 → cython-3.1.4}/tests/compile/ctypedef.pyx +0 -0
  1045. {cython-3.1.2 → cython-3.1.4}/tests/compile/ctypedef_public_class_T355.pxd +0 -0
  1046. {cython-3.1.2 → cython-3.1.4}/tests/compile/ctypedef_public_class_T355.pyx +0 -0
  1047. {cython-3.1.2 → cython-3.1.4}/tests/compile/ctypedefclass.pyx +0 -0
  1048. {cython-3.1.2 → cython-3.1.4}/tests/compile/ctypedefenum.pyx +0 -0
  1049. {cython-3.1.2 → cython-3.1.4}/tests/compile/ctypedefpubapi.pyx +0 -0
  1050. {cython-3.1.2 → cython-3.1.4}/tests/compile/ctypedefstruct.pyx +0 -0
  1051. {cython-3.1.2 → cython-3.1.4}/tests/compile/ctypedefunion.pyx +0 -0
  1052. {cython-3.1.2 → cython-3.1.4}/tests/compile/cunsignedlong.pyx +0 -0
  1053. {cython-3.1.2 → cython-3.1.4}/tests/compile/cvardef.pyx +0 -0
  1054. {cython-3.1.2 → cython-3.1.4}/tests/compile/cverylongtypes.pyx +0 -0
  1055. {cython-3.1.2 → cython-3.1.4}/tests/compile/cython_compiled_folding.pxd +0 -0
  1056. {cython-3.1.2 → cython-3.1.4}/tests/compile/cython_compiled_folding.py +0 -0
  1057. {cython-3.1.2 → cython-3.1.4}/tests/compile/declandimpl.pxd +0 -0
  1058. {cython-3.1.2 → cython-3.1.4}/tests/compile/declandimpl.pyx +0 -0
  1059. {cython-3.1.2 → cython-3.1.4}/tests/compile/declarations.srctree +0 -0
  1060. {cython-3.1.2 → cython-3.1.4}/tests/compile/del.pyx +0 -0
  1061. {cython-3.1.2 → cython-3.1.4}/tests/compile/distutils_libraries_T845.srctree +0 -0
  1062. {cython-3.1.2 → cython-3.1.4}/tests/compile/docstrings.pyx +0 -0
  1063. {cython-3.1.2 → cython-3.1.4}/tests/compile/doda1.pyx +0 -0
  1064. {cython-3.1.2 → cython-3.1.4}/tests/compile/dotted_cimport.pyx +0 -0
  1065. {cython-3.1.2 → cython-3.1.4}/tests/compile/dotted_cimport_submodule/__init__.pyx +0 -0
  1066. {cython-3.1.2 → cython-3.1.4}/tests/compile/dotted_cimport_submodule/a.pxd +0 -0
  1067. {cython-3.1.2 → cython-3.1.4}/tests/compile/drake1.pyx +0 -0
  1068. {cython-3.1.2 → cython-3.1.4}/tests/compile/ellipsis_T488.pyx +0 -0
  1069. {cython-3.1.2 → cython-3.1.4}/tests/compile/emptytry.pyx +0 -0
  1070. {cython-3.1.2 → cython-3.1.4}/tests/compile/enumintcompat.pyx +0 -0
  1071. {cython-3.1.2 → cython-3.1.4}/tests/compile/eqcmp.pyx +0 -0
  1072. {cython-3.1.2 → cython-3.1.4}/tests/compile/ewing1.pyx +0 -0
  1073. {cython-3.1.2 → cython-3.1.4}/tests/compile/ewing3.pyx +0 -0
  1074. {cython-3.1.2 → cython-3.1.4}/tests/compile/ewing4.pyx +0 -0
  1075. {cython-3.1.2 → cython-3.1.4}/tests/compile/ewing5.pyx +0 -0
  1076. {cython-3.1.2 → cython-3.1.4}/tests/compile/ewing6.pyx +0 -0
  1077. {cython-3.1.2 → cython-3.1.4}/tests/compile/ewing7.pyx +0 -0
  1078. {cython-3.1.2 → cython-3.1.4}/tests/compile/ewing8.pxd +0 -0
  1079. {cython-3.1.2 → cython-3.1.4}/tests/compile/ewing8.pyx +0 -0
  1080. {cython-3.1.2 → cython-3.1.4}/tests/compile/ewing9.pxd +0 -0
  1081. {cython-3.1.2 → cython-3.1.4}/tests/compile/ewing9.pyx +0 -0
  1082. {cython-3.1.2 → cython-3.1.4}/tests/compile/excvalcheck.h +0 -0
  1083. {cython-3.1.2 → cython-3.1.4}/tests/compile/excvalcheck.pyx +0 -0
  1084. {cython-3.1.2 → cython-3.1.4}/tests/compile/excvaldecl.pyx +0 -0
  1085. {cython-3.1.2 → cython-3.1.4}/tests/compile/excvalreturn.pyx +0 -0
  1086. {cython-3.1.2 → cython-3.1.4}/tests/compile/extargdefault.pyx +0 -0
  1087. {cython-3.1.2 → cython-3.1.4}/tests/compile/extcmethcall.pyx +0 -0
  1088. {cython-3.1.2 → cython-3.1.4}/tests/compile/extcoerce.pyx +0 -0
  1089. {cython-3.1.2 → cython-3.1.4}/tests/compile/extdelattr.pyx +0 -0
  1090. {cython-3.1.2 → cython-3.1.4}/tests/compile/extdelitem.pyx +0 -0
  1091. {cython-3.1.2 → cython-3.1.4}/tests/compile/extdescrdel.pyx +0 -0
  1092. {cython-3.1.2 → cython-3.1.4}/tests/compile/extdescrget.pyx +0 -0
  1093. {cython-3.1.2 → cython-3.1.4}/tests/compile/extdescrset.pyx +0 -0
  1094. {cython-3.1.2 → cython-3.1.4}/tests/compile/extern.pyx +0 -0
  1095. {cython-3.1.2 → cython-3.1.4}/tests/compile/extexttype.pyx +0 -0
  1096. {cython-3.1.2 → cython-3.1.4}/tests/compile/extforward.pyx +0 -0
  1097. {cython-3.1.2 → cython-3.1.4}/tests/compile/extgetattr.pyx +0 -0
  1098. {cython-3.1.2 → cython-3.1.4}/tests/compile/extgetitem.pyx +0 -0
  1099. {cython-3.1.2 → cython-3.1.4}/tests/compile/exthash.pyx +0 -0
  1100. {cython-3.1.2 → cython-3.1.4}/tests/compile/extimported.pyx +0 -0
  1101. {cython-3.1.2 → cython-3.1.4}/tests/compile/extimportedsubtype.pyx +0 -0
  1102. {cython-3.1.2 → cython-3.1.4}/tests/compile/extindex.pyx +0 -0
  1103. {cython-3.1.2 → cython-3.1.4}/tests/compile/extinheritdel.pyx +0 -0
  1104. {cython-3.1.2 → cython-3.1.4}/tests/compile/extinheritset.pyx +0 -0
  1105. {cython-3.1.2 → cython-3.1.4}/tests/compile/extpropertyall.pyx +0 -0
  1106. {cython-3.1.2 → cython-3.1.4}/tests/compile/extpropertydel.pyx +0 -0
  1107. {cython-3.1.2 → cython-3.1.4}/tests/compile/extpropertydoc.pyx +0 -0
  1108. {cython-3.1.2 → cython-3.1.4}/tests/compile/extpropertyget.pyx +0 -0
  1109. {cython-3.1.2 → cython-3.1.4}/tests/compile/extpropertyset.pyx +0 -0
  1110. {cython-3.1.2 → cython-3.1.4}/tests/compile/extpymemberdef.pyx +0 -0
  1111. {cython-3.1.2 → cython-3.1.4}/tests/compile/extsetattr.pyx +0 -0
  1112. {cython-3.1.2 → cython-3.1.4}/tests/compile/extsetitem.pyx +0 -0
  1113. {cython-3.1.2 → cython-3.1.4}/tests/compile/finally_GH1744.pyx +0 -0
  1114. {cython-3.1.2 → cython-3.1.4}/tests/compile/find_pxd.srctree +0 -0
  1115. {cython-3.1.2 → cython-3.1.4}/tests/compile/first_assignment.pyx +0 -0
  1116. {cython-3.1.2 → cython-3.1.4}/tests/compile/food.h +0 -0
  1117. {cython-3.1.2 → cython-3.1.4}/tests/compile/for.pyx +0 -0
  1118. {cython-3.1.2 → cython-3.1.4}/tests/compile/forfromelse.pyx +0 -0
  1119. {cython-3.1.2 → cython-3.1.4}/tests/compile/formfeed.pyx +0 -0
  1120. {cython-3.1.2 → cython-3.1.4}/tests/compile/forward.pyx +0 -0
  1121. {cython-3.1.2 → cython-3.1.4}/tests/compile/fromimport.pyx +0 -0
  1122. {cython-3.1.2 → cython-3.1.4}/tests/compile/fromimport_star.pyx +0 -0
  1123. {cython-3.1.2 → cython-3.1.4}/tests/compile/fused_buffers.pyx +0 -0
  1124. {cython-3.1.2 → cython-3.1.4}/tests/compile/fused_no_numpy.pyx +0 -0
  1125. {cython-3.1.2 → cython-3.1.4}/tests/compile/fused_redeclare_T3111.pyx +0 -0
  1126. {cython-3.1.2 → cython-3.1.4}/tests/compile/fused_unused.pyx +0 -0
  1127. {cython-3.1.2 → cython-3.1.4}/tests/compile/fused_wraparound.pyx +0 -0
  1128. {cython-3.1.2 → cython-3.1.4}/tests/compile/future_imports.pyx +0 -0
  1129. {cython-3.1.2 → cython-3.1.4}/tests/compile/gencall.pyx +0 -0
  1130. {cython-3.1.2 → cython-3.1.4}/tests/compile/getattr3ref.pyx.BROKEN +0 -0
  1131. {cython-3.1.2 → cython-3.1.4}/tests/compile/globalonly.pyx +0 -0
  1132. {cython-3.1.2 → cython-3.1.4}/tests/compile/globalstmt.pyx +0 -0
  1133. {cython-3.1.2 → cython-3.1.4}/tests/compile/globvardef.pyx +0 -0
  1134. {cython-3.1.2 → cython-3.1.4}/tests/compile/gustafsson2.pyx +0 -0
  1135. {cython-3.1.2 → cython-3.1.4}/tests/compile/hinsen1.h +0 -0
  1136. {cython-3.1.2 → cython-3.1.4}/tests/compile/hinsen1.pyx.BROKEN +0 -0
  1137. {cython-3.1.2 → cython-3.1.4}/tests/compile/hinsen2.pyx +0 -0
  1138. {cython-3.1.2 → cython-3.1.4}/tests/compile/huss2.pyx +0 -0
  1139. {cython-3.1.2 → cython-3.1.4}/tests/compile/ia_cdefblock.pyx +0 -0
  1140. {cython-3.1.2 → cython-3.1.4}/tests/compile/import.pyx +0 -0
  1141. {cython-3.1.2 → cython-3.1.4}/tests/compile/index.pyx +0 -0
  1142. {cython-3.1.2 → cython-3.1.4}/tests/compile/indices.pyx +0 -0
  1143. {cython-3.1.2 → cython-3.1.4}/tests/compile/inplace_lhs.pyx +0 -0
  1144. {cython-3.1.2 → cython-3.1.4}/tests/compile/inplace_lhs_nested.pyx +0 -0
  1145. {cython-3.1.2 → cython-3.1.4}/tests/compile/inplace_ops.pyx +0 -0
  1146. {cython-3.1.2 → cython-3.1.4}/tests/compile/ishimoto1.pyx +0 -0
  1147. {cython-3.1.2 → cython-3.1.4}/tests/compile/ishimoto4.pyx +0 -0
  1148. {cython-3.1.2 → cython-3.1.4}/tests/compile/jiba3.pyx +0 -0
  1149. {cython-3.1.2 → cython-3.1.4}/tests/compile/jiba4.pyx +0 -0
  1150. {cython-3.1.2 → cython-3.1.4}/tests/compile/jiba5.pyx +0 -0
  1151. {cython-3.1.2 → cython-3.1.4}/tests/compile/jiba6.pyx +0 -0
  1152. {cython-3.1.2 → cython-3.1.4}/tests/compile/johnson1.pyx +0 -0
  1153. {cython-3.1.2 → cython-3.1.4}/tests/compile/johnson2.pyx +0 -0
  1154. {cython-3.1.2 → cython-3.1.4}/tests/compile/khavkine1.pyx +0 -0
  1155. {cython-3.1.2 → cython-3.1.4}/tests/compile/kleckner1.pyx +0 -0
  1156. {cython-3.1.2 → cython-3.1.4}/tests/compile/lepage_2.pyx +0 -0
  1157. {cython-3.1.2 → cython-3.1.4}/tests/compile/libc_all.pyx +0 -0
  1158. {cython-3.1.2 → cython-3.1.4}/tests/compile/libc_errno.pyx +0 -0
  1159. {cython-3.1.2 → cython-3.1.4}/tests/compile/libc_signal.pyx +0 -0
  1160. {cython-3.1.2 → cython-3.1.4}/tests/compile/libc_stdio.pyx +0 -0
  1161. {cython-3.1.2 → cython-3.1.4}/tests/compile/longunsigned.pyx +0 -0
  1162. {cython-3.1.2 → cython-3.1.4}/tests/compile/magcmp.pyx +0 -0
  1163. {cython-3.1.2 → cython-3.1.4}/tests/compile/min_async.pyx +0 -0
  1164. {cython-3.1.2 → cython-3.1.4}/tests/compile/module_name_arg.srctree +0 -0
  1165. {cython-3.1.2 → cython-3.1.4}/tests/compile/msvc_strings.pyx +0 -0
  1166. {cython-3.1.2 → cython-3.1.4}/tests/compile/nogil.h +0 -0
  1167. {cython-3.1.2 → cython-3.1.4}/tests/compile/nogil.pyx +0 -0
  1168. {cython-3.1.2 → cython-3.1.4}/tests/compile/nogil_perf_hints.pyx +0 -0
  1169. {cython-3.1.2 → cython-3.1.4}/tests/compile/nogil_perf_hints_pxd.pxd +0 -0
  1170. {cython-3.1.2 → cython-3.1.4}/tests/compile/nonctypedefclass.pyx +0 -0
  1171. {cython-3.1.2 → cython-3.1.4}/tests/compile/none.pyx +0 -0
  1172. {cython-3.1.2 → cython-3.1.4}/tests/compile/notnonearg.pyx +0 -0
  1173. {cython-3.1.2 → cython-3.1.4}/tests/compile/nullptr.pyx +0 -0
  1174. {cython-3.1.2 → cython-3.1.4}/tests/compile/omittedargnames.pyx +0 -0
  1175. {cython-3.1.2 → cython-3.1.4}/tests/compile/operators.h +0 -0
  1176. {cython-3.1.2 → cython-3.1.4}/tests/compile/packed_structs.pyx +0 -0
  1177. {cython-3.1.2 → cython-3.1.4}/tests/compile/parallel_compile_float_rank.pyx +0 -0
  1178. {cython-3.1.2 → cython-3.1.4}/tests/compile/pinard4.pyx +0 -0
  1179. {cython-3.1.2 → cython-3.1.4}/tests/compile/point.h +0 -0
  1180. {cython-3.1.2 → cython-3.1.4}/tests/compile/posix_pxds.pyx +0 -0
  1181. {cython-3.1.2 → cython-3.1.4}/tests/compile/profile_exttypereturn.pyx +0 -0
  1182. {cython-3.1.2 → cython-3.1.4}/tests/compile/publicapi_api.pyx +0 -0
  1183. {cython-3.1.2 → cython-3.1.4}/tests/compile/publicapi_cimport.pyx +0 -0
  1184. {cython-3.1.2 → cython-3.1.4}/tests/compile/publicapi_mix.pyx +0 -0
  1185. {cython-3.1.2 → cython-3.1.4}/tests/compile/publicapi_pub.pyx +0 -0
  1186. {cython-3.1.2 → cython-3.1.4}/tests/compile/publicapi_pxd_mix.pxd +0 -0
  1187. {cython-3.1.2 → cython-3.1.4}/tests/compile/publicapi_pxd_mix.pyx +0 -0
  1188. {cython-3.1.2 → cython-3.1.4}/tests/compile/pxd_mangling_names.srctree +0 -0
  1189. {cython-3.1.2 → cython-3.1.4}/tests/compile/pxd_override_T230.pxd +0 -0
  1190. {cython-3.1.2 → cython-3.1.4}/tests/compile/pxd_override_T230.py +0 -0
  1191. {cython-3.1.2 → cython-3.1.4}/tests/compile/pyclass.pyx +0 -0
  1192. {cython-3.1.2 → cython-3.1.4}/tests/compile/pylong.pyx +0 -0
  1193. {cython-3.1.2 → cython-3.1.4}/tests/compile/r_pernici1.pyx +0 -0
  1194. {cython-3.1.2 → cython-3.1.4}/tests/compile/signedtypes.pyx +0 -0
  1195. {cython-3.1.2 → cython-3.1.4}/tests/compile/simple_async_coroutine.py +0 -0
  1196. {cython-3.1.2 → cython-3.1.4}/tests/compile/slicex.pyx +0 -0
  1197. {cython-3.1.2 → cython-3.1.4}/tests/compile/specialfloatvals.pyx +0 -0
  1198. {cython-3.1.2 → cython-3.1.4}/tests/compile/specmethargdefault.pyx +0 -0
  1199. {cython-3.1.2 → cython-3.1.4}/tests/compile/specmethdocstring.pyx +0 -0
  1200. {cython-3.1.2 → cython-3.1.4}/tests/compile/specmethextarg.pyx +0 -0
  1201. {cython-3.1.2 → cython-3.1.4}/tests/compile/stop_async_iteration_exception_pep492.pyx +0 -0
  1202. {cython-3.1.2 → cython-3.1.4}/tests/compile/templates.h +0 -0
  1203. {cython-3.1.2 → cython-3.1.4}/tests/compile/traceback.pyx +0 -0
  1204. {cython-3.1.2 → cython-3.1.4}/tests/compile/tree_assertions.pyx +0 -0
  1205. {cython-3.1.2 → cython-3.1.4}/tests/compile/tryexcept.pyx +0 -0
  1206. {cython-3.1.2 → cython-3.1.4}/tests/compile/tryfinally.pyx +0 -0
  1207. {cython-3.1.2 → cython-3.1.4}/tests/compile/typecast.pyx +0 -0
  1208. {cython-3.1.2 → cython-3.1.4}/tests/compile/types_and_names.pxd +0 -0
  1209. {cython-3.1.2 → cython-3.1.4}/tests/compile/types_and_names.pyx +0 -0
  1210. {cython-3.1.2 → cython-3.1.4}/tests/compile/utf8bom.pyx +0 -0
  1211. {cython-3.1.2 → cython-3.1.4}/tests/compile/vector_include.pyx +0 -0
  1212. {cython-3.1.2 → cython-3.1.4}/tests/compile/verbatiminclude_cimport.srctree +0 -0
  1213. {cython-3.1.2 → cython-3.1.4}/tests/compile/volatile.pyx +0 -0
  1214. {cython-3.1.2 → cython-3.1.4}/tests/compile/watts2.pyx +0 -0
  1215. {cython-3.1.2 → cython-3.1.4}/tests/compile/weakref_T276.pyx +0 -0
  1216. {cython-3.1.2 → cython-3.1.4}/tests/compile/while.pyx +0 -0
  1217. {cython-3.1.2 → cython-3.1.4}/tests/compile/withgil.pyx +0 -0
  1218. {cython-3.1.2 → cython-3.1.4}/tests/cygwin_bugs.txt +0 -0
  1219. {cython-3.1.2 → cython-3.1.4}/tests/errors/break_outside_loop.pyx +0 -0
  1220. {cython-3.1.2 → cython-3.1.4}/tests/errors/bufaccess_noassignT444.pyx +0 -0
  1221. {cython-3.1.2 → cython-3.1.4}/tests/errors/buffertypedef_T117.pyx +0 -0
  1222. {cython-3.1.2 → cython-3.1.4}/tests/errors/builtin_type_inheritance.pyx +0 -0
  1223. {cython-3.1.2 → cython-3.1.4}/tests/errors/callargs.pyx +0 -0
  1224. {cython-3.1.2 → cython-3.1.4}/tests/errors/callingnonexisting_T307.pyx +0 -0
  1225. {cython-3.1.2 → cython-3.1.4}/tests/errors/cdef_class_properties_decorated.pyx +0 -0
  1226. {cython-3.1.2 → cython-3.1.4}/tests/errors/cdef_func_decorators.pyx +0 -0
  1227. {cython-3.1.2 → cython-3.1.4}/tests/errors/cdef_func_syntax.pyx +0 -0
  1228. {cython-3.1.2 → cython-3.1.4}/tests/errors/cdef_in_pyclass.pyx +0 -0
  1229. {cython-3.1.2 → cython-3.1.4}/tests/errors/cdef_members_T517.pyx +0 -0
  1230. {cython-3.1.2 → cython-3.1.4}/tests/errors/cdef_syntax.pyx +0 -0
  1231. {cython-3.1.2 → cython-3.1.4}/tests/errors/cdefkwargs.pyx +0 -0
  1232. {cython-3.1.2 → cython-3.1.4}/tests/errors/cdefoptargs.pyx +0 -0
  1233. {cython-3.1.2 → cython-3.1.4}/tests/errors/cdefspecial.pyx +0 -0
  1234. {cython-3.1.2 → cython-3.1.4}/tests/errors/cfunc_directive_in_pyclass.pyx +0 -0
  1235. {cython-3.1.2 → cython-3.1.4}/tests/errors/cfuncptr.pyx +0 -0
  1236. {cython-3.1.2 → cython-3.1.4}/tests/errors/charptr_from_temp.pyx +0 -0
  1237. {cython-3.1.2 → cython-3.1.4}/tests/errors/cimport_attributes.pyx +0 -0
  1238. {cython-3.1.2 → cython-3.1.4}/tests/errors/cmethbasematch.pxd +0 -0
  1239. {cython-3.1.2 → cython-3.1.4}/tests/errors/cmethbasematch.pyx +0 -0
  1240. {cython-3.1.2 → cython-3.1.4}/tests/errors/compile_time_unraisable_T370.pyx +0 -0
  1241. {cython-3.1.2 → cython-3.1.4}/tests/errors/const_decl_errors.pyx +0 -0
  1242. {cython-3.1.2 → cython-3.1.4}/tests/errors/continue_outside_loop.pyx +0 -0
  1243. {cython-3.1.2 → cython-3.1.4}/tests/errors/cpdef_syntax.pyx +0 -0
  1244. {cython-3.1.2 → cython-3.1.4}/tests/errors/cpdef_vars.pyx +0 -0
  1245. {cython-3.1.2 → cython-3.1.4}/tests/errors/cpp_bool.pyx +0 -0
  1246. {cython-3.1.2 → cython-3.1.4}/tests/errors/cpp_class_gil_GH1986.pyx +0 -0
  1247. {cython-3.1.2 → cython-3.1.4}/tests/errors/cpp_comparison.pyx +0 -0
  1248. {cython-3.1.2 → cython-3.1.4}/tests/errors/cpp_enum_redeclare.pyx +0 -0
  1249. {cython-3.1.2 → cython-3.1.4}/tests/errors/cpp_increment.pyx +0 -0
  1250. {cython-3.1.2 → cython-3.1.4}/tests/errors/cpp_no_auto_conversion.pyx +0 -0
  1251. {cython-3.1.2 → cython-3.1.4}/tests/errors/cpp_no_const_iterator_conversion.pyx +0 -0
  1252. {cython-3.1.2 → cython-3.1.4}/tests/errors/cpp_no_constructor.pyx +0 -0
  1253. {cython-3.1.2 → cython-3.1.4}/tests/errors/cpp_object_template.pyx +0 -0
  1254. {cython-3.1.2 → cython-3.1.4}/tests/errors/cpp_rvalue_reference_support.pyx +0 -0
  1255. {cython-3.1.2 → cython-3.1.4}/tests/errors/cppexc_non_extern.pyx +0 -0
  1256. {cython-3.1.2 → cython-3.1.4}/tests/errors/critical_sections.pyx +0 -0
  1257. {cython-3.1.2 → cython-3.1.4}/tests/errors/cython3_bytes.pyx +0 -0
  1258. {cython-3.1.2 → cython-3.1.4}/tests/errors/dataclass_e1.pyx +0 -0
  1259. {cython-3.1.2 → cython-3.1.4}/tests/errors/dataclass_e4.pyx +0 -0
  1260. {cython-3.1.2 → cython-3.1.4}/tests/errors/dataclass_e5.pyx +0 -0
  1261. {cython-3.1.2 → cython-3.1.4}/tests/errors/dataclass_e6.pyx +0 -0
  1262. {cython-3.1.2 → cython-3.1.4}/tests/errors/dataclass_w1.pyx +0 -0
  1263. {cython-3.1.2 → cython-3.1.4}/tests/errors/dataclass_w1_othermod.pxd +0 -0
  1264. {cython-3.1.2 → cython-3.1.4}/tests/errors/declareafteruse_T158.pyx +0 -0
  1265. {cython-3.1.2 → cython-3.1.4}/tests/errors/dotted.module.pxd +0 -0
  1266. {cython-3.1.2 → cython-3.1.4}/tests/errors/dotted_filenames.pyx +0 -0
  1267. {cython-3.1.2 → cython-3.1.4}/tests/errors/duplicate_const.pyx +0 -0
  1268. {cython-3.1.2 → cython-3.1.4}/tests/errors/e2_packedstruct_T290.pyx +0 -0
  1269. {cython-3.1.2 → cython-3.1.4}/tests/errors/e_addop.pyx +0 -0
  1270. {cython-3.1.2 → cython-3.1.4}/tests/errors/e_addressof.pyx +0 -0
  1271. {cython-3.1.2 → cython-3.1.4}/tests/errors/e_argdefault.pyx +0 -0
  1272. {cython-3.1.2 → cython-3.1.4}/tests/errors/e_arrayassign.pyx +0 -0
  1273. {cython-3.1.2 → cython-3.1.4}/tests/errors/e_ass.pyx +0 -0
  1274. {cython-3.1.2 → cython-3.1.4}/tests/errors/e_assert.pyx +0 -0
  1275. {cython-3.1.2 → cython-3.1.4}/tests/errors/e_assnone.pyx +0 -0
  1276. {cython-3.1.2 → cython-3.1.4}/tests/errors/e_autotestdict.pyx +0 -0
  1277. {cython-3.1.2 → cython-3.1.4}/tests/errors/e_badexcvaltype.pyx +0 -0
  1278. {cython-3.1.2 → cython-3.1.4}/tests/errors/e_badfuncargtype.pyx +0 -0
  1279. {cython-3.1.2 → cython-3.1.4}/tests/errors/e_badpyparam.pyx +0 -0
  1280. {cython-3.1.2 → cython-3.1.4}/tests/errors/e_badtypeuse.pyx +0 -0
  1281. {cython-3.1.2 → cython-3.1.4}/tests/errors/e_binop_and.pyx +0 -0
  1282. {cython-3.1.2 → cython-3.1.4}/tests/errors/e_binop_or.pyx +0 -0
  1283. {cython-3.1.2 → cython-3.1.4}/tests/errors/e_bitop.pyx +0 -0
  1284. {cython-3.1.2 → cython-3.1.4}/tests/errors/e_boolcoerce.pyx +0 -0
  1285. {cython-3.1.2 → cython-3.1.4}/tests/errors/e_bufaccess.pyx +0 -0
  1286. {cython-3.1.2 → cython-3.1.4}/tests/errors/e_bufaccess2.pyx +0 -0
  1287. {cython-3.1.2 → cython-3.1.4}/tests/errors/e_bufaccess_pxd.pxd +0 -0
  1288. {cython-3.1.2 → cython-3.1.4}/tests/errors/e_callnonfunction.pyx +0 -0
  1289. {cython-3.1.2 → cython-3.1.4}/tests/errors/e_callspec.pyx +0 -0
  1290. {cython-3.1.2 → cython-3.1.4}/tests/errors/e_cdef_closure.pyx +0 -0
  1291. {cython-3.1.2 → cython-3.1.4}/tests/errors/e_cdef_in_py.py +0 -0
  1292. {cython-3.1.2 → cython-3.1.4}/tests/errors/e_cdef_keywords_T241.pyx +0 -0
  1293. {cython-3.1.2 → cython-3.1.4}/tests/errors/e_cdef_missing_declarator.pyx +0 -0
  1294. {cython-3.1.2 → cython-3.1.4}/tests/errors/e_cdef_yield.pyx +0 -0
  1295. {cython-3.1.2 → cython-3.1.4}/tests/errors/e_cdefassign.pyx +0 -0
  1296. {cython-3.1.2 → cython-3.1.4}/tests/errors/e_cdefemptysue.pyx +0 -0
  1297. {cython-3.1.2 → cython-3.1.4}/tests/errors/e_cenum.pyx +0 -0
  1298. {cython-3.1.2 → cython-3.1.4}/tests/errors/e_cenum_expr.pyx +0 -0
  1299. {cython-3.1.2 → cython-3.1.4}/tests/errors/e_cenum_with_type.pyx +0 -0
  1300. {cython-3.1.2 → cython-3.1.4}/tests/errors/e_cmp.pyx +0 -0
  1301. {cython-3.1.2 → cython-3.1.4}/tests/errors/e_cpp_nogil.pyx +0 -0
  1302. {cython-3.1.2 → cython-3.1.4}/tests/errors/e_cpp_only_features.pyx +0 -0
  1303. {cython-3.1.2 → cython-3.1.4}/tests/errors/e_cpp_references.pyx +0 -0
  1304. {cython-3.1.2 → cython-3.1.4}/tests/errors/e_cstruct.pyx +0 -0
  1305. {cython-3.1.2 → cython-3.1.4}/tests/errors/e_ctypedefornot.pyx +0 -0
  1306. {cython-3.1.2 → cython-3.1.4}/tests/errors/e_cunion.pyx +0 -0
  1307. {cython-3.1.2 → cython-3.1.4}/tests/errors/e_cython_parallel.pyx +0 -0
  1308. {cython-3.1.2 → cython-3.1.4}/tests/errors/e_declarations.pyx +0 -0
  1309. {cython-3.1.2 → cython-3.1.4}/tests/errors/e_del.pyx +0 -0
  1310. {cython-3.1.2 → cython-3.1.4}/tests/errors/e_directives.pyx +0 -0
  1311. {cython-3.1.2 → cython-3.1.4}/tests/errors/e_exceptclause.pyx +0 -0
  1312. {cython-3.1.2 → cython-3.1.4}/tests/errors/e_excvalfunctype.pyx +0 -0
  1313. {cython-3.1.2 → cython-3.1.4}/tests/errors/e_exttype_freelist.pyx +0 -0
  1314. {cython-3.1.2 → cython-3.1.4}/tests/errors/e_exttype_total_ordering.pyx +0 -0
  1315. {cython-3.1.2 → cython-3.1.4}/tests/errors/e_extweakref.pyx +0 -0
  1316. {cython-3.1.2 → cython-3.1.4}/tests/errors/e_fstring.pyx +0 -0
  1317. {cython-3.1.2 → cython-3.1.4}/tests/errors/e_func_in_pxd.pyx +0 -0
  1318. {cython-3.1.2 → cython-3.1.4}/tests/errors/e_func_in_pxd_support.pxd +0 -0
  1319. {cython-3.1.2 → cython-3.1.4}/tests/errors/e_fused_closure.pyx +0 -0
  1320. {cython-3.1.2 → cython-3.1.4}/tests/errors/e_generators.pyx +0 -0
  1321. {cython-3.1.2 → cython-3.1.4}/tests/errors/e_index.pyx +0 -0
  1322. {cython-3.1.2 → cython-3.1.4}/tests/errors/e_int_literals_py2.py +0 -0
  1323. {cython-3.1.2 → cython-3.1.4}/tests/errors/e_int_literals_py3.py +0 -0
  1324. {cython-3.1.2 → cython-3.1.4}/tests/errors/e_invalid_num_threads.pyx +0 -0
  1325. {cython-3.1.2 → cython-3.1.4}/tests/errors/e_invalid_special_cython_modules.py +0 -0
  1326. {cython-3.1.2 → cython-3.1.4}/tests/errors/e_limited_lock.pxd +0 -0
  1327. {cython-3.1.2 → cython-3.1.4}/tests/errors/e_limited_lock.pyx +0 -0
  1328. {cython-3.1.2 → cython-3.1.4}/tests/errors/e_limited_lock_no_error.pyx +0 -0
  1329. {cython-3.1.2 → cython-3.1.4}/tests/errors/e_multass.pyx +0 -0
  1330. {cython-3.1.2 → cython-3.1.4}/tests/errors/e_nargs.pyx +0 -0
  1331. {cython-3.1.2 → cython-3.1.4}/tests/errors/e_nogilcmeth.pxd +0 -0
  1332. {cython-3.1.2 → cython-3.1.4}/tests/errors/e_nogilcmeth.pyx +0 -0
  1333. {cython-3.1.2 → cython-3.1.4}/tests/errors/e_nogilfunctype.pyx +0 -0
  1334. {cython-3.1.2 → cython-3.1.4}/tests/errors/e_nonlocal_T490.pyx +0 -0
  1335. {cython-3.1.2 → cython-3.1.4}/tests/errors/e_nosignword.pyx +0 -0
  1336. {cython-3.1.2 → cython-3.1.4}/tests/errors/e_notnone.pyx +0 -0
  1337. {cython-3.1.2 → cython-3.1.4}/tests/errors/e_notnone2.pyx +0 -0
  1338. {cython-3.1.2 → cython-3.1.4}/tests/errors/e_numop.pyx +0 -0
  1339. {cython-3.1.2 → cython-3.1.4}/tests/errors/e_patma_extra.pyx +0 -0
  1340. {cython-3.1.2 → cython-3.1.4}/tests/errors/e_powop.pyx +0 -0
  1341. {cython-3.1.2 → cython-3.1.4}/tests/errors/e_public_cdef_private_types.pyx +0 -0
  1342. {cython-3.1.2 → cython-3.1.4}/tests/errors/e_pure_cimports.pyx +0 -0
  1343. {cython-3.1.2 → cython-3.1.4}/tests/errors/e_pxdimpl.pyx +0 -0
  1344. {cython-3.1.2 → cython-3.1.4}/tests/errors/e_pxdimpl_imported.pxd +0 -0
  1345. {cython-3.1.2 → cython-3.1.4}/tests/errors/e_pyobinstruct.pyx +0 -0
  1346. {cython-3.1.2 → cython-3.1.4}/tests/errors/e_relative_cimport.pyx +0 -0
  1347. {cython-3.1.2 → cython-3.1.4}/tests/errors/e_return.pyx +0 -0
  1348. {cython-3.1.2 → cython-3.1.4}/tests/errors/e_sizeofincomplete.pyx +0 -0
  1349. {cython-3.1.2 → cython-3.1.4}/tests/errors/e_slice.pyx +0 -0
  1350. {cython-3.1.2 → cython-3.1.4}/tests/errors/e_strcoerce.pyx +0 -0
  1351. {cython-3.1.2 → cython-3.1.4}/tests/errors/e_subop.pyx +0 -0
  1352. {cython-3.1.2 → cython-3.1.4}/tests/errors/e_switch.pyx +0 -0
  1353. {cython-3.1.2 → cython-3.1.4}/tests/errors/e_switch_transform.pyx +0 -0
  1354. {cython-3.1.2 → cython-3.1.4}/tests/errors/e_tempcast.pyx +0 -0
  1355. {cython-3.1.2 → cython-3.1.4}/tests/errors/e_tuple_args_T692.py +0 -0
  1356. {cython-3.1.2 → cython-3.1.4}/tests/errors/e_typing_errors.pyx +0 -0
  1357. {cython-3.1.2 → cython-3.1.4}/tests/errors/e_typing_optional.py +0 -0
  1358. {cython-3.1.2 → cython-3.1.4}/tests/errors/e_undefexttype.pyx +0 -0
  1359. {cython-3.1.2 → cython-3.1.4}/tests/errors/e_unop.pyx +0 -0
  1360. {cython-3.1.2 → cython-3.1.4}/tests/errors/e_while.pyx +0 -0
  1361. {cython-3.1.2 → cython-3.1.4}/tests/errors/empty.pyx +0 -0
  1362. {cython-3.1.2 → cython-3.1.4}/tests/errors/encoding.pyx +0 -0
  1363. {cython-3.1.2 → cython-3.1.4}/tests/errors/exec_errors.pyx +0 -0
  1364. {cython-3.1.2 → cython-3.1.4}/tests/errors/extclassattrsetting.pyx +0 -0
  1365. {cython-3.1.2 → cython-3.1.4}/tests/errors/extended_unpacking.pyx +0 -0
  1366. {cython-3.1.2 → cython-3.1.4}/tests/errors/extended_unpacking_notuple.pyx +0 -0
  1367. {cython-3.1.2 → cython-3.1.4}/tests/errors/extended_unpacking_parser.pyx +0 -0
  1368. {cython-3.1.2 → cython-3.1.4}/tests/errors/extended_unpacking_parser2.pyx +0 -0
  1369. {cython-3.1.2 → cython-3.1.4}/tests/errors/final_methods.pyx +0 -0
  1370. {cython-3.1.2 → cython-3.1.4}/tests/errors/fused_syntax.pyx +0 -0
  1371. {cython-3.1.2 → cython-3.1.4}/tests/errors/fused_syntax_ctypedef.pyx +0 -0
  1372. {cython-3.1.2 → cython-3.1.4}/tests/errors/fused_types.pyx +0 -0
  1373. {cython-3.1.2 → cython-3.1.4}/tests/errors/futurebraces.pyx +0 -0
  1374. {cython-3.1.2 → cython-3.1.4}/tests/errors/incomplete_varadic.pyx +0 -0
  1375. {cython-3.1.2 → cython-3.1.4}/tests/errors/incorrectly_nested_gil_blocks.pyx +0 -0
  1376. {cython-3.1.2 → cython-3.1.4}/tests/errors/invalid_cast.pyx +0 -0
  1377. {cython-3.1.2 → cython-3.1.4}/tests/errors/invalid_hex_escape0.pyx +0 -0
  1378. {cython-3.1.2 → cython-3.1.4}/tests/errors/invalid_hex_escape1.pyx +0 -0
  1379. {cython-3.1.2 → cython-3.1.4}/tests/errors/invalid_syntax_py.pyx +0 -0
  1380. {cython-3.1.2 → cython-3.1.4}/tests/errors/invalid_uescape.pyx +0 -0
  1381. {cython-3.1.2 → cython-3.1.4}/tests/errors/invalid_uescape0.pyx +0 -0
  1382. {cython-3.1.2 → cython-3.1.4}/tests/errors/invalid_uescape2.pyx +0 -0
  1383. {cython-3.1.2 → cython-3.1.4}/tests/errors/invalid_uescapeN.pyx +0 -0
  1384. {cython-3.1.2 → cython-3.1.4}/tests/errors/literal_lists.pyx +0 -0
  1385. {cython-3.1.2 → cython-3.1.4}/tests/errors/lock_type.pyx +0 -0
  1386. {cython-3.1.2 → cython-3.1.4}/tests/errors/missing_baseclass_in_predecl_T262.pyx +0 -0
  1387. {cython-3.1.2 → cython-3.1.4}/tests/errors/missing_self_in_cpdef_method_T156.pyx +0 -0
  1388. {cython-3.1.2 → cython-3.1.4}/tests/errors/missing_self_in_cpdef_method_T165.pyx +0 -0
  1389. {cython-3.1.2 → cython-3.1.4}/tests/errors/mod_errors.pyx +0 -0
  1390. {cython-3.1.2 → cython-3.1.4}/tests/errors/nogil.pyx +0 -0
  1391. {cython-3.1.2 → cython-3.1.4}/tests/errors/nogil_buffer_acquisition.pyx +0 -0
  1392. {cython-3.1.2 → cython-3.1.4}/tests/errors/nogil_conditional.pyx +0 -0
  1393. {cython-3.1.2 → cython-3.1.4}/tests/errors/nogilcmeth.pxd +0 -0
  1394. {cython-3.1.2 → cython-3.1.4}/tests/errors/nogilcmeth.pyx +0 -0
  1395. {cython-3.1.2 → cython-3.1.4}/tests/errors/nogilfunctype.pyx +0 -0
  1396. {cython-3.1.2 → cython-3.1.4}/tests/errors/nonconst_def.pyx +0 -0
  1397. {cython-3.1.2 → cython-3.1.4}/tests/errors/nonconst_def_tuple.pyx +0 -0
  1398. {cython-3.1.2 → cython-3.1.4}/tests/errors/nonconst_excval.pyx +0 -0
  1399. {cython-3.1.2 → cython-3.1.4}/tests/errors/notcimportedT418.pyx +0 -0
  1400. {cython-3.1.2 → cython-3.1.4}/tests/errors/parsed_directive.pyx +0 -0
  1401. {cython-3.1.2 → cython-3.1.4}/tests/errors/pep448_syntax_1.pyx +0 -0
  1402. {cython-3.1.2 → cython-3.1.4}/tests/errors/pep448_syntax_2.pyx +0 -0
  1403. {cython-3.1.2 → cython-3.1.4}/tests/errors/pep448_syntax_3.pyx +0 -0
  1404. {cython-3.1.2 → cython-3.1.4}/tests/errors/pep487_exttype.pyx +0 -0
  1405. {cython-3.1.2 → cython-3.1.4}/tests/errors/pep492_badsyntax_async1.pyx +0 -0
  1406. {cython-3.1.2 → cython-3.1.4}/tests/errors/pep492_badsyntax_async4.pyx +0 -0
  1407. {cython-3.1.2 → cython-3.1.4}/tests/errors/pep492_badsyntax_async5.pyx +0 -0
  1408. {cython-3.1.2 → cython-3.1.4}/tests/errors/pep492_badsyntax_async7.pyx +0 -0
  1409. {cython-3.1.2 → cython-3.1.4}/tests/errors/pep492_badsyntax_async8.pyx +0 -0
  1410. {cython-3.1.2 → cython-3.1.4}/tests/errors/pep492_badsyntax_async9.pyx +0 -0
  1411. {cython-3.1.2 → cython-3.1.4}/tests/errors/posonly.pyx +0 -0
  1412. {cython-3.1.2 → cython-3.1.4}/tests/errors/posonly2.pyx +0 -0
  1413. {cython-3.1.2 → cython-3.1.4}/tests/errors/posonly3.pyx +0 -0
  1414. {cython-3.1.2 → cython-3.1.4}/tests/errors/posonly4.pyx +0 -0
  1415. {cython-3.1.2 → cython-3.1.4}/tests/errors/posonly5.pyx +0 -0
  1416. {cython-3.1.2 → cython-3.1.4}/tests/errors/pure_cclass_without_body.pxd +0 -0
  1417. {cython-3.1.2 → cython-3.1.4}/tests/errors/pure_cclass_without_body.py +0 -0
  1418. {cython-3.1.2 → cython-3.1.4}/tests/errors/pure_errors.py +0 -0
  1419. {cython-3.1.2 → cython-3.1.4}/tests/errors/pure_nogil_conditional.py +0 -0
  1420. {cython-3.1.2 → cython-3.1.4}/tests/errors/pure_warnings.py +0 -0
  1421. {cython-3.1.2 → cython-3.1.4}/tests/errors/pxd_cdef_class_declaration_T286.pxd +0 -0
  1422. {cython-3.1.2 → cython-3.1.4}/tests/errors/pxd_cdef_class_declaration_T286.pyx +0 -0
  1423. {cython-3.1.2 → cython-3.1.4}/tests/errors/pxd_signature_mismatch.pxd +0 -0
  1424. {cython-3.1.2 → cython-3.1.4}/tests/errors/pxd_signature_mismatch.pyx +0 -0
  1425. {cython-3.1.2 → cython-3.1.4}/tests/errors/py_ucs4_type_errors.pyx +0 -0
  1426. {cython-3.1.2 → cython-3.1.4}/tests/errors/py_unicode_type_errors.pyx +0 -0
  1427. {cython-3.1.2 → cython-3.1.4}/tests/errors/pyobjcastdisallow_T313.pyx +0 -0
  1428. {cython-3.1.2 → cython-3.1.4}/tests/errors/redeclaration_of_var_by_cfunc_T600.pyx +0 -0
  1429. {cython-3.1.2 → cython-3.1.4}/tests/errors/return_outside_function_T135.pyx +0 -0
  1430. {cython-3.1.2 → cython-3.1.4}/tests/errors/reversed_literal_pyobjs.pyx +0 -0
  1431. {cython-3.1.2 → cython-3.1.4}/tests/errors/se_badindent.pyx +0 -0
  1432. {cython-3.1.2 → cython-3.1.4}/tests/errors/se_badindent2.pyx +0 -0
  1433. {cython-3.1.2 → cython-3.1.4}/tests/errors/se_mixtabspace.pyx +0 -0
  1434. {cython-3.1.2 → cython-3.1.4}/tests/errors/se_multass.pyx +0 -0
  1435. {cython-3.1.2 → cython-3.1.4}/tests/errors/string_assignments.pyx +0 -0
  1436. {cython-3.1.2 → cython-3.1.4}/tests/errors/subtyping_final_class.pyx +0 -0
  1437. {cython-3.1.2 → cython-3.1.4}/tests/errors/syntax_warnings.pyx +0 -0
  1438. {cython-3.1.2 → cython-3.1.4}/tests/errors/tree_assert.pyx +0 -0
  1439. {cython-3.1.2 → cython-3.1.4}/tests/errors/typoT304.pyx +0 -0
  1440. {cython-3.1.2 → cython-3.1.4}/tests/errors/undefinedname.pyx +0 -0
  1441. {cython-3.1.2 → cython-3.1.4}/tests/errors/unicode_identifiers_e1.pyx +0 -0
  1442. {cython-3.1.2 → cython-3.1.4}/tests/errors/unicode_identifiers_e2.pyx +0 -0
  1443. {cython-3.1.2 → cython-3.1.4}/tests/errors/unicode_identifiers_e3.pyx +0 -0
  1444. {cython-3.1.2 → cython-3.1.4}/tests/errors/unicode_identifiers_e4.pyx +0 -0
  1445. {cython-3.1.2 → cython-3.1.4}/tests/errors/uninitialized_lhs.pyx +0 -0
  1446. {cython-3.1.2 → cython-3.1.4}/tests/errors/void_as_arg.pyx +0 -0
  1447. {cython-3.1.2 → cython-3.1.4}/tests/errors/w_cdef_override.pyx +0 -0
  1448. {cython-3.1.2 → cython-3.1.4}/tests/errors/w_noexcept.pxd +0 -0
  1449. {cython-3.1.2 → cython-3.1.4}/tests/errors/w_noexcept.pyx +0 -0
  1450. {cython-3.1.2 → cython-3.1.4}/tests/errors/w_noexcept_pure.pxd +0 -0
  1451. {cython-3.1.2 → cython-3.1.4}/tests/errors/w_noexcept_pure.py +0 -0
  1452. {cython-3.1.2 → cython-3.1.4}/tests/errors/w_numpy_arr_as_cppvec_ref.pyx +0 -0
  1453. {cython-3.1.2 → cython-3.1.4}/tests/errors/w_python_list_as_cppset_ref.pyx +0 -0
  1454. {cython-3.1.2 → cython-3.1.4}/tests/errors/w_subinterpreters.pyx +0 -0
  1455. {cython-3.1.2 → cython-3.1.4}/tests/errors/w_undeclared.pyx +0 -0
  1456. {cython-3.1.2 → cython-3.1.4}/tests/errors/w_uninitialized.pyx +0 -0
  1457. {cython-3.1.2 → cython-3.1.4}/tests/errors/w_uninitialized_cpp.pyx +0 -0
  1458. {cython-3.1.2 → cython-3.1.4}/tests/errors/w_uninitialized_del.pyx +0 -0
  1459. {cython-3.1.2 → cython-3.1.4}/tests/errors/w_uninitialized_exc.pyx +0 -0
  1460. {cython-3.1.2 → cython-3.1.4}/tests/errors/w_uninitialized_for.pyx +0 -0
  1461. {cython-3.1.2 → cython-3.1.4}/tests/errors/w_uninitialized_generators.pyx +0 -0
  1462. {cython-3.1.2 → cython-3.1.4}/tests/errors/w_uninitialized_py2.pyx +0 -0
  1463. {cython-3.1.2 → cython-3.1.4}/tests/errors/w_uninitialized_py3.pyx +0 -0
  1464. {cython-3.1.2 → cython-3.1.4}/tests/errors/w_uninitialized_while.pyx +0 -0
  1465. {cython-3.1.2 → cython-3.1.4}/tests/errors/w_uninitialized_with.pyx +0 -0
  1466. {cython-3.1.2 → cython-3.1.4}/tests/errors/w_unreachable.pyx +0 -0
  1467. {cython-3.1.2 → cython-3.1.4}/tests/errors/w_unreachable_cf.pyx +0 -0
  1468. {cython-3.1.2 → cython-3.1.4}/tests/errors/w_unused.pyx +0 -0
  1469. {cython-3.1.2 → cython-3.1.4}/tests/errors/wraparound_warnings.pyx +0 -0
  1470. {cython-3.1.2 → cython-3.1.4}/tests/graal_bugs.txt +0 -0
  1471. {cython-3.1.2 → cython-3.1.4}/tests/macos_cpp_bugs.txt +0 -0
  1472. {cython-3.1.2 → cython-3.1.4}/tests/memoryview/bufaccess.h +0 -0
  1473. {cython-3.1.2 → cython-3.1.4}/tests/memoryview/cfunc_convert_with_memoryview.pyx +0 -0
  1474. {cython-3.1.2 → cython-3.1.4}/tests/memoryview/compile_declarations.pyx +0 -0
  1475. {cython-3.1.2 → cython-3.1.4}/tests/memoryview/contig_check.pyx +0 -0
  1476. {cython-3.1.2 → cython-3.1.4}/tests/memoryview/cythonarray.pyx +0 -0
  1477. {cython-3.1.2 → cython-3.1.4}/tests/memoryview/error_declarations.pyx +0 -0
  1478. {cython-3.1.2 → cython-3.1.4}/tests/memoryview/extension_type_memoryview.pyx +0 -0
  1479. {cython-3.1.2 → cython-3.1.4}/tests/memoryview/memoryview.pxd +0 -0
  1480. {cython-3.1.2 → cython-3.1.4}/tests/memoryview/memoryview.pyx +0 -0
  1481. {cython-3.1.2 → cython-3.1.4}/tests/memoryview/memoryview_acq_count.srctree +0 -0
  1482. {cython-3.1.2 → cython-3.1.4}/tests/memoryview/memoryview_annotation_typing.py +0 -0
  1483. {cython-3.1.2 → cython-3.1.4}/tests/memoryview/memoryview_cache_builtins.srctree +0 -0
  1484. {cython-3.1.2 → cython-3.1.4}/tests/memoryview/memoryview_compare_type_pointers.srctree +0 -0
  1485. {cython-3.1.2 → cython-3.1.4}/tests/memoryview/memoryview_in_subclasses.pyx +0 -0
  1486. {cython-3.1.2 → cython-3.1.4}/tests/memoryview/memoryview_inline_pxd.srctree +0 -0
  1487. {cython-3.1.2 → cython-3.1.4}/tests/memoryview/memoryview_inplace_division.pyx +0 -0
  1488. {cython-3.1.2 → cython-3.1.4}/tests/memoryview/memoryview_no_binding_T3613.pyx +0 -0
  1489. {cython-3.1.2 → cython-3.1.4}/tests/memoryview/memoryview_no_shared_utility.srctree +0 -0
  1490. {cython-3.1.2 → cython-3.1.4}/tests/memoryview/memoryview_no_withgil_check.pyx +0 -0
  1491. {cython-3.1.2 → cython-3.1.4}/tests/memoryview/memoryview_pep484_typing.pyx +0 -0
  1492. {cython-3.1.2 → cython-3.1.4}/tests/memoryview/memoryview_shared_utility.srctree +0 -0
  1493. {cython-3.1.2 → cython-3.1.4}/tests/memoryview/memoryviewattrs.pyx +0 -0
  1494. {cython-3.1.2 → cython-3.1.4}/tests/memoryview/memslice.pyx +0 -0
  1495. {cython-3.1.2 → cython-3.1.4}/tests/memoryview/memview_assignments.pyx +0 -0
  1496. {cython-3.1.2 → cython-3.1.4}/tests/memoryview/numpy_memoryview.pyx +0 -0
  1497. {cython-3.1.2 → cython-3.1.4}/tests/memoryview/numpy_memoryview_readonly.pyx +0 -0
  1498. {cython-3.1.2 → cython-3.1.4}/tests/memoryview/parallel_refcounting_stress_test.pyx +0 -0
  1499. {cython-3.1.2 → cython-3.1.4}/tests/memoryview/relaxed_strides.pyx +0 -0
  1500. {cython-3.1.2 → cython-3.1.4}/tests/memoryview/transpose_refcount.pyx +0 -0
  1501. {cython-3.1.2 → cython-3.1.4}/tests/memoryview/view_return_errors.pyx +0 -0
  1502. {cython-3.1.2 → cython-3.1.4}/tests/pypy_crash_bugs.txt +0 -0
  1503. {cython-3.1.2 → cython-3.1.4}/tests/pypy_implementation_detail_bugs.txt +0 -0
  1504. {cython-3.1.2 → cython-3.1.4}/tests/pyximport/pyximport_basic.srctree +0 -0
  1505. {cython-3.1.2 → cython-3.1.4}/tests/pyximport/pyximport_errors.srctree +0 -0
  1506. {cython-3.1.2 → cython-3.1.4}/tests/pyximport/pyximport_namespace.srctree +0 -0
  1507. {cython-3.1.2 → cython-3.1.4}/tests/pyximport/pyximport_pyimport.srctree +0 -0
  1508. {cython-3.1.2 → cython-3.1.4}/tests/pyximport/pyximport_pyimport_only.srctree +0 -0
  1509. {cython-3.1.2 → cython-3.1.4}/tests/pyximport/pyximport_pythonpath.srctree +0 -0
  1510. {cython-3.1.2 → cython-3.1.4}/tests/pyximport/pyximport_pyxbld.srctree +0 -0
  1511. {cython-3.1.2 → cython-3.1.4}/tests/run/__debug__.srctree +0 -0
  1512. {cython-3.1.2 → cython-3.1.4}/tests/run/__getattribute__.pyx +0 -0
  1513. {cython-3.1.2 → cython-3.1.4}/tests/run/__getattribute_subclasses__.pyx +0 -0
  1514. {cython-3.1.2 → cython-3.1.4}/tests/run/absolute_import.srctree +0 -0
  1515. {cython-3.1.2 → cython-3.1.4}/tests/run/addloop.pyx +0 -0
  1516. {cython-3.1.2 → cython-3.1.4}/tests/run/addop.pyx +0 -0
  1517. {cython-3.1.2 → cython-3.1.4}/tests/run/addressof.pyx +0 -0
  1518. {cython-3.1.2 → cython-3.1.4}/tests/run/all.pyx +0 -0
  1519. {cython-3.1.2 → cython-3.1.4}/tests/run/altet2.pyx +0 -0
  1520. {cython-3.1.2 → cython-3.1.4}/tests/run/always_allow_keywords_T295.pyx +0 -0
  1521. {cython-3.1.2 → cython-3.1.4}/tests/run/analyse_expressions.srctree +0 -0
  1522. {cython-3.1.2 → cython-3.1.4}/tests/run/and.pyx +0 -0
  1523. {cython-3.1.2 → cython-3.1.4}/tests/run/annotate_html.pyx +0 -0
  1524. {cython-3.1.2 → cython-3.1.4}/tests/run/annotation_typing.pyx +0 -0
  1525. {cython-3.1.2 → cython-3.1.4}/tests/run/anonymousenum.pyx +0 -0
  1526. {cython-3.1.2 → cython-3.1.4}/tests/run/any.pyx +0 -0
  1527. {cython-3.1.2 → cython-3.1.4}/tests/run/append.pyx +0 -0
  1528. {cython-3.1.2 → cython-3.1.4}/tests/run/arg_incref.pyx +0 -0
  1529. {cython-3.1.2 → cython-3.1.4}/tests/run/argdefault.pyx +0 -0
  1530. {cython-3.1.2 → cython-3.1.4}/tests/run/argerrors.py +0 -0
  1531. {cython-3.1.2 → cython-3.1.4}/tests/run/args_unpacking_in_closure_T658.pyx +0 -0
  1532. {cython-3.1.2 → cython-3.1.4}/tests/run/argument_unpacking_closure_T736.py +0 -0
  1533. {cython-3.1.2 → cython-3.1.4}/tests/run/arithmetic_analyse_types.pyx +0 -0
  1534. {cython-3.1.2 → cython-3.1.4}/tests/run/arithmetic_analyse_types_helper.h +0 -0
  1535. {cython-3.1.2 → cython-3.1.4}/tests/run/array_address.pyx +0 -0
  1536. {cython-3.1.2 → cython-3.1.4}/tests/run/array_cimport.srctree +0 -0
  1537. {cython-3.1.2 → cython-3.1.4}/tests/run/arrayassign.pyx +0 -0
  1538. {cython-3.1.2 → cython-3.1.4}/tests/run/ass2cglobal.pyx +0 -0
  1539. {cython-3.1.2 → cython-3.1.4}/tests/run/ass2global.py +0 -0
  1540. {cython-3.1.2 → cython-3.1.4}/tests/run/ass2local.pyx +0 -0
  1541. {cython-3.1.2 → cython-3.1.4}/tests/run/assert.pyx +0 -0
  1542. {cython-3.1.2 → cython-3.1.4}/tests/run/assigned_builtin_methods.pyx +0 -0
  1543. {cython-3.1.2 → cython-3.1.4}/tests/run/async_def.pyx +0 -0
  1544. {cython-3.1.2 → cython-3.1.4}/tests/run/async_globals.pyx +0 -0
  1545. {cython-3.1.2 → cython-3.1.4}/tests/run/async_iter_pep492.pyx +0 -0
  1546. {cython-3.1.2 → cython-3.1.4}/tests/run/asyncio_generators.srctree +0 -0
  1547. {cython-3.1.2 → cython-3.1.4}/tests/run/asyncio_leaks.srctree +0 -0
  1548. {cython-3.1.2 → cython-3.1.4}/tests/run/attr.pyx +0 -0
  1549. {cython-3.1.2 → cython-3.1.4}/tests/run/attribute_and_lambda.pyx +0 -0
  1550. {cython-3.1.2 → cython-3.1.4}/tests/run/auto_cpdef.py +0 -0
  1551. {cython-3.1.2 → cython-3.1.4}/tests/run/auto_cpdef_closures.py +0 -0
  1552. {cython-3.1.2 → cython-3.1.4}/tests/run/autotestdict.pxd +0 -0
  1553. {cython-3.1.2 → cython-3.1.4}/tests/run/autotestdict.pyx +0 -0
  1554. {cython-3.1.2 → cython-3.1.4}/tests/run/autotestdict_all.pyx +0 -0
  1555. {cython-3.1.2 → cython-3.1.4}/tests/run/autotestdict_cdef.pyx +0 -0
  1556. {cython-3.1.2 → cython-3.1.4}/tests/run/autotestdict_skip.pyx +0 -0
  1557. {cython-3.1.2 → cython-3.1.4}/tests/run/baas3.pyx +0 -0
  1558. {cython-3.1.2 → cython-3.1.4}/tests/run/backquote.pyx +0 -0
  1559. {cython-3.1.2 → cython-3.1.4}/tests/run/bad_c_struct_T252.pyx +0 -0
  1560. {cython-3.1.2 → cython-3.1.4}/tests/run/behnel1.pyx +0 -0
  1561. {cython-3.1.2 → cython-3.1.4}/tests/run/behnel2.pyx +0 -0
  1562. {cython-3.1.2 → cython-3.1.4}/tests/run/behnel3.pyx +0 -0
  1563. {cython-3.1.2 → cython-3.1.4}/tests/run/big_indices.pyx +0 -0
  1564. {cython-3.1.2 → cython-3.1.4}/tests/run/binop_reverse_methods_GH2056.pyx +0 -0
  1565. {cython-3.1.2 → cython-3.1.4}/tests/run/bint.pyx +0 -0
  1566. {cython-3.1.2 → cython-3.1.4}/tests/run/bint_binop_T145.pyx +0 -0
  1567. {cython-3.1.2 → cython-3.1.4}/tests/run/bint_property_T354.pyx +0 -0
  1568. {cython-3.1.2 → cython-3.1.4}/tests/run/bishop1.pyx +0 -0
  1569. {cython-3.1.2 → cython-3.1.4}/tests/run/bishop2.pyx +0 -0
  1570. {cython-3.1.2 → cython-3.1.4}/tests/run/boolean_context.pyx +0 -0
  1571. {cython-3.1.2 → cython-3.1.4}/tests/run/boolop.pyx +0 -0
  1572. {cython-3.1.2 → cython-3.1.4}/tests/run/boolop_py.py +0 -0
  1573. {cython-3.1.2 → cython-3.1.4}/tests/run/bound_builtin_methods_T589.pyx +0 -0
  1574. {cython-3.1.2 → cython-3.1.4}/tests/run/broken_exception.pyx +0 -0
  1575. {cython-3.1.2 → cython-3.1.4}/tests/run/buffer_n_overflowcheck_T5356.pyx +0 -0
  1576. {cython-3.1.2 → cython-3.1.4}/tests/run/builtin_abs.pyx +0 -0
  1577. {cython-3.1.2 → cython-3.1.4}/tests/run/builtin_basestring.pyx +0 -0
  1578. {cython-3.1.2 → cython-3.1.4}/tests/run/builtin_callable.pyx +0 -0
  1579. {cython-3.1.2 → cython-3.1.4}/tests/run/builtin_complex.py +0 -0
  1580. {cython-3.1.2 → cython-3.1.4}/tests/run/builtin_divmod.py +0 -0
  1581. {cython-3.1.2 → cython-3.1.4}/tests/run/builtin_divmod_pyx.pyx +0 -0
  1582. {cython-3.1.2 → cython-3.1.4}/tests/run/builtin_exceptions.py +0 -0
  1583. {cython-3.1.2 → cython-3.1.4}/tests/run/builtin_float.py +0 -0
  1584. {cython-3.1.2 → cython-3.1.4}/tests/run/builtin_globals.py +0 -0
  1585. {cython-3.1.2 → cython-3.1.4}/tests/run/builtin_len.pyx +0 -0
  1586. {cython-3.1.2 → cython-3.1.4}/tests/run/builtin_memory_view.pyx +0 -0
  1587. {cython-3.1.2 → cython-3.1.4}/tests/run/builtin_methods_return_values.pyx +0 -0
  1588. {cython-3.1.2 → cython-3.1.4}/tests/run/builtin_min_max.pyx +0 -0
  1589. {cython-3.1.2 → cython-3.1.4}/tests/run/builtin_next.pyx +0 -0
  1590. {cython-3.1.2 → cython-3.1.4}/tests/run/builtin_ord.pyx +0 -0
  1591. {cython-3.1.2 → cython-3.1.4}/tests/run/builtin_pow.pyx +0 -0
  1592. {cython-3.1.2 → cython-3.1.4}/tests/run/builtin_py3.pyx +0 -0
  1593. {cython-3.1.2 → cython-3.1.4}/tests/run/builtin_pycomplex.pyx +0 -0
  1594. {cython-3.1.2 → cython-3.1.4}/tests/run/builtin_slice.pyx +0 -0
  1595. {cython-3.1.2 → cython-3.1.4}/tests/run/builtin_sorted.pyx +0 -0
  1596. {cython-3.1.2 → cython-3.1.4}/tests/run/builtin_subtype_methods_T653.pyx +0 -0
  1597. {cython-3.1.2 → cython-3.1.4}/tests/run/builtin_subtype_methods_cy3.pyx +0 -0
  1598. {cython-3.1.2 → cython-3.1.4}/tests/run/builtin_type.pyx +0 -0
  1599. {cython-3.1.2 → cython-3.1.4}/tests/run/builtin_type_inheritance_T608.pyx +0 -0
  1600. {cython-3.1.2 → cython-3.1.4}/tests/run/builtin_types_class.py +0 -0
  1601. {cython-3.1.2 → cython-3.1.4}/tests/run/builtin_types_none_T166.pyx +0 -0
  1602. {cython-3.1.2 → cython-3.1.4}/tests/run/builtinnames.pyx +0 -0
  1603. {cython-3.1.2 → cython-3.1.4}/tests/run/builtins_truth_test.pyx +0 -0
  1604. {cython-3.1.2 → cython-3.1.4}/tests/run/bytearray_ascii_auto_encoding.pyx +0 -0
  1605. {cython-3.1.2 → cython-3.1.4}/tests/run/bytearray_coercion.pyx +0 -0
  1606. {cython-3.1.2 → cython-3.1.4}/tests/run/bytearray_default_auto_encoding.pyx +0 -0
  1607. {cython-3.1.2 → cython-3.1.4}/tests/run/bytearray_iter.py +0 -0
  1608. {cython-3.1.2 → cython-3.1.4}/tests/run/bytearraymethods.pyx +0 -0
  1609. {cython-3.1.2 → cython-3.1.4}/tests/run/bytes_char_coercion.pyx +0 -0
  1610. {cython-3.1.2 → cython-3.1.4}/tests/run/bytes_formatting.pyx +0 -0
  1611. {cython-3.1.2 → cython-3.1.4}/tests/run/bytes_indexing.pyx +0 -0
  1612. {cython-3.1.2 → cython-3.1.4}/tests/run/bytesmethods.pyx +0 -0
  1613. {cython-3.1.2 → cython-3.1.4}/tests/run/c_file_validation.srctree +0 -0
  1614. {cython-3.1.2 → cython-3.1.4}/tests/run/c_int_types_T255.pyx +0 -0
  1615. {cython-3.1.2 → cython-3.1.4}/tests/run/c_type_methods_T236.pyx +0 -0
  1616. {cython-3.1.2 → cython-3.1.4}/tests/run/call_crash.pyx +0 -0
  1617. {cython-3.1.2 → cython-3.1.4}/tests/run/call_py_cy.pyx +0 -0
  1618. {cython-3.1.2 → cython-3.1.4}/tests/run/callargs.pyx +0 -0
  1619. {cython-3.1.2 → cython-3.1.4}/tests/run/capiimpl.pyx +0 -0
  1620. {cython-3.1.2 → cython-3.1.4}/tests/run/carray_coercion.pyx +0 -0
  1621. {cython-3.1.2 → cython-3.1.4}/tests/run/carray_slicing.pyx +0 -0
  1622. {cython-3.1.2 → cython-3.1.4}/tests/run/carrays.pyx +0 -0
  1623. {cython-3.1.2 → cython-3.1.4}/tests/run/cascaded_list_unpacking_T467.pyx +0 -0
  1624. {cython-3.1.2 → cython-3.1.4}/tests/run/cascaded_typed_assignments_T466.pyx +0 -0
  1625. {cython-3.1.2 → cython-3.1.4}/tests/run/cascadedassignment.pyx +0 -0
  1626. {cython-3.1.2 → cython-3.1.4}/tests/run/cascmp.pyx +0 -0
  1627. {cython-3.1.2 → cython-3.1.4}/tests/run/cclass_assign_attr_GH3100.pyx +0 -0
  1628. {cython-3.1.2 → cython-3.1.4}/tests/run/cclass_attr.pyx +0 -0
  1629. {cython-3.1.2 → cython-3.1.4}/tests/run/cdef_bool_T227.pyx +0 -0
  1630. {cython-3.1.2 → cython-3.1.4}/tests/run/cdef_class_dataclass.pyx +0 -0
  1631. {cython-3.1.2 → cython-3.1.4}/tests/run/cdef_class_field.pyx +0 -0
  1632. {cython-3.1.2 → cython-3.1.4}/tests/run/cdef_class_order.pyx +0 -0
  1633. {cython-3.1.2 → cython-3.1.4}/tests/run/cdef_class_property_decorator_T264.pyx +0 -0
  1634. {cython-3.1.2 → cython-3.1.4}/tests/run/cdef_classmethod.pyx +0 -0
  1635. {cython-3.1.2 → cython-3.1.4}/tests/run/cdef_cpdef_override_GH543.srctree +0 -0
  1636. {cython-3.1.2 → cython-3.1.4}/tests/run/cdef_decorator_directives_T183.pyx +0 -0
  1637. {cython-3.1.2 → cython-3.1.4}/tests/run/cdef_function_kwargs.pyx +0 -0
  1638. {cython-3.1.2 → cython-3.1.4}/tests/run/cdef_locals_decorator_T477.pyx +0 -0
  1639. {cython-3.1.2 → cython-3.1.4}/tests/run/cdef_members_T517.pyx +0 -0
  1640. {cython-3.1.2 → cython-3.1.4}/tests/run/cdef_members_binding_properties.pyx +0 -0
  1641. {cython-3.1.2 → cython-3.1.4}/tests/run/cdef_methods_T462.pyx +0 -0
  1642. {cython-3.1.2 → cython-3.1.4}/tests/run/cdef_multiple_inheritance.pyx +0 -0
  1643. {cython-3.1.2 → cython-3.1.4}/tests/run/cdef_multiple_inheritance_cimport.srctree +0 -0
  1644. {cython-3.1.2 → cython-3.1.4}/tests/run/cdef_multiple_inheritance_errors.srctree +0 -0
  1645. {cython-3.1.2 → cython-3.1.4}/tests/run/cdef_multiple_inheritance_nodict.pyx +0 -0
  1646. {cython-3.1.2 → cython-3.1.4}/tests/run/cdef_opt.pxd +0 -0
  1647. {cython-3.1.2 → cython-3.1.4}/tests/run/cdef_opt.pyx +0 -0
  1648. {cython-3.1.2 → cython-3.1.4}/tests/run/cdef_setitem_T284.pyx +0 -0
  1649. {cython-3.1.2 → cython-3.1.4}/tests/run/cdef_subclass_builtin.pyx +0 -0
  1650. {cython-3.1.2 → cython-3.1.4}/tests/run/cdef_subclass_userdef.pyx +0 -0
  1651. {cython-3.1.2 → cython-3.1.4}/tests/run/cdefassign.pyx +0 -0
  1652. {cython-3.1.2 → cython-3.1.4}/tests/run/cdefoptargs.pyx +0 -0
  1653. {cython-3.1.2 → cython-3.1.4}/tests/run/cdivision_CEP_516.pyx +0 -0
  1654. {cython-3.1.2 → cython-3.1.4}/tests/run/cf_none.pyx +0 -0
  1655. {cython-3.1.2 → cython-3.1.4}/tests/run/cfunc_call_tuple_args_T408.pyx +0 -0
  1656. {cython-3.1.2 → cython-3.1.4}/tests/run/cfunc_convert.pyx +0 -0
  1657. {cython-3.1.2 → cython-3.1.4}/tests/run/cfuncdef.pyx +0 -0
  1658. {cython-3.1.2 → cython-3.1.4}/tests/run/cfuncptr.pyx +0 -0
  1659. {cython-3.1.2 → cython-3.1.4}/tests/run/char_constants_T99.pyx +0 -0
  1660. {cython-3.1.2 → cython-3.1.4}/tests/run/charcomparisonT412.pyx +0 -0
  1661. {cython-3.1.2 → cython-3.1.4}/tests/run/charencoding.pyx +0 -0
  1662. {cython-3.1.2 → cython-3.1.4}/tests/run/charescape.pyx +0 -0
  1663. {cython-3.1.2 → cython-3.1.4}/tests/run/charptr_comparison_T582.pyx +0 -0
  1664. {cython-3.1.2 → cython-3.1.4}/tests/run/charptr_decode.pyx +0 -0
  1665. {cython-3.1.2 → cython-3.1.4}/tests/run/charptr_from_temp.pyx +0 -0
  1666. {cython-3.1.2 → cython-3.1.4}/tests/run/charptr_len.pyx +0 -0
  1667. {cython-3.1.2 → cython-3.1.4}/tests/run/check_fused_types.pyx +0 -0
  1668. {cython-3.1.2 → cython-3.1.4}/tests/run/check_fused_types_pxd.pxd +0 -0
  1669. {cython-3.1.2 → cython-3.1.4}/tests/run/check_size.srctree +0 -0
  1670. {cython-3.1.2 → cython-3.1.4}/tests/run/cimport.srctree +0 -0
  1671. {cython-3.1.2 → cython-3.1.4}/tests/run/cimport_alias_subclass.pyx +0 -0
  1672. {cython-3.1.2 → cython-3.1.4}/tests/run/cimport_alias_subclass_helper.pxd +0 -0
  1673. {cython-3.1.2 → cython-3.1.4}/tests/run/cimport_cython_T505.pyx +0 -0
  1674. {cython-3.1.2 → cython-3.1.4}/tests/run/cimport_from_pyx.srctree +0 -0
  1675. {cython-3.1.2 → cython-3.1.4}/tests/run/cimport_from_sys_path.srctree +0 -0
  1676. {cython-3.1.2 → cython-3.1.4}/tests/run/cintop.pyx +0 -0
  1677. {cython-3.1.2 → cython-3.1.4}/tests/run/class_attribute_init_values_T18.pyx +0 -0
  1678. {cython-3.1.2 → cython-3.1.4}/tests/run/class_func_in_control_structures_T87.pyx +0 -0
  1679. {cython-3.1.2 → cython-3.1.4}/tests/run/class_redefine.py +0 -0
  1680. {cython-3.1.2 → cython-3.1.4}/tests/run/class_scope.py +0 -0
  1681. {cython-3.1.2 → cython-3.1.4}/tests/run/class_scope_del_T684.py +0 -0
  1682. {cython-3.1.2 → cython-3.1.4}/tests/run/classbody_exec.pyx +0 -0
  1683. {cython-3.1.2 → cython-3.1.4}/tests/run/classdecorators_T336.pyx +0 -0
  1684. {cython-3.1.2 → cython-3.1.4}/tests/run/classkwonlyargs.pyx +0 -0
  1685. {cython-3.1.2 → cython-3.1.4}/tests/run/classmethod.pyx +0 -0
  1686. {cython-3.1.2 → cython-3.1.4}/tests/run/classpass.pyx +0 -0
  1687. {cython-3.1.2 → cython-3.1.4}/tests/run/clear_to_null.pyx +0 -0
  1688. {cython-3.1.2 → cython-3.1.4}/tests/run/cline_in_traceback.srctree +0 -0
  1689. {cython-3.1.2 → cython-3.1.4}/tests/run/clone_type.pyx +0 -0
  1690. {cython-3.1.2 → cython-3.1.4}/tests/run/closure_arg_type_error.pyx +0 -0
  1691. {cython-3.1.2 → cython-3.1.4}/tests/run/closure_class_T596.pyx +0 -0
  1692. {cython-3.1.2 → cython-3.1.4}/tests/run/closure_decorators_T478.pyx +0 -0
  1693. {cython-3.1.2 → cython-3.1.4}/tests/run/closure_in_derived_class_T2967.pyx +0 -0
  1694. {cython-3.1.2 → cython-3.1.4}/tests/run/closure_inlining.pyx +0 -0
  1695. {cython-3.1.2 → cython-3.1.4}/tests/run/closure_inside_cdef_T554.pyx +0 -0
  1696. {cython-3.1.2 → cython-3.1.4}/tests/run/closure_leak_1.pyx +0 -0
  1697. {cython-3.1.2 → cython-3.1.4}/tests/run/closure_name_mangling_T537.pyx +0 -0
  1698. {cython-3.1.2 → cython-3.1.4}/tests/run/closure_names.pyx +0 -0
  1699. {cython-3.1.2 → cython-3.1.4}/tests/run/closure_self.pyx +0 -0
  1700. {cython-3.1.2 → cython-3.1.4}/tests/run/closure_tests_1.pyx +0 -0
  1701. {cython-3.1.2 → cython-3.1.4}/tests/run/closure_tests_2.pyx +0 -0
  1702. {cython-3.1.2 → cython-3.1.4}/tests/run/closure_tests_3.pyx +0 -0
  1703. {cython-3.1.2 → cython-3.1.4}/tests/run/closure_tests_4.pyx +0 -0
  1704. {cython-3.1.2 → cython-3.1.4}/tests/run/closures_T82.pyx +0 -0
  1705. {cython-3.1.2 → cython-3.1.4}/tests/run/cmethod_inline_T474.pxd +0 -0
  1706. {cython-3.1.2 → cython-3.1.4}/tests/run/cmethod_inline_T474.pyx +0 -0
  1707. {cython-3.1.2 → cython-3.1.4}/tests/run/cmp.pyx +0 -0
  1708. {cython-3.1.2 → cython-3.1.4}/tests/run/code_object_cache.pyx +0 -0
  1709. {cython-3.1.2 → cython-3.1.4}/tests/run/coercearraytoptr.pyx +0 -0
  1710. {cython-3.1.2 → cython-3.1.4}/tests/run/common_utility_types.srctree +0 -0
  1711. {cython-3.1.2 → cython-3.1.4}/tests/run/compare_binary_pyversions.pyx +0 -0
  1712. {cython-3.1.2 → cython-3.1.4}/tests/run/compiledef.pyx +0 -0
  1713. {cython-3.1.2 → cython-3.1.4}/tests/run/complex_cast_T445.pyx +0 -0
  1714. {cython-3.1.2 → cython-3.1.4}/tests/run/complex_coercion_sideeffects_T693.pyx +0 -0
  1715. {cython-3.1.2 → cython-3.1.4}/tests/run/complex_extern_GH1433.pyx +0 -0
  1716. {cython-3.1.2 → cython-3.1.4}/tests/run/complex_int_T446.pyx +0 -0
  1717. {cython-3.1.2 → cython-3.1.4}/tests/run/complex_numbers_T305.pyx +0 -0
  1718. {cython-3.1.2 → cython-3.1.4}/tests/run/complex_numbers_T305_long_double.pyx +0 -0
  1719. {cython-3.1.2 → cython-3.1.4}/tests/run/complex_numbers_c89_T398.h +0 -0
  1720. {cython-3.1.2 → cython-3.1.4}/tests/run/complex_numbers_c89_T398.pyx +0 -0
  1721. {cython-3.1.2 → cython-3.1.4}/tests/run/complex_numbers_c89_T398_long_double.pyx +0 -0
  1722. {cython-3.1.2 → cython-3.1.4}/tests/run/complex_numbers_c99_T398.h +0 -0
  1723. {cython-3.1.2 → cython-3.1.4}/tests/run/complex_numbers_c99_T398.pyx +0 -0
  1724. {cython-3.1.2 → cython-3.1.4}/tests/run/complex_numbers_cmath_T2891.pyx +0 -0
  1725. {cython-3.1.2 → cython-3.1.4}/tests/run/complex_numbers_cpp.pyx +0 -0
  1726. {cython-3.1.2 → cython-3.1.4}/tests/run/complex_numbers_cxx_T398.h +0 -0
  1727. {cython-3.1.2 → cython-3.1.4}/tests/run/complex_numbers_cxx_T398.pyx +0 -0
  1728. {cython-3.1.2 → cython-3.1.4}/tests/run/concatcstrings.pyx +0 -0
  1729. {cython-3.1.2 → cython-3.1.4}/tests/run/const_variable.pyx +0 -0
  1730. {cython-3.1.2 → cython-3.1.4}/tests/run/constant_folding.py +0 -0
  1731. {cython-3.1.2 → cython-3.1.4}/tests/run/constant_folding_cy.pyx +0 -0
  1732. {cython-3.1.2 → cython-3.1.4}/tests/run/constants.pyx +0 -0
  1733. {cython-3.1.2 → cython-3.1.4}/tests/run/contains_T455.pyx +0 -0
  1734. {cython-3.1.2 → cython-3.1.4}/tests/run/control_flow_except_T725.pyx +0 -0
  1735. {cython-3.1.2 → cython-3.1.4}/tests/run/control_flow_loop.pyx +0 -0
  1736. {cython-3.1.2 → cython-3.1.4}/tests/run/control_flow_stack_allocation.pyx +0 -0
  1737. {cython-3.1.2 → cython-3.1.4}/tests/run/coroutines.pxd +0 -0
  1738. {cython-3.1.2 → cython-3.1.4}/tests/run/coroutines.py +0 -0
  1739. {cython-3.1.2 → cython-3.1.4}/tests/run/coverage_api.srctree +0 -0
  1740. {cython-3.1.2 → cython-3.1.4}/tests/run/coverage_cmd.srctree +0 -0
  1741. {cython-3.1.2 → cython-3.1.4}/tests/run/coverage_cmd_src_layout.srctree +0 -0
  1742. {cython-3.1.2 → cython-3.1.4}/tests/run/coverage_cmd_src_pkg_layout.srctree +0 -0
  1743. {cython-3.1.2 → cython-3.1.4}/tests/run/coverage_installed_pkg.srctree +0 -0
  1744. {cython-3.1.2 → cython-3.1.4}/tests/run/coverage_nogil.srctree +0 -0
  1745. {cython-3.1.2 → cython-3.1.4}/tests/run/cpdef_enums.pxd +0 -0
  1746. {cython-3.1.2 → cython-3.1.4}/tests/run/cpdef_enums.pyx +0 -0
  1747. {cython-3.1.2 → cython-3.1.4}/tests/run/cpdef_enums_import.srctree +0 -0
  1748. {cython-3.1.2 → cython-3.1.4}/tests/run/cpdef_extern_func.pxd +0 -0
  1749. {cython-3.1.2 → cython-3.1.4}/tests/run/cpdef_extern_func.pyx +0 -0
  1750. {cython-3.1.2 → cython-3.1.4}/tests/run/cpdef_extern_func_in_py.pxd +0 -0
  1751. {cython-3.1.2 → cython-3.1.4}/tests/run/cpdef_extern_func_in_py.py +0 -0
  1752. {cython-3.1.2 → cython-3.1.4}/tests/run/cpdef_method_override.pyx +0 -0
  1753. {cython-3.1.2 → cython-3.1.4}/tests/run/cpdef_method_override_recursion.pyx +0 -0
  1754. {cython-3.1.2 → cython-3.1.4}/tests/run/cpdef_nogil.pyx +0 -0
  1755. {cython-3.1.2 → cython-3.1.4}/tests/run/cpdef_optargs.pyx +0 -0
  1756. {cython-3.1.2 → cython-3.1.4}/tests/run/cpdef_optargs_pure.pxd +0 -0
  1757. {cython-3.1.2 → cython-3.1.4}/tests/run/cpdef_optargs_pure.py +0 -0
  1758. {cython-3.1.2 → cython-3.1.4}/tests/run/cpdef_pickle.srctree +0 -0
  1759. {cython-3.1.2 → cython-3.1.4}/tests/run/cpdef_scoped_enums.pyx +0 -0
  1760. {cython-3.1.2 → cython-3.1.4}/tests/run/cpdef_scoped_enums_import.srctree +0 -0
  1761. {cython-3.1.2 → cython-3.1.4}/tests/run/cpdef_temps_T411.pyx +0 -0
  1762. {cython-3.1.2 → cython-3.1.4}/tests/run/cpdef_void_return.pyx +0 -0
  1763. {cython-3.1.2 → cython-3.1.4}/tests/run/cpow.pyx +0 -0
  1764. {cython-3.1.2 → cython-3.1.4}/tests/run/cpp_assignment_overload.srctree +0 -0
  1765. {cython-3.1.2 → cython-3.1.4}/tests/run/cpp_bool.pyx +0 -0
  1766. {cython-3.1.2 → cython-3.1.4}/tests/run/cpp_bool_template_return.pyx +0 -0
  1767. {cython-3.1.2 → cython-3.1.4}/tests/run/cpp_call_stack_allocated.srctree +0 -0
  1768. {cython-3.1.2 → cython-3.1.4}/tests/run/cpp_class_attrib.srctree +0 -0
  1769. {cython-3.1.2 → cython-3.1.4}/tests/run/cpp_class_redef.pxd +0 -0
  1770. {cython-3.1.2 → cython-3.1.4}/tests/run/cpp_class_redef.pyx +0 -0
  1771. {cython-3.1.2 → cython-3.1.4}/tests/run/cpp_classes.pyx +0 -0
  1772. {cython-3.1.2 → cython-3.1.4}/tests/run/cpp_classes_def.pyx +0 -0
  1773. {cython-3.1.2 → cython-3.1.4}/tests/run/cpp_const_method.pyx +0 -0
  1774. {cython-3.1.2 → cython-3.1.4}/tests/run/cpp_custom_string.srctree +0 -0
  1775. {cython-3.1.2 → cython-3.1.4}/tests/run/cpp_enums.pyx +0 -0
  1776. {cython-3.1.2 → cython-3.1.4}/tests/run/cpp_exception_ptr.pyx +0 -0
  1777. {cython-3.1.2 → cython-3.1.4}/tests/run/cpp_exception_ptr_just_handler.pyx +0 -0
  1778. {cython-3.1.2 → cython-3.1.4}/tests/run/cpp_exceptions.pyx +0 -0
  1779. {cython-3.1.2 → cython-3.1.4}/tests/run/cpp_exceptions_helper.h +0 -0
  1780. {cython-3.1.2 → cython-3.1.4}/tests/run/cpp_exceptions_nogil.pyx +0 -0
  1781. {cython-3.1.2 → cython-3.1.4}/tests/run/cpp_exceptions_nogil_helper.h +0 -0
  1782. {cython-3.1.2 → cython-3.1.4}/tests/run/cpp_exceptions_utility_code.pyx +0 -0
  1783. {cython-3.1.2 → cython-3.1.4}/tests/run/cpp_extern.srctree +0 -0
  1784. {cython-3.1.2 → cython-3.1.4}/tests/run/cpp_forwarding_ref.pyx +0 -0
  1785. {cython-3.1.2 → cython-3.1.4}/tests/run/cpp_function_lib.cpp +0 -0
  1786. {cython-3.1.2 → cython-3.1.4}/tests/run/cpp_function_lib.h +0 -0
  1787. {cython-3.1.2 → cython-3.1.4}/tests/run/cpp_function_lib.pxd +0 -0
  1788. {cython-3.1.2 → cython-3.1.4}/tests/run/cpp_future.pyx +0 -0
  1789. {cython-3.1.2 → cython-3.1.4}/tests/run/cpp_iterators.pyx +0 -0
  1790. {cython-3.1.2 → cython-3.1.4}/tests/run/cpp_iterators_over_attribute_of_rvalue_support.h +0 -0
  1791. {cython-3.1.2 → cython-3.1.4}/tests/run/cpp_iterators_simple.h +0 -0
  1792. {cython-3.1.2 → cython-3.1.4}/tests/run/cpp_locals_directive.pyx +0 -0
  1793. {cython-3.1.2 → cython-3.1.4}/tests/run/cpp_locals_directive_unused.pyx +0 -0
  1794. {cython-3.1.2 → cython-3.1.4}/tests/run/cpp_locals_parallel.pyx +0 -0
  1795. {cython-3.1.2 → cython-3.1.4}/tests/run/cpp_method_overloading.pyx +0 -0
  1796. {cython-3.1.2 → cython-3.1.4}/tests/run/cpp_move.pyx +0 -0
  1797. {cython-3.1.2 → cython-3.1.4}/tests/run/cpp_mutex.pyx +0 -0
  1798. {cython-3.1.2 → cython-3.1.4}/tests/run/cpp_namespaces.pyx +0 -0
  1799. {cython-3.1.2 → cython-3.1.4}/tests/run/cpp_namespaces_helper.h +0 -0
  1800. {cython-3.1.2 → cython-3.1.4}/tests/run/cpp_nested_classes.pyx +0 -0
  1801. {cython-3.1.2 → cython-3.1.4}/tests/run/cpp_nested_classes_support.h +0 -0
  1802. {cython-3.1.2 → cython-3.1.4}/tests/run/cpp_nested_names.pxd +0 -0
  1803. {cython-3.1.2 → cython-3.1.4}/tests/run/cpp_nested_names_helper.h +0 -0
  1804. {cython-3.1.2 → cython-3.1.4}/tests/run/cpp_nested_templates.pyx +0 -0
  1805. {cython-3.1.2 → cython-3.1.4}/tests/run/cpp_nonstdint.h +0 -0
  1806. {cython-3.1.2 → cython-3.1.4}/tests/run/cpp_nonstdint.pyx +0 -0
  1807. {cython-3.1.2 → cython-3.1.4}/tests/run/cpp_operator_exc_handling.pyx +0 -0
  1808. {cython-3.1.2 → cython-3.1.4}/tests/run/cpp_operator_exc_handling_helper.hpp +0 -0
  1809. {cython-3.1.2 → cython-3.1.4}/tests/run/cpp_operators.pyx +0 -0
  1810. {cython-3.1.2 → cython-3.1.4}/tests/run/cpp_operators_helper.h +0 -0
  1811. {cython-3.1.2 → cython-3.1.4}/tests/run/cpp_scoped_enums.pyx +0 -0
  1812. {cython-3.1.2 → cython-3.1.4}/tests/run/cpp_smart_ptr.pyx +0 -0
  1813. {cython-3.1.2 → cython-3.1.4}/tests/run/cpp_smart_ptr_helper.h +0 -0
  1814. {cython-3.1.2 → cython-3.1.4}/tests/run/cpp_static_method_overload.pyx +0 -0
  1815. {cython-3.1.2 → cython-3.1.4}/tests/run/cpp_stl.pyx +0 -0
  1816. {cython-3.1.2 → cython-3.1.4}/tests/run/cpp_stl_algo_comparison_ops.pyx +0 -0
  1817. {cython-3.1.2 → cython-3.1.4}/tests/run/cpp_stl_algo_execpolicies.pyx +0 -0
  1818. {cython-3.1.2 → cython-3.1.4}/tests/run/cpp_stl_algo_minmax_ops.pyx +0 -0
  1819. {cython-3.1.2 → cython-3.1.4}/tests/run/cpp_stl_algo_modifying_sequence_ops.pyx +0 -0
  1820. {cython-3.1.2 → cython-3.1.4}/tests/run/cpp_stl_algo_nonmodifying_sequence_ops.pyx +0 -0
  1821. {cython-3.1.2 → cython-3.1.4}/tests/run/cpp_stl_algo_partitioning_ops.pyx +0 -0
  1822. {cython-3.1.2 → cython-3.1.4}/tests/run/cpp_stl_algo_permutation_ops.pyx +0 -0
  1823. {cython-3.1.2 → cython-3.1.4}/tests/run/cpp_stl_algo_sample.pyx +0 -0
  1824. {cython-3.1.2 → cython-3.1.4}/tests/run/cpp_stl_algo_sorted_ranges_other_ops.pyx +0 -0
  1825. {cython-3.1.2 → cython-3.1.4}/tests/run/cpp_stl_algo_sorted_ranges_set_ops.pyx +0 -0
  1826. {cython-3.1.2 → cython-3.1.4}/tests/run/cpp_stl_algo_sorting_ops.pyx +0 -0
  1827. {cython-3.1.2 → cython-3.1.4}/tests/run/cpp_stl_any.pyx +0 -0
  1828. {cython-3.1.2 → cython-3.1.4}/tests/run/cpp_stl_associated_containers_contains_cpp20.pyx +0 -0
  1829. {cython-3.1.2 → cython-3.1.4}/tests/run/cpp_stl_atomic.pyx +0 -0
  1830. {cython-3.1.2 → cython-3.1.4}/tests/run/cpp_stl_bit_cpp20.pyx +0 -0
  1831. {cython-3.1.2 → cython-3.1.4}/tests/run/cpp_stl_cmath_cpp17.pyx +0 -0
  1832. {cython-3.1.2 → cython-3.1.4}/tests/run/cpp_stl_cmath_cpp20.pyx +0 -0
  1833. {cython-3.1.2 → cython-3.1.4}/tests/run/cpp_stl_conversion.pyx +0 -0
  1834. {cython-3.1.2 → cython-3.1.4}/tests/run/cpp_stl_cpp11.pyx +0 -0
  1835. {cython-3.1.2 → cython-3.1.4}/tests/run/cpp_stl_forward_list.pyx +0 -0
  1836. {cython-3.1.2 → cython-3.1.4}/tests/run/cpp_stl_function.pyx +0 -0
  1837. {cython-3.1.2 → cython-3.1.4}/tests/run/cpp_stl_list.pyx +0 -0
  1838. {cython-3.1.2 → cython-3.1.4}/tests/run/cpp_stl_list_cpp11.pyx +0 -0
  1839. {cython-3.1.2 → cython-3.1.4}/tests/run/cpp_stl_map.pyx +0 -0
  1840. {cython-3.1.2 → cython-3.1.4}/tests/run/cpp_stl_multimap.pyx +0 -0
  1841. {cython-3.1.2 → cython-3.1.4}/tests/run/cpp_stl_multiset.pyx +0 -0
  1842. {cython-3.1.2 → cython-3.1.4}/tests/run/cpp_stl_numbers.pyx +0 -0
  1843. {cython-3.1.2 → cython-3.1.4}/tests/run/cpp_stl_numeric_ops.pyx +0 -0
  1844. {cython-3.1.2 → cython-3.1.4}/tests/run/cpp_stl_numeric_ops_cpp17.pyx +0 -0
  1845. {cython-3.1.2 → cython-3.1.4}/tests/run/cpp_stl_numeric_ops_cpp20.pyx +0 -0
  1846. {cython-3.1.2 → cython-3.1.4}/tests/run/cpp_stl_optional.pyx +0 -0
  1847. {cython-3.1.2 → cython-3.1.4}/tests/run/cpp_stl_random.pyx +0 -0
  1848. {cython-3.1.2 → cython-3.1.4}/tests/run/cpp_stl_set.pyx +0 -0
  1849. {cython-3.1.2 → cython-3.1.4}/tests/run/cpp_stl_span.pyx +0 -0
  1850. {cython-3.1.2 → cython-3.1.4}/tests/run/cpp_stl_string.pyx +0 -0
  1851. {cython-3.1.2 → cython-3.1.4}/tests/run/cpp_stl_string_ascii_auto_encoding.pyx +0 -0
  1852. {cython-3.1.2 → cython-3.1.4}/tests/run/cpp_stl_string_ascii_auto_encoding_str.pyx +0 -0
  1853. {cython-3.1.2 → cython-3.1.4}/tests/run/cpp_stl_string_cpp11.pyx +0 -0
  1854. {cython-3.1.2 → cython-3.1.4}/tests/run/cpp_stl_string_cpp20.pyx +0 -0
  1855. {cython-3.1.2 → cython-3.1.4}/tests/run/cpp_stl_string_utf8_auto_encoding.pyx +0 -0
  1856. {cython-3.1.2 → cython-3.1.4}/tests/run/cpp_stl_string_view.pyx +0 -0
  1857. {cython-3.1.2 → cython-3.1.4}/tests/run/cpp_stl_vector.pyx +0 -0
  1858. {cython-3.1.2 → cython-3.1.4}/tests/run/cpp_stl_vector_cpp11.pyx +0 -0
  1859. {cython-3.1.2 → cython-3.1.4}/tests/run/cpp_struct_refs.pyx +0 -0
  1860. {cython-3.1.2 → cython-3.1.4}/tests/run/cpp_template_functions.pyx +0 -0
  1861. {cython-3.1.2 → cython-3.1.4}/tests/run/cpp_template_functions_helper.h +0 -0
  1862. {cython-3.1.2 → cython-3.1.4}/tests/run/cpp_template_ref_args.h +0 -0
  1863. {cython-3.1.2 → cython-3.1.4}/tests/run/cpp_template_ref_args.pyx +0 -0
  1864. {cython-3.1.2 → cython-3.1.4}/tests/run/cpp_template_subclasses.pyx +0 -0
  1865. {cython-3.1.2 → cython-3.1.4}/tests/run/cpp_template_subclasses_helper.h +0 -0
  1866. {cython-3.1.2 → cython-3.1.4}/tests/run/cpp_templates.pyx +0 -0
  1867. {cython-3.1.2 → cython-3.1.4}/tests/run/cpp_templates_helper.h +0 -0
  1868. {cython-3.1.2 → cython-3.1.4}/tests/run/cpp_type_inference.pyx +0 -0
  1869. {cython-3.1.2 → cython-3.1.4}/tests/run/cpp_unordered_map_helper.h +0 -0
  1870. {cython-3.1.2 → cython-3.1.4}/tests/run/cpp_vector_in_generator.pyx +0 -0
  1871. {cython-3.1.2 → cython-3.1.4}/tests/run/cpython_capi.pyx +0 -0
  1872. {cython-3.1.2 → cython-3.1.4}/tests/run/cpython_capi_py35.pyx +0 -0
  1873. {cython-3.1.2 → cython-3.1.4}/tests/run/crashT245.h +0 -0
  1874. {cython-3.1.2 → cython-3.1.4}/tests/run/crashT245.pyx +0 -0
  1875. {cython-3.1.2 → cython-3.1.4}/tests/run/crashT245_pxd.pxd +0 -0
  1876. {cython-3.1.2 → cython-3.1.4}/tests/run/critical_sections.pyx +0 -0
  1877. {cython-3.1.2 → cython-3.1.4}/tests/run/cross_closure_type_inference.pyx +0 -0
  1878. {cython-3.1.2 → cython-3.1.4}/tests/run/cstringmeth.pyx +0 -0
  1879. {cython-3.1.2 → cython-3.1.4}/tests/run/cstringmul.pyx +0 -0
  1880. {cython-3.1.2 → cython-3.1.4}/tests/run/cstruct.pyx +0 -0
  1881. {cython-3.1.2 → cython-3.1.4}/tests/run/ct_DEF.pyx +0 -0
  1882. {cython-3.1.2 → cython-3.1.4}/tests/run/ct_IF.pyx +0 -0
  1883. {cython-3.1.2 → cython-3.1.4}/tests/run/ctruthtests.pyx +0 -0
  1884. {cython-3.1.2 → cython-3.1.4}/tests/run/ctuple.pyx +0 -0
  1885. {cython-3.1.2 → cython-3.1.4}/tests/run/ctypedef_bint.pyx +0 -0
  1886. {cython-3.1.2 → cython-3.1.4}/tests/run/ctypedef_char_types.pyx +0 -0
  1887. {cython-3.1.2 → cython-3.1.4}/tests/run/ctypedef_delegation.pyx +0 -0
  1888. {cython-3.1.2 → cython-3.1.4}/tests/run/ctypedef_int_types_T333.pyx +0 -0
  1889. {cython-3.1.2 → cython-3.1.4}/tests/run/ctypedef_int_types_chdr_T333.h +0 -0
  1890. {cython-3.1.2 → cython-3.1.4}/tests/run/ctypedef_int_types_defs_T333.pxd +0 -0
  1891. {cython-3.1.2 → cython-3.1.4}/tests/run/cunion.pyx +0 -0
  1892. {cython-3.1.2 → cython-3.1.4}/tests/run/curiously_recurring_template_pattern_GH1458.pyx +0 -0
  1893. {cython-3.1.2 → cython-3.1.4}/tests/run/curiously_recurring_template_pattern_GH1458_suport.h +0 -0
  1894. {cython-3.1.2 → cython-3.1.4}/tests/run/cyclic_gc.pyx +0 -0
  1895. {cython-3.1.2 → cython-3.1.4}/tests/run/cyfunction.pyx +0 -0
  1896. {cython-3.1.2 → cython-3.1.4}/tests/run/cyfunction_METH_O_GH1728.pyx +0 -0
  1897. {cython-3.1.2 → cython-3.1.4}/tests/run/cyfunction_defaults.pyx +0 -0
  1898. {cython-3.1.2 → cython-3.1.4}/tests/run/cyfunction_defaults_cpp.pyx +0 -0
  1899. {cython-3.1.2 → cython-3.1.4}/tests/run/cython2_bytes.pyx +0 -0
  1900. {cython-3.1.2 → cython-3.1.4}/tests/run/cython3.pyx +0 -0
  1901. {cython-3.1.2 → cython-3.1.4}/tests/run/cython3_no_unicode_literals.pyx +0 -0
  1902. {cython-3.1.2 → cython-3.1.4}/tests/run/cython_includes.pyx +0 -0
  1903. {cython-3.1.2 → cython-3.1.4}/tests/run/cython_lock_type.pyx +0 -0
  1904. {cython-3.1.2 → cython-3.1.4}/tests/run/cython_no_files.srctree +0 -0
  1905. {cython-3.1.2 → cython-3.1.4}/tests/run/cythonscope.pyx +0 -0
  1906. {cython-3.1.2 → cython-3.1.4}/tests/run/datetime_cimport.pyx +0 -0
  1907. {cython-3.1.2 → cython-3.1.4}/tests/run/datetime_members.pyx +0 -0
  1908. {cython-3.1.2 → cython-3.1.4}/tests/run/datetime_pxd.pyx +0 -0
  1909. {cython-3.1.2 → cython-3.1.4}/tests/run/dealloc_raise.srctree +0 -0
  1910. {cython-3.1.2 → cython-3.1.4}/tests/run/decorator_lambda.pyx +0 -0
  1911. {cython-3.1.2 → cython-3.1.4}/tests/run/decorators.pyx +0 -0
  1912. {cython-3.1.2 → cython-3.1.4}/tests/run/decorators_T593.pyx +0 -0
  1913. {cython-3.1.2 → cython-3.1.4}/tests/run/decorators_py_T593.py +0 -0
  1914. {cython-3.1.2 → cython-3.1.4}/tests/run/default_args_T674.py +0 -0
  1915. {cython-3.1.2 → cython-3.1.4}/tests/run/default_optional_gh5643.py +0 -0
  1916. {cython-3.1.2 → cython-3.1.4}/tests/run/define_macro.pyx +0 -0
  1917. {cython-3.1.2 → cython-3.1.4}/tests/run/define_macro_helper.h +0 -0
  1918. {cython-3.1.2 → cython-3.1.4}/tests/run/defnode_err_val.pyx +0 -0
  1919. {cython-3.1.2 → cython-3.1.4}/tests/run/delete.pyx +0 -0
  1920. {cython-3.1.2 → cython-3.1.4}/tests/run/delslice.py +0 -0
  1921. {cython-3.1.2 → cython-3.1.4}/tests/run/dict.pyx +0 -0
  1922. {cython-3.1.2 → cython-3.1.4}/tests/run/dict_get.pyx +0 -0
  1923. {cython-3.1.2 → cython-3.1.4}/tests/run/dict_getitem.pyx +0 -0
  1924. {cython-3.1.2 → cython-3.1.4}/tests/run/dict_iter_unpack.pyx +0 -0
  1925. {cython-3.1.2 → cython-3.1.4}/tests/run/dict_pop.pyx +0 -0
  1926. {cython-3.1.2 → cython-3.1.4}/tests/run/dict_setdefault.py +0 -0
  1927. {cython-3.1.2 → cython-3.1.4}/tests/run/dict_values_in_expression.pyx +0 -0
  1928. {cython-3.1.2 → cython-3.1.4}/tests/run/dictcomp.pyx +0 -0
  1929. {cython-3.1.2 → cython-3.1.4}/tests/run/dictintindex.pyx +0 -0
  1930. {cython-3.1.2 → cython-3.1.4}/tests/run/dietachmayer1.pyx +0 -0
  1931. {cython-3.1.2 → cython-3.1.4}/tests/run/different_package_names.srctree +0 -0
  1932. {cython-3.1.2 → cython-3.1.4}/tests/run/directive_locals_in_pxd.pxd +0 -0
  1933. {cython-3.1.2 → cython-3.1.4}/tests/run/directive_locals_in_pxd.py +0 -0
  1934. {cython-3.1.2 → cython-3.1.4}/tests/run/division_T384.pyx +0 -0
  1935. {cython-3.1.2 → cython-3.1.4}/tests/run/dotted_filenames.srctree +0 -0
  1936. {cython-3.1.2 → cython-3.1.4}/tests/run/double_dealloc_T796.pyx +0 -0
  1937. {cython-3.1.2 → cython-3.1.4}/tests/run/duplicate_keyword_in_call.py +0 -0
  1938. {cython-3.1.2 → cython-3.1.4}/tests/run/duplicate_utilitycode_from_pyx.srctree +0 -0
  1939. {cython-3.1.2 → cython-3.1.4}/tests/run/dynamic_args.pyx +0 -0
  1940. {cython-3.1.2 → cython-3.1.4}/tests/run/dynamic_attributes.pxd +0 -0
  1941. {cython-3.1.2 → cython-3.1.4}/tests/run/dynamic_attributes.pyx +0 -0
  1942. {cython-3.1.2 → cython-3.1.4}/tests/run/ellipsis_T488.pyx +0 -0
  1943. {cython-3.1.2 → cython-3.1.4}/tests/run/embedsignatures.pyx +0 -0
  1944. {cython-3.1.2 → cython-3.1.4}/tests/run/embedsignatures_clinic.pyx +0 -0
  1945. {cython-3.1.2 → cython-3.1.4}/tests/run/embedsignatures_python.pyx +0 -0
  1946. {cython-3.1.2 → cython-3.1.4}/tests/run/empty_builtin_constructors.pyx +0 -0
  1947. {cython-3.1.2 → cython-3.1.4}/tests/run/empty_declarators.pyx +0 -0
  1948. {cython-3.1.2 → cython-3.1.4}/tests/run/empty_for_loop_T208.pyx +0 -0
  1949. {cython-3.1.2 → cython-3.1.4}/tests/run/enumboolctx.pyx +0 -0
  1950. {cython-3.1.2 → cython-3.1.4}/tests/run/enumerate_T316.pyx +0 -0
  1951. {cython-3.1.2 → cython-3.1.4}/tests/run/error_pos.srctree +0 -0
  1952. {cython-3.1.2 → cython-3.1.4}/tests/run/eval.pyx +0 -0
  1953. {cython-3.1.2 → cython-3.1.4}/tests/run/exarkun.pyx +0 -0
  1954. {cython-3.1.2 → cython-3.1.4}/tests/run/exceptionpropagation.pyx +0 -0
  1955. {cython-3.1.2 → cython-3.1.4}/tests/run/exceptionrefcount.pyx +0 -0
  1956. {cython-3.1.2 → cython-3.1.4}/tests/run/exceptions_nogil.pyx +0 -0
  1957. {cython-3.1.2 → cython-3.1.4}/tests/run/exec_noargs.pyx +0 -0
  1958. {cython-3.1.2 → cython-3.1.4}/tests/run/exectest.pyx +0 -0
  1959. {cython-3.1.2 → cython-3.1.4}/tests/run/existing_output_files.srctree +0 -0
  1960. {cython-3.1.2 → cython-3.1.4}/tests/run/ext_attr_assign.pyx +0 -0
  1961. {cython-3.1.2 → cython-3.1.4}/tests/run/ext_attr_getter.srctree +0 -0
  1962. {cython-3.1.2 → cython-3.1.4}/tests/run/ext_attribute_cache.pyx +0 -0
  1963. {cython-3.1.2 → cython-3.1.4}/tests/run/ext_auto_richcmp.py +0 -0
  1964. {cython-3.1.2 → cython-3.1.4}/tests/run/ext_instance_type_T232.pyx +0 -0
  1965. {cython-3.1.2 → cython-3.1.4}/tests/run/ext_type_none_arg.pyx +0 -0
  1966. {cython-3.1.2 → cython-3.1.4}/tests/run/extclassbody.pyx +0 -0
  1967. {cython-3.1.2 → cython-3.1.4}/tests/run/extclasspass.pyx +0 -0
  1968. {cython-3.1.2 → cython-3.1.4}/tests/run/extcmethod.pyx +0 -0
  1969. {cython-3.1.2 → cython-3.1.4}/tests/run/extended_unpacking_T235.pyx +0 -0
  1970. {cython-3.1.2 → cython-3.1.4}/tests/run/extended_unpacking_T409.pyx +0 -0
  1971. {cython-3.1.2 → cython-3.1.4}/tests/run/extern_builtins_T258.pyx +0 -0
  1972. {cython-3.1.2 → cython-3.1.4}/tests/run/extern_impl.srctree +0 -0
  1973. {cython-3.1.2 → cython-3.1.4}/tests/run/extern_impl_excvalue.srctree +0 -0
  1974. {cython-3.1.2 → cython-3.1.4}/tests/run/extern_include_order.srctree +0 -0
  1975. {cython-3.1.2 → cython-3.1.4}/tests/run/extern_varobject_extensions.srctree +0 -0
  1976. {cython-3.1.2 → cython-3.1.4}/tests/run/external_defs.h +0 -0
  1977. {cython-3.1.2 → cython-3.1.4}/tests/run/external_inline_declaration.srctree +0 -0
  1978. {cython-3.1.2 → cython-3.1.4}/tests/run/external_ref_reassignment.pyx +0 -0
  1979. {cython-3.1.2 → cython-3.1.4}/tests/run/extinherit.pyx +0 -0
  1980. {cython-3.1.2 → cython-3.1.4}/tests/run/extinstantiate.pyx +0 -0
  1981. {cython-3.1.2 → cython-3.1.4}/tests/run/extkwonlyargs.pyx +0 -0
  1982. {cython-3.1.2 → cython-3.1.4}/tests/run/extlen.pyx +0 -0
  1983. {cython-3.1.2 → cython-3.1.4}/tests/run/extmember.pxd +0 -0
  1984. {cython-3.1.2 → cython-3.1.4}/tests/run/extmember.pyx +0 -0
  1985. {cython-3.1.2 → cython-3.1.4}/tests/run/extpropertyref.pyx +0 -0
  1986. {cython-3.1.2 → cython-3.1.4}/tests/run/extra_patma.pyx +0 -0
  1987. {cython-3.1.2 → cython-3.1.4}/tests/run/extstarargs.pyx +0 -0
  1988. {cython-3.1.2 → cython-3.1.4}/tests/run/exttype.pyx +0 -0
  1989. {cython-3.1.2 → cython-3.1.4}/tests/run/exttype_dealloc.pyx +0 -0
  1990. {cython-3.1.2 → cython-3.1.4}/tests/run/exttype_freelist.pyx +0 -0
  1991. {cython-3.1.2 → cython-3.1.4}/tests/run/exttype_gc.pyx +0 -0
  1992. {cython-3.1.2 → cython-3.1.4}/tests/run/exttype_total_ordering.pyx +0 -0
  1993. {cython-3.1.2 → cython-3.1.4}/tests/run/fastcall.pyx +0 -0
  1994. {cython-3.1.2 → cython-3.1.4}/tests/run/file_encoding_T740.py +0 -0
  1995. {cython-3.1.2 → cython-3.1.4}/tests/run/filenames.pxi +0 -0
  1996. {cython-3.1.2 → cython-3.1.4}/tests/run/filenames.pyx +0 -0
  1997. {cython-3.1.2 → cython-3.1.4}/tests/run/final_cdef_class.pyx +0 -0
  1998. {cython-3.1.2 → cython-3.1.4}/tests/run/final_in_pxd.srctree +0 -0
  1999. {cython-3.1.2 → cython-3.1.4}/tests/run/final_method_T586.pyx +0 -0
  2000. {cython-3.1.2 → cython-3.1.4}/tests/run/flatin.pyx +0 -0
  2001. {cython-3.1.2 → cython-3.1.4}/tests/run/float_division.pyx +0 -0
  2002. {cython-3.1.2 → cython-3.1.4}/tests/run/float_floor_division_T260.pyx +0 -0
  2003. {cython-3.1.2 → cython-3.1.4}/tests/run/float_len_T480.pyx +0 -0
  2004. {cython-3.1.2 → cython-3.1.4}/tests/run/fmod.pyx +0 -0
  2005. {cython-3.1.2 → cython-3.1.4}/tests/run/for_decrement.pyx +0 -0
  2006. {cython-3.1.2 → cython-3.1.4}/tests/run/for_from_float_T254.pyx +0 -0
  2007. {cython-3.1.2 → cython-3.1.4}/tests/run/for_from_pyvar_loop_T601.pyx +0 -0
  2008. {cython-3.1.2 → cython-3.1.4}/tests/run/for_in_break_continue_T533.pyx +0 -0
  2009. {cython-3.1.2 → cython-3.1.4}/tests/run/for_in_iter.py +0 -0
  2010. {cython-3.1.2 → cython-3.1.4}/tests/run/for_in_range_T372.pyx +0 -0
  2011. {cython-3.1.2 → cython-3.1.4}/tests/run/for_in_string.pyx +0 -0
  2012. {cython-3.1.2 → cython-3.1.4}/tests/run/forfrom.pyx +0 -0
  2013. {cython-3.1.2 → cython-3.1.4}/tests/run/freethreading_compatible.srctree +0 -0
  2014. {cython-3.1.2 → cython-3.1.4}/tests/run/fstring.pyx +0 -0
  2015. {cython-3.1.2 → cython-3.1.4}/tests/run/funcexc_iter_T228.pyx +0 -0
  2016. {cython-3.1.2 → cython-3.1.4}/tests/run/funcexcept.pyx +0 -0
  2017. {cython-3.1.2 → cython-3.1.4}/tests/run/funcexceptchained.pyx +0 -0
  2018. {cython-3.1.2 → cython-3.1.4}/tests/run/funcexceptcypy.pyx +0 -0
  2019. {cython-3.1.2 → cython-3.1.4}/tests/run/funcexceptraise.pyx +0 -0
  2020. {cython-3.1.2 → cython-3.1.4}/tests/run/funcexceptraisefrom.pyx +0 -0
  2021. {cython-3.1.2 → cython-3.1.4}/tests/run/funcexceptreplace.pyx +0 -0
  2022. {cython-3.1.2 → cython-3.1.4}/tests/run/funcexceptreraise.pyx +0 -0
  2023. {cython-3.1.2 → cython-3.1.4}/tests/run/funcexceptreturn.pyx +0 -0
  2024. {cython-3.1.2 → cython-3.1.4}/tests/run/function_as_method_T494.pyx +0 -0
  2025. {cython-3.1.2 → cython-3.1.4}/tests/run/function_as_method_py_T494.py +0 -0
  2026. {cython-3.1.2 → cython-3.1.4}/tests/run/function_binding_T494.pyx +0 -0
  2027. {cython-3.1.2 → cython-3.1.4}/tests/run/function_self.py +0 -0
  2028. {cython-3.1.2 → cython-3.1.4}/tests/run/fused_bound_functions.py +0 -0
  2029. {cython-3.1.2 → cython-3.1.4}/tests/run/fused_cdef.pyx +0 -0
  2030. {cython-3.1.2 → cython-3.1.4}/tests/run/fused_cmethods.srctree +0 -0
  2031. {cython-3.1.2 → cython-3.1.4}/tests/run/fused_cpdef.pxd +0 -0
  2032. {cython-3.1.2 → cython-3.1.4}/tests/run/fused_cpdef.pyx +0 -0
  2033. {cython-3.1.2 → cython-3.1.4}/tests/run/fused_cpp.pyx +0 -0
  2034. {cython-3.1.2 → cython-3.1.4}/tests/run/fused_def.pyx +0 -0
  2035. {cython-3.1.2 → cython-3.1.4}/tests/run/fused_types.pyx +0 -0
  2036. {cython-3.1.2 → cython-3.1.4}/tests/run/fused_types_complex.pyx +0 -0
  2037. {cython-3.1.2 → cython-3.1.4}/tests/run/future_division.pyx +0 -0
  2038. {cython-3.1.2 → cython-3.1.4}/tests/run/future_unicode_literals.pyx +0 -0
  2039. {cython-3.1.2 → cython-3.1.4}/tests/run/generator_expressions.pyx +0 -0
  2040. {cython-3.1.2 → cython-3.1.4}/tests/run/generator_expressions_and_locals.pyx +0 -0
  2041. {cython-3.1.2 → cython-3.1.4}/tests/run/generator_expressions_in_class.py +0 -0
  2042. {cython-3.1.2 → cython-3.1.4}/tests/run/generator_expressions_nested.pyx +0 -0
  2043. {cython-3.1.2 → cython-3.1.4}/tests/run/generator_frame_cycle.py +0 -0
  2044. {cython-3.1.2 → cython-3.1.4}/tests/run/generator_thread_safety.pyx +0 -0
  2045. {cython-3.1.2 → cython-3.1.4}/tests/run/generator_type_inference.pyx +0 -0
  2046. {cython-3.1.2 → cython-3.1.4}/tests/run/generators.pyx +0 -0
  2047. {cython-3.1.2 → cython-3.1.4}/tests/run/generators_GH1731.pyx +0 -0
  2048. {cython-3.1.2 → cython-3.1.4}/tests/run/generators_in_refcycles.pyx +0 -0
  2049. {cython-3.1.2 → cython-3.1.4}/tests/run/generators_pep479.pyx +0 -0
  2050. {cython-3.1.2 → cython-3.1.4}/tests/run/generators_py.pxd +0 -0
  2051. {cython-3.1.2 → cython-3.1.4}/tests/run/generators_py.py +0 -0
  2052. {cython-3.1.2 → cython-3.1.4}/tests/run/generators_py35.py +0 -0
  2053. {cython-3.1.2 → cython-3.1.4}/tests/run/genexpr_T491.pyx +0 -0
  2054. {cython-3.1.2 → cython-3.1.4}/tests/run/genexpr_T715.pyx +0 -0
  2055. {cython-3.1.2 → cython-3.1.4}/tests/run/genexpr_arg_order.py +0 -0
  2056. {cython-3.1.2 → cython-3.1.4}/tests/run/genexpr_iterable_lookup_T600.pyx +0 -0
  2057. {cython-3.1.2 → cython-3.1.4}/tests/run/getattr3call.pyx +0 -0
  2058. {cython-3.1.2 → cython-3.1.4}/tests/run/gil_in_var_initialization_tests.pyx +0 -0
  2059. {cython-3.1.2 → cython-3.1.4}/tests/run/hasattr.py +0 -0
  2060. {cython-3.1.2 → cython-3.1.4}/tests/run/hash_T326.pyx +0 -0
  2061. {cython-3.1.2 → cython-3.1.4}/tests/run/if.pyx +0 -0
  2062. {cython-3.1.2 → cython-3.1.4}/tests/run/if_and_or.pyx +0 -0
  2063. {cython-3.1.2 → cython-3.1.4}/tests/run/if_const.pyx +0 -0
  2064. {cython-3.1.2 → cython-3.1.4}/tests/run/if_else_expr.pyx +0 -0
  2065. {cython-3.1.2 → cython-3.1.4}/tests/run/if_else_expr_cpp.pyx +0 -0
  2066. {cython-3.1.2 → cython-3.1.4}/tests/run/if_else_expr_cpp_helper.h +0 -0
  2067. {cython-3.1.2 → cython-3.1.4}/tests/run/ifelseexpr_T267.pyx +0 -0
  2068. {cython-3.1.2 → cython-3.1.4}/tests/run/import_error_T734.py +0 -0
  2069. {cython-3.1.2 → cython-3.1.4}/tests/run/import_star.pyx +0 -0
  2070. {cython-3.1.2 → cython-3.1.4}/tests/run/importas.pyx +0 -0
  2071. {cython-3.1.2 → cython-3.1.4}/tests/run/importas_from_package.srctree +0 -0
  2072. {cython-3.1.2 → cython-3.1.4}/tests/run/importfrom.pyx +0 -0
  2073. {cython-3.1.2 → cython-3.1.4}/tests/run/in_list_with_side_effects_T544.pyx +0 -0
  2074. {cython-3.1.2 → cython-3.1.4}/tests/run/include.pyx +0 -0
  2075. {cython-3.1.2 → cython-3.1.4}/tests/run/include_multiple_modules.srctree +0 -0
  2076. {cython-3.1.2 → cython-3.1.4}/tests/run/includes/a.h +0 -0
  2077. {cython-3.1.2 → cython-3.1.4}/tests/run/includes/all.pyx +0 -0
  2078. {cython-3.1.2 → cython-3.1.4}/tests/run/includes/b.h +0 -0
  2079. {cython-3.1.2 → cython-3.1.4}/tests/run/includes/b.pxd +0 -0
  2080. {cython-3.1.2 → cython-3.1.4}/tests/run/includes/c.h +0 -0
  2081. {cython-3.1.2 → cython-3.1.4}/tests/run/includes/d.h +0 -0
  2082. {cython-3.1.2 → cython-3.1.4}/tests/run/includes/d.pxd +0 -0
  2083. {cython-3.1.2 → cython-3.1.4}/tests/run/includes/e.h +0 -0
  2084. {cython-3.1.2 → cython-3.1.4}/tests/run/includes/includefile.pxi +0 -0
  2085. {cython-3.1.2 → cython-3.1.4}/tests/run/includes/indirect_d.pxd +0 -0
  2086. {cython-3.1.2 → cython-3.1.4}/tests/run/index.pyx +0 -0
  2087. {cython-3.1.2 → cython-3.1.4}/tests/run/inhcmethcall.pyx +0 -0
  2088. {cython-3.1.2 → cython-3.1.4}/tests/run/inherited_final_method.pyx +0 -0
  2089. {cython-3.1.2 → cython-3.1.4}/tests/run/initial_file_path.srctree +0 -0
  2090. {cython-3.1.2 → cython-3.1.4}/tests/run/inline.pyx +0 -0
  2091. {cython-3.1.2 → cython-3.1.4}/tests/run/inlined_context_manager.pyx +0 -0
  2092. {cython-3.1.2 → cython-3.1.4}/tests/run/inlined_generator_expressions.pyx +0 -0
  2093. {cython-3.1.2 → cython-3.1.4}/tests/run/inlinepxd.pxd +0 -0
  2094. {cython-3.1.2 → cython-3.1.4}/tests/run/inlinepxd.pyx +0 -0
  2095. {cython-3.1.2 → cython-3.1.4}/tests/run/inlinepxd_support.pxd +0 -0
  2096. {cython-3.1.2 → cython-3.1.4}/tests/run/inop.pyx +0 -0
  2097. {cython-3.1.2 → cython-3.1.4}/tests/run/inplace.pyx +0 -0
  2098. {cython-3.1.2 → cython-3.1.4}/tests/run/int128.pyx +0 -0
  2099. {cython-3.1.2 → cython-3.1.4}/tests/run/int_float_builtins_as_casts_T400.pyx +0 -0
  2100. {cython-3.1.2 → cython-3.1.4}/tests/run/int_float_builtins_as_casts_T400_long_double.pyx +0 -0
  2101. {cython-3.1.2 → cython-3.1.4}/tests/run/int_literals.pyx +0 -0
  2102. {cython-3.1.2 → cython-3.1.4}/tests/run/intern_T431.pyx +0 -0
  2103. {cython-3.1.2 → cython-3.1.4}/tests/run/internal_cdef_class.pyx +0 -0
  2104. {cython-3.1.2 → cython-3.1.4}/tests/run/ipow_crash_T562.pyx +0 -0
  2105. {cython-3.1.2 → cython-3.1.4}/tests/run/ishimoto2.pyx +0 -0
  2106. {cython-3.1.2 → cython-3.1.4}/tests/run/ishimoto3.pyx +0 -0
  2107. {cython-3.1.2 → cython-3.1.4}/tests/run/isinstance.pyx +0 -0
  2108. {cython-3.1.2 → cython-3.1.4}/tests/run/isnonebool.pyx +0 -0
  2109. {cython-3.1.2 → cython-3.1.4}/tests/run/isnot.pyx +0 -0
  2110. {cython-3.1.2 → cython-3.1.4}/tests/run/isolated_limited_api_tests.srctree +0 -0
  2111. {cython-3.1.2 → cython-3.1.4}/tests/run/iter.pyx +0 -0
  2112. {cython-3.1.2 → cython-3.1.4}/tests/run/iteratorexception.pyx +0 -0
  2113. {cython-3.1.2 → cython-3.1.4}/tests/run/iterdict.pyx +0 -0
  2114. {cython-3.1.2 → cython-3.1.4}/tests/run/jarausch1.pyx +0 -0
  2115. {cython-3.1.2 → cython-3.1.4}/tests/run/king1.pyx +0 -0
  2116. {cython-3.1.2 → cython-3.1.4}/tests/run/knuth_man_or_boy_test.pyx +0 -0
  2117. {cython-3.1.2 → cython-3.1.4}/tests/run/kostyrka.pyx +0 -0
  2118. {cython-3.1.2 → cython-3.1.4}/tests/run/kostyrka2.pyx +0 -0
  2119. {cython-3.1.2 → cython-3.1.4}/tests/run/kwargproblems.pyx +0 -0
  2120. {cython-3.1.2 → cython-3.1.4}/tests/run/kwargs_passthrough.pyx +0 -0
  2121. {cython-3.1.2 → cython-3.1.4}/tests/run/kwonlyargs.pyx +0 -0
  2122. {cython-3.1.2 → cython-3.1.4}/tests/run/kwonlyargscall.pyx +0 -0
  2123. {cython-3.1.2 → cython-3.1.4}/tests/run/lambda_T195.pyx +0 -0
  2124. {cython-3.1.2 → cython-3.1.4}/tests/run/lambda_T723.pyx +0 -0
  2125. {cython-3.1.2 → cython-3.1.4}/tests/run/lambda_class_T605.pyx +0 -0
  2126. {cython-3.1.2 → cython-3.1.4}/tests/run/lambda_module_T603.pyx +0 -0
  2127. {cython-3.1.2 → cython-3.1.4}/tests/run/lambda_tests.pyx +0 -0
  2128. {cython-3.1.2 → cython-3.1.4}/tests/run/language_level.srctree +0 -0
  2129. {cython-3.1.2 → cython-3.1.4}/tests/run/large_consts_T237.pyx +0 -0
  2130. {cython-3.1.2 → cython-3.1.4}/tests/run/large_integer_T5290.py +0 -0
  2131. {cython-3.1.2 → cython-3.1.4}/tests/run/legacy_implicit_noexcept.pyx +0 -0
  2132. {cython-3.1.2 → cython-3.1.4}/tests/run/legacy_implicit_noexcept_build.srctree +0 -0
  2133. {cython-3.1.2 → cython-3.1.4}/tests/run/lepage_1.pyx +0 -0
  2134. {cython-3.1.2 → cython-3.1.4}/tests/run/letnode_T766.pyx +0 -0
  2135. {cython-3.1.2 → cython-3.1.4}/tests/run/libc_math.pyx +0 -0
  2136. {cython-3.1.2 → cython-3.1.4}/tests/run/libc_stdlib.pyx +0 -0
  2137. {cython-3.1.2 → cython-3.1.4}/tests/run/libc_threads.pyx +0 -0
  2138. {cython-3.1.2 → cython-3.1.4}/tests/run/libc_time.pyx +0 -0
  2139. {cython-3.1.2 → cython-3.1.4}/tests/run/libcpp_algo.pyx +0 -0
  2140. {cython-3.1.2 → cython-3.1.4}/tests/run/libcpp_all.pyx +0 -0
  2141. {cython-3.1.2 → cython-3.1.4}/tests/run/libcpp_stop_token.pyx +0 -0
  2142. {cython-3.1.2 → cython-3.1.4}/tests/run/libcpp_threadsync_cpp20.pyx +0 -0
  2143. {cython-3.1.2 → cython-3.1.4}/tests/run/line_profile_test.srctree +0 -0
  2144. {cython-3.1.2 → cython-3.1.4}/tests/run/line_trace.pyx +0 -0
  2145. {cython-3.1.2 → cython-3.1.4}/tests/run/list.pyx +0 -0
  2146. {cython-3.1.2 → cython-3.1.4}/tests/run/list_comp_in_closure_T598.pyx +0 -0
  2147. {cython-3.1.2 → cython-3.1.4}/tests/run/list_pop.pyx +0 -0
  2148. {cython-3.1.2 → cython-3.1.4}/tests/run/listcomp.pyx +0 -0
  2149. {cython-3.1.2 → cython-3.1.4}/tests/run/literal_lists.pyx +0 -0
  2150. {cython-3.1.2 → cython-3.1.4}/tests/run/literals.pyx +0 -0
  2151. {cython-3.1.2 → cython-3.1.4}/tests/run/literalslice.pyx +0 -0
  2152. {cython-3.1.2 → cython-3.1.4}/tests/run/locals.pyx +0 -0
  2153. {cython-3.1.2 → cython-3.1.4}/tests/run/locals_T732.pyx +0 -0
  2154. {cython-3.1.2 → cython-3.1.4}/tests/run/locals_expressions_T430.pyx +0 -0
  2155. {cython-3.1.2 → cython-3.1.4}/tests/run/locals_rebind_T429.pyx +0 -0
  2156. {cython-3.1.2 → cython-3.1.4}/tests/run/longintrepr.pyx +0 -0
  2157. {cython-3.1.2 → cython-3.1.4}/tests/run/longlongindex.pyx +0 -0
  2158. {cython-3.1.2 → cython-3.1.4}/tests/run/lvalue_refs.pyx +0 -0
  2159. {cython-3.1.2 → cython-3.1.4}/tests/run/mangle_c_keywords.pyx +0 -0
  2160. {cython-3.1.2 → cython-3.1.4}/tests/run/matrix_multiplier.pyx +0 -0
  2161. {cython-3.1.2 → cython-3.1.4}/tests/run/memoryview_namespace_T775.pyx +0 -0
  2162. {cython-3.1.2 → cython-3.1.4}/tests/run/memview_vector.pyx +0 -0
  2163. {cython-3.1.2 → cython-3.1.4}/tests/run/menten1.pyx +0 -0
  2164. {cython-3.1.2 → cython-3.1.4}/tests/run/metaclass.pyx +0 -0
  2165. {cython-3.1.2 → cython-3.1.4}/tests/run/method_module_name_T422.pyx +0 -0
  2166. {cython-3.1.2 → cython-3.1.4}/tests/run/methodmangling_T5.py +0 -0
  2167. {cython-3.1.2 → cython-3.1.4}/tests/run/methodmangling_cdef.pxd +0 -0
  2168. {cython-3.1.2 → cython-3.1.4}/tests/run/methodmangling_cdef.pyx +0 -0
  2169. {cython-3.1.2 → cython-3.1.4}/tests/run/methodmangling_pure.py +0 -0
  2170. {cython-3.1.2 → cython-3.1.4}/tests/run/methodmangling_unknown_names.py +0 -0
  2171. {cython-3.1.2 → cython-3.1.4}/tests/run/mod__name__.pyx +0 -0
  2172. {cython-3.1.2 → cython-3.1.4}/tests/run/mod__spec__.pyx +0 -0
  2173. {cython-3.1.2 → cython-3.1.4}/tests/run/modbody.pyx +0 -0
  2174. {cython-3.1.2 → cython-3.1.4}/tests/run/modop.pyx +0 -0
  2175. {cython-3.1.2 → cython-3.1.4}/tests/run/module_init_error.srctree +0 -0
  2176. {cython-3.1.2 → cython-3.1.4}/tests/run/moduletryexcept.pyx +0 -0
  2177. {cython-3.1.2 → cython-3.1.4}/tests/run/mulop.pyx +0 -0
  2178. {cython-3.1.2 → cython-3.1.4}/tests/run/multass.pyx +0 -0
  2179. {cython-3.1.2 → cython-3.1.4}/tests/run/new_as_nonkeyword.pyx +0 -0
  2180. {cython-3.1.2 → cython-3.1.4}/tests/run/new_style_exceptions.pyx +0 -0
  2181. {cython-3.1.2 → cython-3.1.4}/tests/run/no_gc.pyx +0 -0
  2182. {cython-3.1.2 → cython-3.1.4}/tests/run/no_gc_clear.pyx +0 -0
  2183. {cython-3.1.2 → cython-3.1.4}/tests/run/nogil.pxd +0 -0
  2184. {cython-3.1.2 → cython-3.1.4}/tests/run/nogil.pyx +0 -0
  2185. {cython-3.1.2 → cython-3.1.4}/tests/run/nogil_conditional.pyx +0 -0
  2186. {cython-3.1.2 → cython-3.1.4}/tests/run/nogil_other.pxd +0 -0
  2187. {cython-3.1.2 → cython-3.1.4}/tests/run/non_const_as_const_arg.pyx +0 -0
  2188. {cython-3.1.2 → cython-3.1.4}/tests/run/non_dict_kwargs_T470.pyx +0 -0
  2189. {cython-3.1.2 → cython-3.1.4}/tests/run/nonecheck.pyx +0 -0
  2190. {cython-3.1.2 → cython-3.1.4}/tests/run/nonlocal_T490.pyx +0 -0
  2191. {cython-3.1.2 → cython-3.1.4}/tests/run/nononetypecheck.pyx +0 -0
  2192. {cython-3.1.2 → cython-3.1.4}/tests/run/notinop.pyx +0 -0
  2193. {cython-3.1.2 → cython-3.1.4}/tests/run/numpy_ValueError_T172.pyx +0 -0
  2194. {cython-3.1.2 → cython-3.1.4}/tests/run/numpy_attributes.pyx +0 -0
  2195. {cython-3.1.2 → cython-3.1.4}/tests/run/numpy_bufacc_T155.pyx +0 -0
  2196. {cython-3.1.2 → cython-3.1.4}/tests/run/numpy_cimport.pyx +0 -0
  2197. {cython-3.1.2 → cython-3.1.4}/tests/run/numpy_cimport_1.pyx +0 -0
  2198. {cython-3.1.2 → cython-3.1.4}/tests/run/numpy_cimport_2.pyx +0 -0
  2199. {cython-3.1.2 → cython-3.1.4}/tests/run/numpy_cimport_3.pyx +0 -0
  2200. {cython-3.1.2 → cython-3.1.4}/tests/run/numpy_cimport_4.pyx +0 -0
  2201. {cython-3.1.2 → cython-3.1.4}/tests/run/numpy_cimport_5.pyx +0 -0
  2202. {cython-3.1.2 → cython-3.1.4}/tests/run/numpy_cimport_6.pyx +0 -0
  2203. {cython-3.1.2 → cython-3.1.4}/tests/run/numpy_import_array_error.srctree +0 -0
  2204. {cython-3.1.2 → cython-3.1.4}/tests/run/numpy_math.pyx +0 -0
  2205. {cython-3.1.2 → cython-3.1.4}/tests/run/numpy_parallel.pyx +0 -0
  2206. {cython-3.1.2 → cython-3.1.4}/tests/run/numpy_pythran.pyx +0 -0
  2207. {cython-3.1.2 → cython-3.1.4}/tests/run/numpy_pythran_unit.pyx +0 -0
  2208. {cython-3.1.2 → cython-3.1.4}/tests/run/numpy_subarray.pyx +0 -0
  2209. {cython-3.1.2 → cython-3.1.4}/tests/run/numpy_test.pyx +0 -0
  2210. {cython-3.1.2 → cython-3.1.4}/tests/run/onelinesuite.py +0 -0
  2211. {cython-3.1.2 → cython-3.1.4}/tests/run/ooo_base_classes.pyx +0 -0
  2212. {cython-3.1.2 → cython-3.1.4}/tests/run/or.pyx +0 -0
  2213. {cython-3.1.2 → cython-3.1.4}/tests/run/overflow_check.pxi +0 -0
  2214. {cython-3.1.2 → cython-3.1.4}/tests/run/overflow_check_int.pyx +0 -0
  2215. {cython-3.1.2 → cython-3.1.4}/tests/run/overflow_check_longlong.pyx +0 -0
  2216. {cython-3.1.2 → cython-3.1.4}/tests/run/overflow_check_uint.pyx +0 -0
  2217. {cython-3.1.2 → cython-3.1.4}/tests/run/overflow_check_ulonglong.pyx +0 -0
  2218. {cython-3.1.2 → cython-3.1.4}/tests/run/owned_arg_refs.pyx +0 -0
  2219. {cython-3.1.2 → cython-3.1.4}/tests/run/packedstruct_T290.pyx +0 -0
  2220. {cython-3.1.2 → cython-3.1.4}/tests/run/parallel.pyx +0 -0
  2221. {cython-3.1.2 → cython-3.1.4}/tests/run/parallel_swap_assign_T425.pyx +0 -0
  2222. {cython-3.1.2 → cython-3.1.4}/tests/run/partial_circular_import.srctree +0 -0
  2223. {cython-3.1.2 → cython-3.1.4}/tests/run/pass.pyx +0 -0
  2224. {cython-3.1.2 → cython-3.1.4}/tests/run/pep3135_class_cell.py +0 -0
  2225. {cython-3.1.2 → cython-3.1.4}/tests/run/pep442_tp_finalize.pyx +0 -0
  2226. {cython-3.1.2 → cython-3.1.4}/tests/run/pep442_tp_finalize_cimport.srctree +0 -0
  2227. {cython-3.1.2 → cython-3.1.4}/tests/run/pep448_extended_unpacking.pyx +0 -0
  2228. {cython-3.1.2 → cython-3.1.4}/tests/run/pep448_test_extcall.pyx +0 -0
  2229. {cython-3.1.2 → cython-3.1.4}/tests/run/pep526_variable_annotations.py +0 -0
  2230. {cython-3.1.2 → cython-3.1.4}/tests/run/pep526_variable_annotations_cy.pyx +0 -0
  2231. {cython-3.1.2 → cython-3.1.4}/tests/run/pep557_dataclasses.py +0 -0
  2232. {cython-3.1.2 → cython-3.1.4}/tests/run/pep563_annotations.py +0 -0
  2233. {cython-3.1.2 → cython-3.1.4}/tests/run/pinard5.pyx +0 -0
  2234. {cython-3.1.2 → cython-3.1.4}/tests/run/pinard6.pyx +0 -0
  2235. {cython-3.1.2 → cython-3.1.4}/tests/run/pinard7.pyx +0 -0
  2236. {cython-3.1.2 → cython-3.1.4}/tests/run/pinard8.pyx +0 -0
  2237. {cython-3.1.2 → cython-3.1.4}/tests/run/pointers.pyx +0 -0
  2238. {cython-3.1.2 → cython-3.1.4}/tests/run/posix_resource.pyx +0 -0
  2239. {cython-3.1.2 → cython-3.1.4}/tests/run/posix_test.pyx +0 -0
  2240. {cython-3.1.2 → cython-3.1.4}/tests/run/posix_time.pyx +0 -0
  2241. {cython-3.1.2 → cython-3.1.4}/tests/run/posonly.py +0 -0
  2242. {cython-3.1.2 → cython-3.1.4}/tests/run/powop.pyx +0 -0
  2243. {cython-3.1.2 → cython-3.1.4}/tests/run/print.pyx +0 -0
  2244. {cython-3.1.2 → cython-3.1.4}/tests/run/print_function.pyx +0 -0
  2245. {cython-3.1.2 → cython-3.1.4}/tests/run/print_refcount.pyx +0 -0
  2246. {cython-3.1.2 → cython-3.1.4}/tests/run/property_decorator_T593.py +0 -0
  2247. {cython-3.1.2 → cython-3.1.4}/tests/run/pstats_profile_test.pyx +0 -0
  2248. {cython-3.1.2 → cython-3.1.4}/tests/run/pstats_profile_test_py.py +0 -0
  2249. {cython-3.1.2 → cython-3.1.4}/tests/run/pstats_profile_test_pycfunc.pyx +0 -0
  2250. {cython-3.1.2 → cython-3.1.4}/tests/run/ptr_warning_T714.pyx +0 -0
  2251. {cython-3.1.2 → cython-3.1.4}/tests/run/ptrdiff_t.pyx +0 -0
  2252. {cython-3.1.2 → cython-3.1.4}/tests/run/public_enum.pyx +0 -0
  2253. {cython-3.1.2 → cython-3.1.4}/tests/run/public_fused_types.srctree +0 -0
  2254. {cython-3.1.2 → cython-3.1.4}/tests/run/pure.pyx +0 -0
  2255. {cython-3.1.2 → cython-3.1.4}/tests/run/pure_cdef_class_dataclass.py +0 -0
  2256. {cython-3.1.2 → cython-3.1.4}/tests/run/pure_cdef_class_property_decorator_T264.pxd +0 -0
  2257. {cython-3.1.2 → cython-3.1.4}/tests/run/pure_cdef_class_property_decorator_T264.py +0 -0
  2258. {cython-3.1.2 → cython-3.1.4}/tests/run/pure_ctuple.py +0 -0
  2259. {cython-3.1.2 → cython-3.1.4}/tests/run/pure_fused.pxd +0 -0
  2260. {cython-3.1.2 → cython-3.1.4}/tests/run/pure_fused.py +0 -0
  2261. {cython-3.1.2 → cython-3.1.4}/tests/run/pure_mode_cmethod_inheritance_T583.pxd +0 -0
  2262. {cython-3.1.2 → cython-3.1.4}/tests/run/pure_mode_cmethod_inheritance_T583.py +0 -0
  2263. {cython-3.1.2 → cython-3.1.4}/tests/run/pure_nogil_conditional.pyx +0 -0
  2264. {cython-3.1.2 → cython-3.1.4}/tests/run/pure_parallel.py +0 -0
  2265. {cython-3.1.2 → cython-3.1.4}/tests/run/pure_pxd.srctree +0 -0
  2266. {cython-3.1.2 → cython-3.1.4}/tests/run/pure_py.py +0 -0
  2267. {cython-3.1.2 → cython-3.1.4}/tests/run/pure_py3.py +0 -0
  2268. {cython-3.1.2 → cython-3.1.4}/tests/run/pure_py_cimports.py +0 -0
  2269. {cython-3.1.2 → cython-3.1.4}/tests/run/pure_pyx_cimports.pyx +0 -0
  2270. {cython-3.1.2 → cython-3.1.4}/tests/run/purecdef.py +0 -0
  2271. {cython-3.1.2 → cython-3.1.4}/tests/run/pxd_argument_names.srctree +0 -0
  2272. {cython-3.1.2 → cython-3.1.4}/tests/run/pxd_signature_excvalue.srctree +0 -0
  2273. {cython-3.1.2 → cython-3.1.4}/tests/run/pxd_syntax.srctree +0 -0
  2274. {cython-3.1.2 → cython-3.1.4}/tests/run/py2_super.pyx +0 -0
  2275. {cython-3.1.2 → cython-3.1.4}/tests/run/py34_signature.pyx +0 -0
  2276. {cython-3.1.2 → cython-3.1.4}/tests/run/py35_asyncio_async_def.srctree +0 -0
  2277. {cython-3.1.2 → cython-3.1.4}/tests/run/py35_pep492_interop.pyx +0 -0
  2278. {cython-3.1.2 → cython-3.1.4}/tests/run/py3k_super.py +0 -0
  2279. {cython-3.1.2 → cython-3.1.4}/tests/run/py_classbody.py +0 -0
  2280. {cython-3.1.2 → cython-3.1.4}/tests/run/py_hash_t.pyx +0 -0
  2281. {cython-3.1.2 → cython-3.1.4}/tests/run/py_ucs4_type.pyx +0 -0
  2282. {cython-3.1.2 → cython-3.1.4}/tests/run/py_unicode_strings.pyx +0 -0
  2283. {cython-3.1.2 → cython-3.1.4}/tests/run/py_unicode_type.pyx +0 -0
  2284. {cython-3.1.2 → cython-3.1.4}/tests/run/pyarray.pyx +0 -0
  2285. {cython-3.1.2 → cython-3.1.4}/tests/run/pycapsule.pyx +0 -0
  2286. {cython-3.1.2 → cython-3.1.4}/tests/run/pyclass_annotations_pep526.py +0 -0
  2287. {cython-3.1.2 → cython-3.1.4}/tests/run/pyclass_dynamic_bases.pyx +0 -0
  2288. {cython-3.1.2 → cython-3.1.4}/tests/run/pyclass_scope_T671.py +0 -0
  2289. {cython-3.1.2 → cython-3.1.4}/tests/run/pyclass_special_methods.pyx +0 -0
  2290. {cython-3.1.2 → cython-3.1.4}/tests/run/pycmp.pyx +0 -0
  2291. {cython-3.1.2 → cython-3.1.4}/tests/run/pycontextvar.pyx +0 -0
  2292. {cython-3.1.2 → cython-3.1.4}/tests/run/pyextattrref.pyx +0 -0
  2293. {cython-3.1.2 → cython-3.1.4}/tests/run/pyfunction_redefine_T489.pyx +0 -0
  2294. {cython-3.1.2 → cython-3.1.4}/tests/run/pylistsubtype.pyx +0 -0
  2295. {cython-3.1.2 → cython-3.1.4}/tests/run/pynumber_subtype_conversion.pyx +0 -0
  2296. {cython-3.1.2 → cython-3.1.4}/tests/run/pynumop.pyx +0 -0
  2297. {cython-3.1.2 → cython-3.1.4}/tests/run/pyobjcast_T313.pyx +0 -0
  2298. {cython-3.1.2 → cython-3.1.4}/tests/run/pyparam_nogil.pyx +0 -0
  2299. {cython-3.1.2 → cython-3.1.4}/tests/run/python_bool_type.pyx +0 -0
  2300. {cython-3.1.2 → cython-3.1.4}/tests/run/pytype.pyx +0 -0
  2301. {cython-3.1.2 → cython-3.1.4}/tests/run/qualname.py +0 -0
  2302. {cython-3.1.2 → cython-3.1.4}/tests/run/r_addint.pyx +0 -0
  2303. {cython-3.1.2 → cython-3.1.4}/tests/run/r_argdefault.pyx +0 -0
  2304. {cython-3.1.2 → cython-3.1.4}/tests/run/r_barbieri1.pyx +0 -0
  2305. {cython-3.1.2 → cython-3.1.4}/tests/run/r_bishop3.pyx +0 -0
  2306. {cython-3.1.2 → cython-3.1.4}/tests/run/r_bowden1.pyx +0 -0
  2307. {cython-3.1.2 → cython-3.1.4}/tests/run/r_delgado_1.pyx +0 -0
  2308. {cython-3.1.2 → cython-3.1.4}/tests/run/r_docstrings.pyx +0 -0
  2309. {cython-3.1.2 → cython-3.1.4}/tests/run/r_extcomplex2.pyx +0 -0
  2310. {cython-3.1.2 → cython-3.1.4}/tests/run/r_extstarargs.pyx +0 -0
  2311. {cython-3.1.2 → cython-3.1.4}/tests/run/r_forloop.pyx +0 -0
  2312. {cython-3.1.2 → cython-3.1.4}/tests/run/r_hordijk1.pyx +0 -0
  2313. {cython-3.1.2 → cython-3.1.4}/tests/run/r_huss3.pyx +0 -0
  2314. {cython-3.1.2 → cython-3.1.4}/tests/run/r_jeff_epler_1.pyx +0 -0
  2315. {cython-3.1.2 → cython-3.1.4}/tests/run/r_jiba1.pxd +0 -0
  2316. {cython-3.1.2 → cython-3.1.4}/tests/run/r_jiba1.pyx +0 -0
  2317. {cython-3.1.2 → cython-3.1.4}/tests/run/r_lepage_3.pyx +0 -0
  2318. {cython-3.1.2 → cython-3.1.4}/tests/run/r_mang1.pyx +0 -0
  2319. {cython-3.1.2 → cython-3.1.4}/tests/run/r_mcintyre1.pyx +0 -0
  2320. {cython-3.1.2 → cython-3.1.4}/tests/run/r_mitch_chapman_2.pyx +0 -0
  2321. {cython-3.1.2 → cython-3.1.4}/tests/run/r_primes.pyx +0 -0
  2322. {cython-3.1.2 → cython-3.1.4}/tests/run/r_print.pyx +0 -0
  2323. {cython-3.1.2 → cython-3.1.4}/tests/run/r_pyclass.pyx +0 -0
  2324. {cython-3.1.2 → cython-3.1.4}/tests/run/r_pyclassdefault.pyx +0 -0
  2325. {cython-3.1.2 → cython-3.1.4}/tests/run/r_pythonapi.pyx +0 -0
  2326. {cython-3.1.2 → cython-3.1.4}/tests/run/r_spamtype.pyx +0 -0
  2327. {cython-3.1.2 → cython-3.1.4}/tests/run/r_starargcall.pyx +0 -0
  2328. {cython-3.1.2 → cython-3.1.4}/tests/run/r_starargs.pyx +0 -0
  2329. {cython-3.1.2 → cython-3.1.4}/tests/run/r_starargsonly.pyx +0 -0
  2330. {cython-3.1.2 → cython-3.1.4}/tests/run/r_toofewargs.pyx +0 -0
  2331. {cython-3.1.2 → cython-3.1.4}/tests/run/r_typecast.pyx +0 -0
  2332. {cython-3.1.2 → cython-3.1.4}/tests/run/r_uintindex.pyx +0 -0
  2333. {cython-3.1.2 → cython-3.1.4}/tests/run/r_vree_1.pyx +0 -0
  2334. {cython-3.1.2 → cython-3.1.4}/tests/run/raise_memory_error_T650.pyx +0 -0
  2335. {cython-3.1.2 → cython-3.1.4}/tests/run/range_optimisation_T203.pyx +0 -0
  2336. {cython-3.1.2 → cython-3.1.4}/tests/run/reduce_pickle.pyx +0 -0
  2337. {cython-3.1.2 → cython-3.1.4}/tests/run/ref2global.py +0 -0
  2338. {cython-3.1.2 → cython-3.1.4}/tests/run/ref2local.pyx +0 -0
  2339. {cython-3.1.2 → cython-3.1.4}/tests/run/refcount_in_meth.pyx +0 -0
  2340. {cython-3.1.2 → cython-3.1.4}/tests/run/reimport.pyx +0 -0
  2341. {cython-3.1.2 → cython-3.1.4}/tests/run/reimport_failure.srctree +0 -0
  2342. {cython-3.1.2 → cython-3.1.4}/tests/run/reimport_from_package.srctree +0 -0
  2343. {cython-3.1.2 → cython-3.1.4}/tests/run/reimport_from_subinterpreter.srctree +0 -0
  2344. {cython-3.1.2 → cython-3.1.4}/tests/run/relative_cimport.srctree +0 -0
  2345. {cython-3.1.2 → cython-3.1.4}/tests/run/relative_cimport_compare.srctree +0 -0
  2346. {cython-3.1.2 → cython-3.1.4}/tests/run/relative_import_leak.srctree +0 -0
  2347. {cython-3.1.2 → cython-3.1.4}/tests/run/relativeimport_T542.srctree +0 -0
  2348. {cython-3.1.2 → cython-3.1.4}/tests/run/relativeimport_star_T542.pyx +0 -0
  2349. {cython-3.1.2 → cython-3.1.4}/tests/run/reload_ext_module.pyx +0 -0
  2350. {cython-3.1.2 → cython-3.1.4}/tests/run/reraise.py +0 -0
  2351. {cython-3.1.2 → cython-3.1.4}/tests/run/reraise_3args.pyx +0 -0
  2352. {cython-3.1.2 → cython-3.1.4}/tests/run/return.pyx +0 -0
  2353. {cython-3.1.2 → cython-3.1.4}/tests/run/reversed_iteration.pyx +0 -0
  2354. {cython-3.1.2 → cython-3.1.4}/tests/run/richcmp_str_equals.py +0 -0
  2355. {cython-3.1.2 → cython-3.1.4}/tests/run/rodriguez_1.pyx +0 -0
  2356. {cython-3.1.2 → cython-3.1.4}/tests/run/scanner_trace.srctree +0 -0
  2357. {cython-3.1.2 → cython-3.1.4}/tests/run/self_in_ext_type_closure.pyx +0 -0
  2358. {cython-3.1.2 → cython-3.1.4}/tests/run/seq_mul.py +0 -0
  2359. {cython-3.1.2 → cython-3.1.4}/tests/run/sequential_parallel.pyx +0 -0
  2360. {cython-3.1.2 → cython-3.1.4}/tests/run/set.pyx +0 -0
  2361. {cython-3.1.2 → cython-3.1.4}/tests/run/set_discard_remove.py +0 -0
  2362. {cython-3.1.2 → cython-3.1.4}/tests/run/set_item.pyx +0 -0
  2363. {cython-3.1.2 → cython-3.1.4}/tests/run/set_iter.pyx +0 -0
  2364. {cython-3.1.2 → cython-3.1.4}/tests/run/set_literals.py +0 -0
  2365. {cython-3.1.2 → cython-3.1.4}/tests/run/set_new.py +0 -0
  2366. {cython-3.1.2 → cython-3.1.4}/tests/run/setcomp.pyx +0 -0
  2367. {cython-3.1.2 → cython-3.1.4}/tests/run/setjmp.pyx +0 -0
  2368. {cython-3.1.2 → cython-3.1.4}/tests/run/shapes.h +0 -0
  2369. {cython-3.1.2 → cython-3.1.4}/tests/run/short_circuit_T404.pyx +0 -0
  2370. {cython-3.1.2 → cython-3.1.4}/tests/run/simpcall.pyx +0 -0
  2371. {cython-3.1.2 → cython-3.1.4}/tests/run/size_t.pyx +0 -0
  2372. {cython-3.1.2 → cython-3.1.4}/tests/run/sizeof.pyx +0 -0
  2373. {cython-3.1.2 → cython-3.1.4}/tests/run/skip_limited_api_helper.pxi +0 -0
  2374. {cython-3.1.2 → cython-3.1.4}/tests/run/slice2.pyx +0 -0
  2375. {cython-3.1.2 → cython-3.1.4}/tests/run/slice2_T636.py +0 -0
  2376. {cython-3.1.2 → cython-3.1.4}/tests/run/slice2b.pyx +0 -0
  2377. {cython-3.1.2 → cython-3.1.4}/tests/run/slice3.pyx +0 -0
  2378. {cython-3.1.2 → cython-3.1.4}/tests/run/slice_charptr.pyx +0 -0
  2379. {cython-3.1.2 → cython-3.1.4}/tests/run/slice_ptr.pyx +0 -0
  2380. {cython-3.1.2 → cython-3.1.4}/tests/run/special_method_docstrings.pyx +0 -0
  2381. {cython-3.1.2 → cython-3.1.4}/tests/run/special_methods_T561.pyx +0 -0
  2382. {cython-3.1.2 → cython-3.1.4}/tests/run/special_methods_T561_py3.pyx +0 -0
  2383. {cython-3.1.2 → cython-3.1.4}/tests/run/special_methods_T561_py38.pyx +0 -0
  2384. {cython-3.1.2 → cython-3.1.4}/tests/run/specialfloat.pyx +0 -0
  2385. {cython-3.1.2 → cython-3.1.4}/tests/run/ssize_t_T399.pyx +0 -0
  2386. {cython-3.1.2 → cython-3.1.4}/tests/run/starargs.pyx +0 -0
  2387. {cython-3.1.2 → cython-3.1.4}/tests/run/starimport_cimport.srctree +0 -0
  2388. {cython-3.1.2 → cython-3.1.4}/tests/run/starred_target_T664.pyx +0 -0
  2389. {cython-3.1.2 → cython-3.1.4}/tests/run/static_method_inheritance.pyx +0 -0
  2390. {cython-3.1.2 → cython-3.1.4}/tests/run/static_method_inheritance_with_declaration.pxd +0 -0
  2391. {cython-3.1.2 → cython-3.1.4}/tests/run/static_method_inheritance_with_declaration.pyx +0 -0
  2392. {cython-3.1.2 → cython-3.1.4}/tests/run/static_methods.pxd +0 -0
  2393. {cython-3.1.2 → cython-3.1.4}/tests/run/static_methods.pyx +0 -0
  2394. {cython-3.1.2 → cython-3.1.4}/tests/run/staticmethod.pyx +0 -0
  2395. {cython-3.1.2 → cython-3.1.4}/tests/run/str_ascii_auto_encoding.pyx +0 -0
  2396. {cython-3.1.2 → cython-3.1.4}/tests/run/str_char_coercion_T412.pyx +0 -0
  2397. {cython-3.1.2 → cython-3.1.4}/tests/run/str_default_auto_encoding.pyx +0 -0
  2398. {cython-3.1.2 → cython-3.1.4}/tests/run/str_encoding_latin1.pyx +0 -0
  2399. {cython-3.1.2 → cython-3.1.4}/tests/run/str_subclass_kwargs.pyx +0 -0
  2400. {cython-3.1.2 → cython-3.1.4}/tests/run/strconstinclass.pyx +0 -0
  2401. {cython-3.1.2 → cython-3.1.4}/tests/run/strescapes.pyx +0 -0
  2402. {cython-3.1.2 → cython-3.1.4}/tests/run/strfunction.pyx +0 -0
  2403. {cython-3.1.2 → cython-3.1.4}/tests/run/string_comparison.pyx +0 -0
  2404. {cython-3.1.2 → cython-3.1.4}/tests/run/strmethods.pyx +0 -0
  2405. {cython-3.1.2 → cython-3.1.4}/tests/run/strmethods_ll2.pyx +0 -0
  2406. {cython-3.1.2 → cython-3.1.4}/tests/run/struct_conversion.pyx +0 -0
  2407. {cython-3.1.2 → cython-3.1.4}/tests/run/struct_conversion_extern.pyx +0 -0
  2408. {cython-3.1.2 → cython-3.1.4}/tests/run/struct_conversion_extern_header.h +0 -0
  2409. {cython-3.1.2 → cython-3.1.4}/tests/run/subclasses.pyx +0 -0
  2410. {cython-3.1.2 → cython-3.1.4}/tests/run/subinterpreters.srctree +0 -0
  2411. {cython-3.1.2 → cython-3.1.4}/tests/run/subinterpreters_threading_stress_test.srctree +0 -0
  2412. {cython-3.1.2 → cython-3.1.4}/tests/run/subop.pyx +0 -0
  2413. {cython-3.1.2 → cython-3.1.4}/tests/run/switch.pyx +0 -0
  2414. {cython-3.1.2 → cython-3.1.4}/tests/run/switch_transform.pyx +0 -0
  2415. {cython-3.1.2 → cython-3.1.4}/tests/run/sys_path_globbed.srctree +0 -0
  2416. {cython-3.1.2 → cython-3.1.4}/tests/run/tandemstats.pyx +0 -0
  2417. {cython-3.1.2 → cython-3.1.4}/tests/run/temp_alloc_T409.pyx +0 -0
  2418. {cython-3.1.2 → cython-3.1.4}/tests/run/temp_sideeffects_T654.pyx +0 -0
  2419. {cython-3.1.2 → cython-3.1.4}/tests/run/temps_corner1.pyx +0 -0
  2420. {cython-3.1.2 → cython-3.1.4}/tests/run/test_asyncgen.pxd +0 -0
  2421. {cython-3.1.2 → cython-3.1.4}/tests/run/test_asyncgen.py +0 -0
  2422. {cython-3.1.2 → cython-3.1.4}/tests/run/test_call.py +0 -0
  2423. {cython-3.1.2 → cython-3.1.4}/tests/run/test_coroutines_pep492.pyx +0 -0
  2424. {cython-3.1.2 → cython-3.1.4}/tests/run/test_dataclasses.pxi +0 -0
  2425. {cython-3.1.2 → cython-3.1.4}/tests/run/test_dataclasses.pyx +0 -0
  2426. {cython-3.1.2 → cython-3.1.4}/tests/run/test_dictviews.pyx +0 -0
  2427. {cython-3.1.2 → cython-3.1.4}/tests/run/test_exceptions.pyx +0 -0
  2428. {cython-3.1.2 → cython-3.1.4}/tests/run/test_fstring.pyx +0 -0
  2429. {cython-3.1.2 → cython-3.1.4}/tests/run/test_genericclass.py +0 -0
  2430. {cython-3.1.2 → cython-3.1.4}/tests/run/test_genericclass_exttype.pyx +0 -0
  2431. {cython-3.1.2 → cython-3.1.4}/tests/run/test_grammar.py +0 -0
  2432. {cython-3.1.2 → cython-3.1.4}/tests/run/test_named_expressions.py +0 -0
  2433. {cython-3.1.2 → cython-3.1.4}/tests/run/test_patma.py +0 -0
  2434. {cython-3.1.2 → cython-3.1.4}/tests/run/test_raisefrom.pyx +0 -0
  2435. {cython-3.1.2 → cython-3.1.4}/tests/run/test_shadow_error.py +0 -0
  2436. {cython-3.1.2 → cython-3.1.4}/tests/run/test_subclassinit.py +0 -0
  2437. {cython-3.1.2 → cython-3.1.4}/tests/run/test_unicode.pyx +0 -0
  2438. {cython-3.1.2 → cython-3.1.4}/tests/run/test_unicode_string_tests.pxi +0 -0
  2439. {cython-3.1.2 → cython-3.1.4}/tests/run/testinclude.pxi +0 -0
  2440. {cython-3.1.2 → cython-3.1.4}/tests/run/threading_stress_tests.pyx +0 -0
  2441. {cython-3.1.2 → cython-3.1.4}/tests/run/ticket_123.pyx +0 -0
  2442. {cython-3.1.2 → cython-3.1.4}/tests/run/ticket_124.pyx +0 -0
  2443. {cython-3.1.2 → cython-3.1.4}/tests/run/time_pxd.pyx +0 -0
  2444. {cython-3.1.2 → cython-3.1.4}/tests/run/tp_new.pyx +0 -0
  2445. {cython-3.1.2 → cython-3.1.4}/tests/run/tp_new_T454.pyx +0 -0
  2446. {cython-3.1.2 → cython-3.1.4}/tests/run/tp_new_cimport.srctree +0 -0
  2447. {cython-3.1.2 → cython-3.1.4}/tests/run/trace_nogil_compilation.pyx +0 -0
  2448. {cython-3.1.2 → cython-3.1.4}/tests/run/tracebacks.pyx +0 -0
  2449. {cython-3.1.2 → cython-3.1.4}/tests/run/trashcan.pyx +0 -0
  2450. {cython-3.1.2 → cython-3.1.4}/tests/run/trybreak.pyx +0 -0
  2451. {cython-3.1.2 → cython-3.1.4}/tests/run/tryexcept.pyx +0 -0
  2452. {cython-3.1.2 → cython-3.1.4}/tests/run/tryfinally.pyx +0 -0
  2453. {cython-3.1.2 → cython-3.1.4}/tests/run/tryfinallychaining.pyx +0 -0
  2454. {cython-3.1.2 → cython-3.1.4}/tests/run/tss.pyx +0 -0
  2455. {cython-3.1.2 → cython-3.1.4}/tests/run/tuple.pyx +0 -0
  2456. {cython-3.1.2 → cython-3.1.4}/tests/run/tuple_constants.pyx +0 -0
  2457. {cython-3.1.2 → cython-3.1.4}/tests/run/tuple_unpack_string.pyx +0 -0
  2458. {cython-3.1.2 → cython-3.1.4}/tests/run/tupleassign.pyx +0 -0
  2459. {cython-3.1.2 → cython-3.1.4}/tests/run/tuplereassign.pyx +0 -0
  2460. {cython-3.1.2 → cython-3.1.4}/tests/run/tupleunpack_T298.pyx +0 -0
  2461. {cython-3.1.2 → cython-3.1.4}/tests/run/tupleunpack_T712.pyx +0 -0
  2462. {cython-3.1.2 → cython-3.1.4}/tests/run/type_inference.pyx +0 -0
  2463. {cython-3.1.2 → cython-3.1.4}/tests/run/type_inference_T768.pyx +0 -0
  2464. {cython-3.1.2 → cython-3.1.4}/tests/run/type_inference_T768_cpp.pyx +0 -0
  2465. {cython-3.1.2 → cython-3.1.4}/tests/run/type_inference_ll2.pyx +0 -0
  2466. {cython-3.1.2 → cython-3.1.4}/tests/run/type_inference_new.pyx +0 -0
  2467. {cython-3.1.2 → cython-3.1.4}/tests/run/type_slots_int_long_T287.pyx +0 -0
  2468. {cython-3.1.2 → cython-3.1.4}/tests/run/type_slots_nonzero_bool.pyx +0 -0
  2469. {cython-3.1.2 → cython-3.1.4}/tests/run/typed_slice.pyx +0 -0
  2470. {cython-3.1.2 → cython-3.1.4}/tests/run/typeddefaultargT373.pyx +0 -0
  2471. {cython-3.1.2 → cython-3.1.4}/tests/run/typedfieldbug_T303.pyx +0 -0
  2472. {cython-3.1.2 → cython-3.1.4}/tests/run/typeof.pyx +0 -0
  2473. {cython-3.1.2 → cython-3.1.4}/tests/run/typeofexttype.pyx +0 -0
  2474. {cython-3.1.2 → cython-3.1.4}/tests/run/types.h +0 -0
  2475. {cython-3.1.2 → cython-3.1.4}/tests/run/typetest_T417.pyx +0 -0
  2476. {cython-3.1.2 → cython-3.1.4}/tests/run/typing_module.py +0 -0
  2477. {cython-3.1.2 → cython-3.1.4}/tests/run/typing_module_cy.pyx +0 -0
  2478. {cython-3.1.2 → cython-3.1.4}/tests/run/ufunc.pyx +0 -0
  2479. {cython-3.1.2 → cython-3.1.4}/tests/run/unbound_builtin_methods.pyx +0 -0
  2480. {cython-3.1.2 → cython-3.1.4}/tests/run/unbound_special_methods.pyx +0 -0
  2481. {cython-3.1.2 → cython-3.1.4}/tests/run/unicode_default_auto_encoding.pyx +0 -0
  2482. {cython-3.1.2 → cython-3.1.4}/tests/run/unicode_formatting.pyx +0 -0
  2483. {cython-3.1.2 → cython-3.1.4}/tests/run/unicode_identifiers.pxd +0 -0
  2484. {cython-3.1.2 → cython-3.1.4}/tests/run/unicode_identifiers.pyx +0 -0
  2485. {cython-3.1.2 → cython-3.1.4}/tests/run/unicode_identifiers_import.pyx +0 -0
  2486. {cython-3.1.2 → cython-3.1.4}/tests/run/unicode_identifiers_normalization.srctree +0 -0
  2487. {cython-3.1.2 → cython-3.1.4}/tests/run/unicode_imports.srctree +0 -0
  2488. {cython-3.1.2 → cython-3.1.4}/tests/run/unicode_indexing.pyx +0 -0
  2489. {cython-3.1.2 → cython-3.1.4}/tests/run/unicode_kwargs.pyx +0 -0
  2490. {cython-3.1.2 → cython-3.1.4}/tests/run/unicode_slicing.pyx +0 -0
  2491. {cython-3.1.2 → cython-3.1.4}/tests/run/unicodeencode.pyx +0 -0
  2492. {cython-3.1.2 → cython-3.1.4}/tests/run/unicodefunction.pyx +0 -0
  2493. {cython-3.1.2 → cython-3.1.4}/tests/run/unicodeliterals.pyx +0 -0
  2494. {cython-3.1.2 → cython-3.1.4}/tests/run/unicodeliteralsdefault.pyx +0 -0
  2495. {cython-3.1.2 → cython-3.1.4}/tests/run/unicodeliteralslatin1.pyx +0 -0
  2496. {cython-3.1.2 → cython-3.1.4}/tests/run/unicodemethods.pyx +0 -0
  2497. {cython-3.1.2 → cython-3.1.4}/tests/run/uninitialized.py +0 -0
  2498. {cython-3.1.2 → cython-3.1.4}/tests/run/unop.pyx +0 -0
  2499. {cython-3.1.2 → cython-3.1.4}/tests/run/unop_extras.pyx +0 -0
  2500. {cython-3.1.2 → cython-3.1.4}/tests/run/unpack.pyx +0 -0
  2501. {cython-3.1.2 → cython-3.1.4}/tests/run/unpack_fused.pyx +0 -0
  2502. {cython-3.1.2 → cython-3.1.4}/tests/run/unpacklistcomp.pyx +0 -0
  2503. {cython-3.1.2 → cython-3.1.4}/tests/run/unreachable.pyx +0 -0
  2504. {cython-3.1.2 → cython-3.1.4}/tests/run/unsigned.pyx +0 -0
  2505. {cython-3.1.2 → cython-3.1.4}/tests/run/unsigned_char_ptr_bytes_conversion_T359.pyx +0 -0
  2506. {cython-3.1.2 → cython-3.1.4}/tests/run/unsignedbehaviour_T184.pyx +0 -0
  2507. {cython-3.1.2 → cython-3.1.4}/tests/run/unused.pyx +0 -0
  2508. {cython-3.1.2 → cython-3.1.4}/tests/run/unused_args.pyx +0 -0
  2509. {cython-3.1.2 → cython-3.1.4}/tests/run/varargcall.pyx +0 -0
  2510. {cython-3.1.2 → cython-3.1.4}/tests/run/varargdecl.pyx +0 -0
  2511. {cython-3.1.2 → cython-3.1.4}/tests/run/verbatiminclude.h +0 -0
  2512. {cython-3.1.2 → cython-3.1.4}/tests/run/verbatiminclude.pyx +0 -0
  2513. {cython-3.1.2 → cython-3.1.4}/tests/run/versioned_pxds.srctree +0 -0
  2514. {cython-3.1.2 → cython-3.1.4}/tests/run/voidstarcast.pyx +0 -0
  2515. {cython-3.1.2 → cython-3.1.4}/tests/run/watts1.pyx +0 -0
  2516. {cython-3.1.2 → cython-3.1.4}/tests/run/weakfail.pyx +0 -0
  2517. {cython-3.1.2 → cython-3.1.4}/tests/run/with_gil.pyx +0 -0
  2518. {cython-3.1.2 → cython-3.1.4}/tests/run/with_gil_automatic.pyx +0 -0
  2519. {cython-3.1.2 → cython-3.1.4}/tests/run/with_statement_module_level_T536.pyx +0 -0
  2520. {cython-3.1.2 → cython-3.1.4}/tests/run/withnogil.pyx +0 -0
  2521. {cython-3.1.2 → cython-3.1.4}/tests/run/withstat.pyx +0 -0
  2522. {cython-3.1.2 → cython-3.1.4}/tests/run/withstat_py.py +0 -0
  2523. {cython-3.1.2 → cython-3.1.4}/tests/run/withstat_py27.py +0 -0
  2524. {cython-3.1.2 → cython-3.1.4}/tests/run/wundram1.pyx +0 -0
  2525. {cython-3.1.2 → cython-3.1.4}/tests/run/yield_from_pep380.pyx +0 -0
  2526. {cython-3.1.2 → cython-3.1.4}/tests/run/yield_from_py33.pyx +0 -0
  2527. {cython-3.1.2 → cython-3.1.4}/tests/run/yield_inside_lambda.py +0 -0
  2528. {cython-3.1.2 → cython-3.1.4}/tests/testsupport/cythonarrayutil.pxi +0 -0
  2529. {cython-3.1.2 → cython-3.1.4}/tests/windows_bugs.txt +0 -0
  2530. {cython-3.1.2 → cython-3.1.4}/tests/wrappers/cpp_overload_wrapper.pyx +0 -0
  2531. {cython-3.1.2 → cython-3.1.4}/tests/wrappers/cpp_overload_wrapper_lib.cpp +0 -0
  2532. {cython-3.1.2 → cython-3.1.4}/tests/wrappers/cpp_overload_wrapper_lib.h +0 -0
  2533. {cython-3.1.2 → cython-3.1.4}/tests/wrappers/cpp_overload_wrapper_lib.pxd +0 -0
  2534. {cython-3.1.2 → cython-3.1.4}/tests/wrappers/cpp_references.pyx +0 -0
  2535. {cython-3.1.2 → cython-3.1.4}/tests/wrappers/cpp_references_helper.h +0 -0
  2536. {cython-3.1.2 → cython-3.1.4}/tests/wrappers/cppwrap.pyx +0 -0
  2537. {cython-3.1.2 → cython-3.1.4}/tests/wrappers/cppwrap_lib.cpp +0 -0
  2538. {cython-3.1.2 → cython-3.1.4}/tests/wrappers/cppwrap_lib.h +0 -0
  2539. {cython-3.1.2 → cython-3.1.4}/tests/wrappers/cppwrap_lib.pxd +0 -0
  2540. {cython-3.1.2 → cython-3.1.4}/tox.ini +0 -0
cython-3.1.4/.gitrev ADDED
@@ -0,0 +1 @@
1
+ 236e4a3ccd24d4e24c9d7c40a8580d359663832c
@@ -2,6 +2,81 @@
2
2
  Cython Changelog
3
3
  ================
4
4
 
5
+ 3.1.4 (2025-09-16)
6
+ ==================
7
+
8
+ Features added
9
+ --------------
10
+
11
+ * Declarations for the new ``PyUnstable_*()`` refcounting C-API functions in Py3.14 were added.
12
+ (Github issue :issue:`6836`)
13
+
14
+ Bugs fixed
15
+ ----------
16
+
17
+ * The monitoring code could crash on tracing.
18
+ (Github issue :issue:`7050`)
19
+
20
+ * Initialising the monitoring code could fail with a CPython exception.
21
+ See https://github.com/nedbat/coveragepy/issues/1790#issuecomment-3257410149
22
+
23
+ * Optimised integer shifting triggered undefined behaviour in C.
24
+ (Github issue :issue:`7089`)
25
+
26
+ * Deallocating objects that inherit from external types defined in pxd files
27
+ could run into an infinite loop.
28
+ (Github issue :issue:`7143`)
29
+
30
+ * A reference to metaclasses could be leaked on instantiation.
31
+ (Github issue :issue:`7130`)
32
+
33
+ * (Unlikely) error handling during empty builtin container tests was ineffective.
34
+ (Github issue :issue:`7190`)
35
+
36
+ * Generated ``*_api.h`` files used potentially unknown Cython configuration macros.
37
+ (Github issue :issue:`7108`)
38
+
39
+ * ``cythonize()`` avoids parallel compiler runs on systems using ``spawn()`` in multiprocessing.
40
+ Patch by Marcel Bargull. (Github issue :issue:`3262`)
41
+
42
+ * The ``@cython.ufunc`` decorator was missing in type checker stubs.
43
+ Patch by jayClean. (Github issue :issue:`7109`)
44
+
45
+
46
+ 3.1.3 (2025-08-13)
47
+ ==================
48
+
49
+ Bugs fixed
50
+ ----------
51
+
52
+ * Some method calls with 0 or 1 argument failed to use ``PyObject_VectorCallMethod()``.
53
+
54
+ * Walrus assignments of literal Python integers could generate invalid C code.
55
+ (Github issue :issue:`6989`)
56
+
57
+ * ``cython.pythread_type_lock`` (also used as fallback for ``cython.pymutex``)
58
+ could stall on heavily contended locks.
59
+ (Github issue :issue:`6999`)
60
+
61
+ * C string arrays (not pointers) always coerced to the Python default string type,
62
+ even on explicit casts to other string types.
63
+ (Github issue :issue:`7020`)
64
+
65
+ * Unterminated ``\N{}`` character escapes in strings could unrail the parser.
66
+ (Github issue :issue:`7056`)
67
+
68
+ * An internal C function was not marked as ``static`` and leaked a linker symbol.
69
+ (Github issue :issue:`6957`)
70
+
71
+ * Some Unicode letters were not recognised as lexically valid name parts.
72
+ (Github issue :issue:`7059`)
73
+
74
+ * Compatibility with PyPy3.8 was lost by accident.
75
+
76
+ * The Linux binary wheels of 3.1.2 used SSSE3 CPU instructions which are not available on some CPUs.
77
+ (Github issue :issue:`7038`)
78
+
79
+
5
80
  3.1.2 (2025-06-09)
6
81
  ==================
7
82
 
@@ -1129,6 +1129,11 @@ def cythonize(module_list, exclude=None, nthreads=0, aliases=None, quiet=False,
1129
1129
 
1130
1130
  if N <= 1:
1131
1131
  nthreads = 0
1132
+ if nthreads:
1133
+ import multiprocessing
1134
+ if multiprocessing.get_start_method() == 'spawn':
1135
+ print('Disabling parallel cythonization for "spawn" process start method.')
1136
+ nthreads = 0
1132
1137
  if nthreads:
1133
1138
  import multiprocessing
1134
1139
  pool = multiprocessing.Pool(
@@ -24,6 +24,7 @@ import os.path
24
24
  import pathlib
25
25
  import re
26
26
  import sys
27
+ from typing import Optional
27
28
 
28
29
  from .Errors import (
29
30
  error, warning, InternalError, CompileError, report_error, local_errors,
@@ -14681,7 +14682,9 @@ class CoerceToBooleanNode(CoercionNode):
14681
14682
 
14682
14683
  type = PyrexTypes.c_bint_type
14683
14684
 
14684
- # Note that all of these need a check if CYTHON_ASSUME_SAFE_MACROS is false
14685
+ # Note that all of these need a check if CYTHON_ASSUME_SAFE_SIZE is false.
14686
+ # They should also all return something compatible with Py_ssize_t
14687
+ # (i.e. Py_ssize_t or a smaller int type).
14685
14688
  _special_builtins = {
14686
14689
  Builtin.list_type: '__Pyx_PyList_GET_SIZE',
14687
14690
  Builtin.tuple_type: '__Pyx_PyTuple_GET_SIZE',
@@ -14717,11 +14720,18 @@ class CoerceToBooleanNode(CoercionNode):
14717
14720
  return
14718
14721
  test_func = self._special_builtins.get(self.arg.type)
14719
14722
  if test_func is not None:
14720
- checks = ["(%s != Py_None)" % self.arg.py_result()] if self.arg.may_be_none() else []
14721
- checks.append("(%s(%s) != 0)" % (test_func, self.arg.py_result()))
14722
- code.putln("%s = %s;" % (self.result(), '&&'.join(checks)))
14723
+ if self.arg.may_be_none():
14724
+ code.putln(f"if ({self.arg.py_result()} == Py_None) {self.result()} = 0;")
14725
+ code.putln("else")
14726
+ code.putln("{")
14727
+ # Be aware that __Pyx_PyUnicode_IS_TRUE isn't strictly returning a size (but it does
14728
+ # return an int which fits into a Py_ssize_t).
14729
+ code.putln(f"Py_ssize_t {Naming.quick_temp_cname} = {test_func}({self.arg.py_result()});")
14723
14730
  code.putln(code.error_goto_if(
14724
- "((!CYTHON_ASSUME_SAFE_MACROS) && %s < 0)" % self.result(), self.pos))
14731
+ f"((!CYTHON_ASSUME_SAFE_SIZE) && {Naming.quick_temp_cname} < 0)", self.pos))
14732
+ code.putln(f"{self.result()} = ({Naming.quick_temp_cname} != 0);")
14733
+ code.putln("}")
14734
+ code.putln()
14725
14735
  else:
14726
14736
  code.putln(
14727
14737
  "%s = __Pyx_PyObject_IsTrue(%s); %s" % (
@@ -15164,27 +15174,29 @@ class AssignmentExpressionNode(ExprNode):
15164
15174
  subexprs = ["rhs"]
15165
15175
  child_attrs = ["rhs", "assignment"] # This order is important for control-flow (i.e. xdecref) to be right
15166
15176
 
15167
- is_temp = False
15168
- assignment = None
15169
- clone_node = None
15177
+ is_temp: bool = False
15178
+ rhs: Optional[ExprNode] = None
15179
+ assignment: SingleAssignmentNode
15180
+ assignment_is_independent: bool = False
15170
15181
 
15171
- def __init__(self, pos, lhs, rhs, **kwds):
15182
+ def __init__(self, pos, lhs: NameNode, rhs: ExprNode, **kwds):
15172
15183
  super().__init__(pos, **kwds)
15173
- self.rhs = ProxyNode(rhs)
15174
- assign_expr_rhs = CloneNode(self.rhs)
15175
15184
  self.assignment = SingleAssignmentNode(
15176
- pos, lhs=lhs, rhs=assign_expr_rhs, is_assignment_expression=True)
15185
+ pos, lhs=lhs, rhs=rhs, is_assignment_expression=True)
15177
15186
 
15178
15187
  @property
15179
15188
  def type(self):
15180
- return self.rhs.type
15189
+ if self.rhs is not None:
15190
+ return self.rhs.type
15191
+ return self.assignment.rhs.type
15181
15192
 
15182
15193
  @property
15183
15194
  def target_name(self):
15184
15195
  return self.assignment.lhs.name
15185
15196
 
15186
15197
  def infer_type(self, env):
15187
- return self.rhs.infer_type(env)
15198
+ rhs = self.rhs or self.assignment.rhs
15199
+ return rhs.infer_type(env)
15188
15200
 
15189
15201
  def analyse_declarations(self, env):
15190
15202
  self.assignment.analyse_declarations(env)
@@ -15196,13 +15208,10 @@ class AssignmentExpressionNode(ExprNode):
15196
15208
  # __pyx_t_1
15197
15209
  # (plus any reference counting that's needed)
15198
15210
 
15199
- self.rhs = self.rhs.analyse_types(env)
15200
- if not self.rhs.arg.result_in_temp():
15201
- if not self.rhs.arg.is_literal:
15202
- # for anything but the simplest cases (where it can be used directly)
15203
- # we convert rhs to a temp, because CloneNode requires arg to be a temp
15204
- self.rhs.arg = self.rhs.arg.coerce_to_temp(env)
15205
- else:
15211
+ self.assignment = self.assignment.analyse_types(env)
15212
+ rhs = self.assignment.rhs
15213
+ if not rhs.result_in_temp():
15214
+ if rhs.is_literal:
15206
15215
  # For literals we can optimize by just using the literal twice
15207
15216
  #
15208
15217
  # We aren't including `self.rhs.is_name` in this optimization
@@ -15211,14 +15220,22 @@ class AssignmentExpressionNode(ExprNode):
15211
15220
  # This is a special case of https://github.com/cython/cython/issues/4146
15212
15221
  # TODO - once that's fixed general revisit this code and possibly
15213
15222
  # use coerce_to_simple
15214
- self.assignment.rhs = copy.copy(self.rhs)
15223
+ self.rhs = copy.copy(self.assignment.rhs)
15224
+ self.assignment_is_independent = True
15225
+ else:
15226
+ # for anything but the simplest cases (where it can be used directly)
15227
+ # we convert rhs to a temp, because CloneNode requires arg to be a temp
15228
+ rhs = rhs.coerce_to_temp(env)
15229
+ if not self.assignment_is_independent:
15230
+ self.rhs = ProxyNode(rhs)
15231
+ self.assignment.rhs = CloneNode(self.rhs)
15232
+ self.rhs.arg = self.rhs.arg.coerce_to_temp(env)
15215
15233
 
15216
15234
  # TODO - there's a missed optimization in the code generation stage
15217
15235
  # if self.rhs.arg is temp: an incref/decref pair can be removed
15218
15236
  # (but needs a general mechanism to do that)
15219
- self.assignment = self.assignment.analyse_types(env)
15220
15237
 
15221
- if self.type.is_memoryviewslice and isinstance(self.assignment.rhs, CloneNode):
15238
+ if self.type.is_memoryviewslice and self.assignment_is_independent:
15222
15239
  # In "put_assign_to_memviewslice", memoryviews don't generate reference
15223
15240
  # counting on assignment from temp. That lack of reference counting
15224
15241
  # essentially happens twice (since we use the temp twice), which we want to
@@ -15227,7 +15244,12 @@ class AssignmentExpressionNode(ExprNode):
15227
15244
  return self
15228
15245
 
15229
15246
  def coerce_to(self, dst_type, env):
15247
+ if self.assignment_is_independent:
15248
+ # rhs and assignment don't share a node, so just behave normally
15249
+ self.rhs = self.rhs.coerce_to(dst_type, env)
15250
+ return self
15230
15251
  if dst_type == self.assignment.rhs.type:
15252
+ assert self.rhs is not None
15231
15253
  # in this quite common case (for example, when both lhs, and self are being coerced to Python)
15232
15254
  # we can optimize the coercion out by sharing it between
15233
15255
  # this and the assignment
@@ -66,7 +66,10 @@ def make_lexicon():
66
66
  two_hex = hexdigit + hexdigit
67
67
  four_hex = two_hex + two_hex
68
68
  escapeseq = Str("\\") + (two_oct | three_oct |
69
- Str('N{') + Rep(AnyBut('}')) + Str('}') |
69
+ # Unicode character names are [A-Z \-]
70
+ # https://www.unicode.org/versions/Unicode16.0.0/core-spec/chapter-4/
71
+ # Although Python itself is case agnostic
72
+ Str('N{') + Rep(Range('azAZ') | Any('- ')) + Str('}') |
70
73
  Str('u') + four_hex | Str('x') + two_hex |
71
74
  Str('U') + four_hex + four_hex | AnyChar)
72
75
 
@@ -153,8 +156,8 @@ def make_lexicon():
153
156
 
154
157
 
155
158
  # BEGIN GENERATED CODE
156
- # Generated with 'cython-generate-lexicon.py' based on:
157
- # cpython 3.13.0a1+ (heads/master:7bcf184dac, Nov 3 2023, 10:30:09) [GCC 11.4.0]
159
+ # Generated with 'cython-generate-lexicon.py' based on Unicode 16.0.0:
160
+ # cpython 3.14.0rc1 free-threading build (main, Jul 25 2025, 19:13:08) [GCC 14.2.1 20250220 [revision 9ffecde121af883b60bbe60d00425036bc873048]]
158
161
 
159
162
  unicode_start_ch_any = (
160
163
  "\u005f\u00aa\u00b5\u00ba\u02ec\u02ee\u037f\u0386\u038c\u0559\u06d5"
@@ -166,11 +169,11 @@ unicode_start_ch_any = (
166
169
  "\u2107\u2115\u2124\u2126\u2128\u214e\u2d27\u2d2d\u2d6f\ua7d3\ua8fb"
167
170
  "\ua9cf\uaa7a\uaab1\uaac0\uaac2\ufb1d\ufb3e\ufe71\ufe73\ufe77\ufe79"
168
171
  "\ufe7b\ufe7d\U00010808\U0001083c\U00010a00\U00010f27\U00011075\U00011144\U00011147\U00011176\U000111da"
169
- "\U000111dc\U00011288\U0001133d\U00011350\U000114c7\U00011644\U000116b8\U00011909\U0001193f\U00011941\U000119e1"
170
- "\U000119e3\U00011a00\U00011a3a\U00011a50\U00011a9d\U00011c40\U00011d46\U00011d98\U00011f02\U00011fb0\U00016f50"
171
- "\U00016fe3\U0001b132\U0001b155\U0001d4a2\U0001d4bb\U0001d546\U0001e14e\U0001e94b\U0001ee24\U0001ee27\U0001ee39"
172
- "\U0001ee3b\U0001ee42\U0001ee47\U0001ee49\U0001ee4b\U0001ee54\U0001ee57\U0001ee59\U0001ee5b\U0001ee5d\U0001ee5f"
173
- "\U0001ee64\U0001ee7e"
172
+ "\U000111dc\U00011288\U0001133d\U00011350\U0001138b\U0001138e\U000113b7\U000113d1\U000113d3\U000114c7\U00011644"
173
+ "\U000116b8\U00011909\U0001193f\U00011941\U000119e1\U000119e3\U00011a00\U00011a3a\U00011a50\U00011a9d\U00011c40"
174
+ "\U00011d46\U00011d98\U00011f02\U00011fb0\U00016f50\U00016fe3\U0001b132\U0001b155\U0001d4a2\U0001d4bb\U0001d546"
175
+ "\U0001e14e\U0001e5f0\U0001e94b\U0001ee24\U0001ee27\U0001ee39\U0001ee3b\U0001ee42\U0001ee47\U0001ee49\U0001ee4b"
176
+ "\U0001ee54\U0001ee57\U0001ee59\U0001ee5b\U0001ee5d\U0001ee5f\U0001ee64\U0001ee7e"
174
177
  )
175
178
  unicode_start_ch_range = (
176
179
  "\u0041\u005a\u0061\u007a\u00c0\u00d6\u00d8\u00f6\u00f8\u02c1\u02c6"
@@ -203,7 +206,7 @@ unicode_start_ch_range = (
203
206
  "\u17b3\u1820\u1878\u1880\u18a8\u18b0\u18f5\u1900\u191e\u1950\u196d"
204
207
  "\u1970\u1974\u1980\u19ab\u19b0\u19c9\u1a00\u1a16\u1a20\u1a54\u1b05"
205
208
  "\u1b33\u1b45\u1b4c\u1b83\u1ba0\u1bae\u1baf\u1bba\u1be5\u1c00\u1c23"
206
- "\u1c4d\u1c4f\u1c5a\u1c7d\u1c80\u1c88\u1c90\u1cba\u1cbd\u1cbf\u1ce9"
209
+ "\u1c4d\u1c4f\u1c5a\u1c7d\u1c80\u1c8a\u1c90\u1cba\u1cbd\u1cbf\u1ce9"
207
210
  "\u1cec\u1cee\u1cf3\u1cf5\u1cf6\u1d00\u1dbf\u1e00\u1f15\u1f18\u1f1d"
208
211
  "\u1f20\u1f45\u1f48\u1f4d\u1f50\u1f57\u1f5f\u1f7d\u1f80\u1fb4\u1fb6"
209
212
  "\u1fbc\u1fc2\u1fc4\u1fc6\u1fcc\u1fd0\u1fd3\u1fd6\u1fdb\u1fe0\u1fec"
@@ -215,7 +218,7 @@ unicode_start_ch_range = (
215
218
  "\u3096\u309d\u309f\u30a1\u30fa\u30fc\u30ff\u3105\u312f\u3131\u318e"
216
219
  "\u31a0\u31bf\u31f0\u31ff\u3400\u4dbf\u4e00\ua48c\ua4d0\ua4fd\ua500"
217
220
  "\ua60c\ua610\ua61f\ua62a\ua62b\ua640\ua66e\ua67f\ua69d\ua6a0\ua6ef"
218
- "\ua717\ua71f\ua722\ua788\ua78b\ua7ca\ua7d0\ua7d1\ua7d5\ua7d9\ua7f2"
221
+ "\ua717\ua71f\ua722\ua788\ua78b\ua7cd\ua7d0\ua7d1\ua7d5\ua7dc\ua7f2"
219
222
  "\ua801\ua803\ua805\ua807\ua80a\ua80c\ua822\ua840\ua873\ua882\ua8b3"
220
223
  "\ua8f2\ua8f7\ua8fd\ua8fe\ua90a\ua925\ua930\ua946\ua960\ua97c\ua984"
221
224
  "\ua9b2\ua9e0\ua9e4\ua9e6\ua9ef\ua9fa\ua9fe\uaa00\uaa28\uaa40\uaa42"
@@ -232,42 +235,45 @@ unicode_start_ch_range = (
232
235
  "\U00010350\U00010375\U00010380\U0001039d\U000103a0\U000103c3\U000103c8\U000103cf\U000103d1\U000103d5\U00010400"
233
236
  "\U0001049d\U000104b0\U000104d3\U000104d8\U000104fb\U00010500\U00010527\U00010530\U00010563\U00010570\U0001057a"
234
237
  "\U0001057c\U0001058a\U0001058c\U00010592\U00010594\U00010595\U00010597\U000105a1\U000105a3\U000105b1\U000105b3"
235
- "\U000105b9\U000105bb\U000105bc\U00010600\U00010736\U00010740\U00010755\U00010760\U00010767\U00010780\U00010785"
236
- "\U00010787\U000107b0\U000107b2\U000107ba\U00010800\U00010805\U0001080a\U00010835\U00010837\U00010838\U0001083f"
237
- "\U00010855\U00010860\U00010876\U00010880\U0001089e\U000108e0\U000108f2\U000108f4\U000108f5\U00010900\U00010915"
238
- "\U00010920\U00010939\U00010980\U000109b7\U000109be\U000109bf\U00010a10\U00010a13\U00010a15\U00010a17\U00010a19"
239
- "\U00010a35\U00010a60\U00010a7c\U00010a80\U00010a9c\U00010ac0\U00010ac7\U00010ac9\U00010ae4\U00010b00\U00010b35"
240
- "\U00010b40\U00010b55\U00010b60\U00010b72\U00010b80\U00010b91\U00010c00\U00010c48\U00010c80\U00010cb2\U00010cc0"
241
- "\U00010cf2\U00010d00\U00010d23\U00010e80\U00010ea9\U00010eb0\U00010eb1\U00010f00\U00010f1c\U00010f30\U00010f45"
242
- "\U00010f70\U00010f81\U00010fb0\U00010fc4\U00010fe0\U00010ff6\U00011003\U00011037\U00011071\U00011072\U00011083"
243
- "\U000110af\U000110d0\U000110e8\U00011103\U00011126\U00011150\U00011172\U00011183\U000111b2\U000111c1\U000111c4"
244
- "\U00011200\U00011211\U00011213\U0001122b\U0001123f\U00011240\U00011280\U00011286\U0001128a\U0001128d\U0001128f"
245
- "\U0001129d\U0001129f\U000112a8\U000112b0\U000112de\U00011305\U0001130c\U0001130f\U00011310\U00011313\U00011328"
246
- "\U0001132a\U00011330\U00011332\U00011333\U00011335\U00011339\U0001135d\U00011361\U00011400\U00011434\U00011447"
247
- "\U0001144a\U0001145f\U00011461\U00011480\U000114af\U000114c4\U000114c5\U00011580\U000115ae\U000115d8\U000115db"
248
- "\U00011600\U0001162f\U00011680\U000116aa\U00011700\U0001171a\U00011740\U00011746\U00011800\U0001182b\U000118a0"
249
- "\U000118df\U000118ff\U00011906\U0001190c\U00011913\U00011915\U00011916\U00011918\U0001192f\U000119a0\U000119a7"
250
- "\U000119aa\U000119d0\U00011a0b\U00011a32\U00011a5c\U00011a89\U00011ab0\U00011af8\U00011c00\U00011c08\U00011c0a"
251
- "\U00011c2e\U00011c72\U00011c8f\U00011d00\U00011d06\U00011d08\U00011d09\U00011d0b\U00011d30\U00011d60\U00011d65"
252
- "\U00011d67\U00011d68\U00011d6a\U00011d89\U00011ee0\U00011ef2\U00011f04\U00011f10\U00011f12\U00011f33\U00012000"
253
- "\U00012399\U00012400\U0001246e\U00012480\U00012543\U00012f90\U00012ff0\U00013000\U0001342f\U00013441\U00013446"
254
- "\U00014400\U00014646\U00016800\U00016a38\U00016a40\U00016a5e\U00016a70\U00016abe\U00016ad0\U00016aed\U00016b00"
255
- "\U00016b2f\U00016b40\U00016b43\U00016b63\U00016b77\U00016b7d\U00016b8f\U00016e40\U00016e7f\U00016f00\U00016f4a"
256
- "\U00016f93\U00016f9f\U00016fe0\U00016fe1\U00017000\U000187f7\U00018800\U00018cd5\U00018d00\U00018d08\U0001aff0"
257
- "\U0001aff3\U0001aff5\U0001affb\U0001affd\U0001affe\U0001b000\U0001b122\U0001b150\U0001b152\U0001b164\U0001b167"
258
- "\U0001b170\U0001b2fb\U0001bc00\U0001bc6a\U0001bc70\U0001bc7c\U0001bc80\U0001bc88\U0001bc90\U0001bc99\U0001d400"
259
- "\U0001d454\U0001d456\U0001d49c\U0001d49e\U0001d49f\U0001d4a5\U0001d4a6\U0001d4a9\U0001d4ac\U0001d4ae\U0001d4b9"
260
- "\U0001d4bd\U0001d4c3\U0001d4c5\U0001d505\U0001d507\U0001d50a\U0001d50d\U0001d514\U0001d516\U0001d51c\U0001d51e"
261
- "\U0001d539\U0001d53b\U0001d53e\U0001d540\U0001d544\U0001d54a\U0001d550\U0001d552\U0001d6a5\U0001d6a8\U0001d6c0"
262
- "\U0001d6c2\U0001d6da\U0001d6dc\U0001d6fa\U0001d6fc\U0001d714\U0001d716\U0001d734\U0001d736\U0001d74e\U0001d750"
263
- "\U0001d76e\U0001d770\U0001d788\U0001d78a\U0001d7a8\U0001d7aa\U0001d7c2\U0001d7c4\U0001d7cb\U0001df00\U0001df1e"
264
- "\U0001df25\U0001df2a\U0001e030\U0001e06d\U0001e100\U0001e12c\U0001e137\U0001e13d\U0001e290\U0001e2ad\U0001e2c0"
265
- "\U0001e2eb\U0001e4d0\U0001e4eb\U0001e7e0\U0001e7e6\U0001e7e8\U0001e7eb\U0001e7ed\U0001e7ee\U0001e7f0\U0001e7fe"
238
+ "\U000105b9\U000105bb\U000105bc\U000105c0\U000105f3\U00010600\U00010736\U00010740\U00010755\U00010760\U00010767"
239
+ "\U00010780\U00010785\U00010787\U000107b0\U000107b2\U000107ba\U00010800\U00010805\U0001080a\U00010835\U00010837"
240
+ "\U00010838\U0001083f\U00010855\U00010860\U00010876\U00010880\U0001089e\U000108e0\U000108f2\U000108f4\U000108f5"
241
+ "\U00010900\U00010915\U00010920\U00010939\U00010980\U000109b7\U000109be\U000109bf\U00010a10\U00010a13\U00010a15"
242
+ "\U00010a17\U00010a19\U00010a35\U00010a60\U00010a7c\U00010a80\U00010a9c\U00010ac0\U00010ac7\U00010ac9\U00010ae4"
243
+ "\U00010b00\U00010b35\U00010b40\U00010b55\U00010b60\U00010b72\U00010b80\U00010b91\U00010c00\U00010c48\U00010c80"
244
+ "\U00010cb2\U00010cc0\U00010cf2\U00010d00\U00010d23\U00010d4a\U00010d65\U00010d6f\U00010d85\U00010e80\U00010ea9"
245
+ "\U00010eb0\U00010eb1\U00010ec2\U00010ec4\U00010f00\U00010f1c\U00010f30\U00010f45\U00010f70\U00010f81\U00010fb0"
246
+ "\U00010fc4\U00010fe0\U00010ff6\U00011003\U00011037\U00011071\U00011072\U00011083\U000110af\U000110d0\U000110e8"
247
+ "\U00011103\U00011126\U00011150\U00011172\U00011183\U000111b2\U000111c1\U000111c4\U00011200\U00011211\U00011213"
248
+ "\U0001122b\U0001123f\U00011240\U00011280\U00011286\U0001128a\U0001128d\U0001128f\U0001129d\U0001129f\U000112a8"
249
+ "\U000112b0\U000112de\U00011305\U0001130c\U0001130f\U00011310\U00011313\U00011328\U0001132a\U00011330\U00011332"
250
+ "\U00011333\U00011335\U00011339\U0001135d\U00011361\U00011380\U00011389\U00011390\U000113b5\U00011400\U00011434"
251
+ "\U00011447\U0001144a\U0001145f\U00011461\U00011480\U000114af\U000114c4\U000114c5\U00011580\U000115ae\U000115d8"
252
+ "\U000115db\U00011600\U0001162f\U00011680\U000116aa\U00011700\U0001171a\U00011740\U00011746\U00011800\U0001182b"
253
+ "\U000118a0\U000118df\U000118ff\U00011906\U0001190c\U00011913\U00011915\U00011916\U00011918\U0001192f\U000119a0"
254
+ "\U000119a7\U000119aa\U000119d0\U00011a0b\U00011a32\U00011a5c\U00011a89\U00011ab0\U00011af8\U00011bc0\U00011be0"
255
+ "\U00011c00\U00011c08\U00011c0a\U00011c2e\U00011c72\U00011c8f\U00011d00\U00011d06\U00011d08\U00011d09\U00011d0b"
256
+ "\U00011d30\U00011d60\U00011d65\U00011d67\U00011d68\U00011d6a\U00011d89\U00011ee0\U00011ef2\U00011f04\U00011f10"
257
+ "\U00011f12\U00011f33\U00012000\U00012399\U00012400\U0001246e\U00012480\U00012543\U00012f90\U00012ff0\U00013000"
258
+ "\U0001342f\U00013441\U00013446\U00013460\U000143fa\U00014400\U00014646\U00016100\U0001611d\U00016800\U00016a38"
259
+ "\U00016a40\U00016a5e\U00016a70\U00016abe\U00016ad0\U00016aed\U00016b00\U00016b2f\U00016b40\U00016b43\U00016b63"
260
+ "\U00016b77\U00016b7d\U00016b8f\U00016d40\U00016d6c\U00016e40\U00016e7f\U00016f00\U00016f4a\U00016f93\U00016f9f"
261
+ "\U00016fe0\U00016fe1\U00017000\U000187f7\U00018800\U00018cd5\U00018cff\U00018d08\U0001aff0\U0001aff3\U0001aff5"
262
+ "\U0001affb\U0001affd\U0001affe\U0001b000\U0001b122\U0001b150\U0001b152\U0001b164\U0001b167\U0001b170\U0001b2fb"
263
+ "\U0001bc00\U0001bc6a\U0001bc70\U0001bc7c\U0001bc80\U0001bc88\U0001bc90\U0001bc99\U0001d400\U0001d454\U0001d456"
264
+ "\U0001d49c\U0001d49e\U0001d49f\U0001d4a5\U0001d4a6\U0001d4a9\U0001d4ac\U0001d4ae\U0001d4b9\U0001d4bd\U0001d4c3"
265
+ "\U0001d4c5\U0001d505\U0001d507\U0001d50a\U0001d50d\U0001d514\U0001d516\U0001d51c\U0001d51e\U0001d539\U0001d53b"
266
+ "\U0001d53e\U0001d540\U0001d544\U0001d54a\U0001d550\U0001d552\U0001d6a5\U0001d6a8\U0001d6c0\U0001d6c2\U0001d6da"
267
+ "\U0001d6dc\U0001d6fa\U0001d6fc\U0001d714\U0001d716\U0001d734\U0001d736\U0001d74e\U0001d750\U0001d76e\U0001d770"
268
+ "\U0001d788\U0001d78a\U0001d7a8\U0001d7aa\U0001d7c2\U0001d7c4\U0001d7cb\U0001df00\U0001df1e\U0001df25\U0001df2a"
269
+ "\U0001e030\U0001e06d\U0001e100\U0001e12c\U0001e137\U0001e13d\U0001e290\U0001e2ad\U0001e2c0\U0001e2eb\U0001e4d0"
270
+ "\U0001e4eb\U0001e5d0\U0001e5ed\U0001e7e0\U0001e7e6\U0001e7e8\U0001e7eb\U0001e7ed\U0001e7ee\U0001e7f0\U0001e7fe"
266
271
  "\U0001e800\U0001e8c4\U0001e900\U0001e943\U0001ee00\U0001ee03\U0001ee05\U0001ee1f\U0001ee21\U0001ee22\U0001ee29"
267
272
  "\U0001ee32\U0001ee34\U0001ee37\U0001ee4d\U0001ee4f\U0001ee51\U0001ee52\U0001ee61\U0001ee62\U0001ee67\U0001ee6a"
268
273
  "\U0001ee6c\U0001ee72\U0001ee74\U0001ee77\U0001ee79\U0001ee7c\U0001ee80\U0001ee89\U0001ee8b\U0001ee9b\U0001eea1"
269
274
  "\U0001eea3\U0001eea5\U0001eea9\U0001eeab\U0001eebb\U00020000\U0002a6df\U0002a700\U0002b739\U0002b740\U0002b81d"
270
- "\U0002b820\U0002cea1\U0002ceb0\U0002ebe0\U0002ebf0\U0002ee5d\U0002f800\U0002fa1d\U00030000\U0003134a"
275
+ "\U0002b820\U0002cea1\U0002ceb0\U0002ebe0\U0002ebf0\U0002ee5d\U0002f800\U0002fa1d\U00030000\U0003134a\U00031350"
276
+ "\U000323af"
271
277
  )
272
278
  unicode_continuation_ch_any = (
273
279
  "\u00b7\u0387\u05bf\u05c7\u0670\u0711\u07fd\u09bc\u09d7\u09fe\u0a3c"
@@ -275,15 +281,15 @@ unicode_continuation_ch_any = (
275
281
  "\u0dd6\u0e31\u0eb1\u0f35\u0f37\u0f39\u0fc6\u17dd\u18a9\u1ced\u1cf4"
276
282
  "\u2054\u20e1\u2d7f\u30fb\ua66f\ua802\ua806\ua80b\ua82c\ua9e5\uaa43"
277
283
  "\uaab0\uaac1\ufb1e\uff3f\uff65\U000101fd\U000102e0\U00010a3f\U000110c2\U00011173\U0001123e"
278
- "\U00011241\U00011357\U0001145e\U00011940\U000119e4\U00011a47\U00011d3a\U00011d47\U00011f03\U00013440\U00016f4f"
279
- "\U00016fe4\U0001da75\U0001da84\U0001e08f\U0001e2ae"
284
+ "\U00011241\U00011357\U000113c2\U000113c5\U000113d2\U0001145e\U00011940\U000119e4\U00011a47\U00011d3a\U00011d47"
285
+ "\U00011f03\U00013440\U00016f4f\U00016fe4\U0001da75\U0001da84\U0001e08f\U0001e2ae"
280
286
  )
281
287
  unicode_continuation_ch_range = (
282
288
  "\u0030\u0039\u0300\u036f\u0483\u0487\u0591\u05bd\u05c1\u05c2\u05c4"
283
289
  "\u05c5\u0610\u061a\u064b\u0669\u06d6\u06dc\u06df\u06e4\u06e7\u06e8"
284
290
  "\u06ea\u06ed\u06f0\u06f9\u0730\u074a\u07a6\u07b0\u07c0\u07c9\u07eb"
285
291
  "\u07f3\u0816\u0819\u081b\u0823\u0825\u0827\u0829\u082d\u0859\u085b"
286
- "\u0898\u089f\u08ca\u08e1\u08e3\u0903\u093a\u093c\u093e\u094f\u0951"
292
+ "\u0897\u089f\u08ca\u08e1\u08e3\u0903\u093a\u093c\u093e\u094f\u0951"
287
293
  "\u0957\u0962\u0963\u0966\u096f\u0981\u0983\u09be\u09c4\u09c7\u09c8"
288
294
  "\u09cb\u09cd\u09e2\u09e3\u09e6\u09ef\u0a01\u0a03\u0a3e\u0a42\u0a47"
289
295
  "\u0a48\u0a4b\u0a4d\u0a66\u0a71\u0a81\u0a83\u0abe\u0ac5\u0ac7\u0ac9"
@@ -314,27 +320,29 @@ unicode_continuation_ch_range = (
314
320
  "\uabe3\uabea\uabec\uabed\uabf0\uabf9\ufe00\ufe0f\ufe20\ufe2f\ufe33"
315
321
  "\ufe34\ufe4d\ufe4f\uff10\uff19\uff9e\uff9f\U00010376\U0001037a\U000104a0\U000104a9"
316
322
  "\U00010a01\U00010a03\U00010a05\U00010a06\U00010a0c\U00010a0f\U00010a38\U00010a3a\U00010ae5\U00010ae6\U00010d24"
317
- "\U00010d27\U00010d30\U00010d39\U00010eab\U00010eac\U00010efd\U00010eff\U00010f46\U00010f50\U00010f82\U00010f85"
318
- "\U00011000\U00011002\U00011038\U00011046\U00011066\U00011070\U00011073\U00011074\U0001107f\U00011082\U000110b0"
319
- "\U000110ba\U000110f0\U000110f9\U00011100\U00011102\U00011127\U00011134\U00011136\U0001113f\U00011145\U00011146"
320
- "\U00011180\U00011182\U000111b3\U000111c0\U000111c9\U000111cc\U000111ce\U000111d9\U0001122c\U00011237\U000112df"
321
- "\U000112ea\U000112f0\U000112f9\U00011300\U00011303\U0001133b\U0001133c\U0001133e\U00011344\U00011347\U00011348"
322
- "\U0001134b\U0001134d\U00011362\U00011363\U00011366\U0001136c\U00011370\U00011374\U00011435\U00011446\U00011450"
323
- "\U00011459\U000114b0\U000114c3\U000114d0\U000114d9\U000115af\U000115b5\U000115b8\U000115c0\U000115dc\U000115dd"
324
- "\U00011630\U00011640\U00011650\U00011659\U000116ab\U000116b7\U000116c0\U000116c9\U0001171d\U0001172b\U00011730"
325
- "\U00011739\U0001182c\U0001183a\U000118e0\U000118e9\U00011930\U00011935\U00011937\U00011938\U0001193b\U0001193e"
326
- "\U00011942\U00011943\U00011950\U00011959\U000119d1\U000119d7\U000119da\U000119e0\U00011a01\U00011a0a\U00011a33"
327
- "\U00011a39\U00011a3b\U00011a3e\U00011a51\U00011a5b\U00011a8a\U00011a99\U00011c2f\U00011c36\U00011c38\U00011c3f"
328
- "\U00011c50\U00011c59\U00011c92\U00011ca7\U00011ca9\U00011cb6\U00011d31\U00011d36\U00011d3c\U00011d3d\U00011d3f"
329
- "\U00011d45\U00011d50\U00011d59\U00011d8a\U00011d8e\U00011d90\U00011d91\U00011d93\U00011d97\U00011da0\U00011da9"
330
- "\U00011ef3\U00011ef6\U00011f00\U00011f01\U00011f34\U00011f3a\U00011f3e\U00011f42\U00011f50\U00011f59\U00013447"
331
- "\U00013455\U00016a60\U00016a69\U00016ac0\U00016ac9\U00016af0\U00016af4\U00016b30\U00016b36\U00016b50\U00016b59"
332
- "\U00016f51\U00016f87\U00016f8f\U00016f92\U00016ff0\U00016ff1\U0001bc9d\U0001bc9e\U0001cf00\U0001cf2d\U0001cf30"
323
+ "\U00010d27\U00010d30\U00010d39\U00010d40\U00010d49\U00010d69\U00010d6d\U00010eab\U00010eac\U00010efc\U00010eff"
324
+ "\U00010f46\U00010f50\U00010f82\U00010f85\U00011000\U00011002\U00011038\U00011046\U00011066\U00011070\U00011073"
325
+ "\U00011074\U0001107f\U00011082\U000110b0\U000110ba\U000110f0\U000110f9\U00011100\U00011102\U00011127\U00011134"
326
+ "\U00011136\U0001113f\U00011145\U00011146\U00011180\U00011182\U000111b3\U000111c0\U000111c9\U000111cc\U000111ce"
327
+ "\U000111d9\U0001122c\U00011237\U000112df\U000112ea\U000112f0\U000112f9\U00011300\U00011303\U0001133b\U0001133c"
328
+ "\U0001133e\U00011344\U00011347\U00011348\U0001134b\U0001134d\U00011362\U00011363\U00011366\U0001136c\U00011370"
329
+ "\U00011374\U000113b8\U000113c0\U000113c7\U000113ca\U000113cc\U000113d0\U000113e1\U000113e2\U00011435\U00011446"
330
+ "\U00011450\U00011459\U000114b0\U000114c3\U000114d0\U000114d9\U000115af\U000115b5\U000115b8\U000115c0\U000115dc"
331
+ "\U000115dd\U00011630\U00011640\U00011650\U00011659\U000116ab\U000116b7\U000116c0\U000116c9\U000116d0\U000116e3"
332
+ "\U0001171d\U0001172b\U00011730\U00011739\U0001182c\U0001183a\U000118e0\U000118e9\U00011930\U00011935\U00011937"
333
+ "\U00011938\U0001193b\U0001193e\U00011942\U00011943\U00011950\U00011959\U000119d1\U000119d7\U000119da\U000119e0"
334
+ "\U00011a01\U00011a0a\U00011a33\U00011a39\U00011a3b\U00011a3e\U00011a51\U00011a5b\U00011a8a\U00011a99\U00011bf0"
335
+ "\U00011bf9\U00011c2f\U00011c36\U00011c38\U00011c3f\U00011c50\U00011c59\U00011c92\U00011ca7\U00011ca9\U00011cb6"
336
+ "\U00011d31\U00011d36\U00011d3c\U00011d3d\U00011d3f\U00011d45\U00011d50\U00011d59\U00011d8a\U00011d8e\U00011d90"
337
+ "\U00011d91\U00011d93\U00011d97\U00011da0\U00011da9\U00011ef3\U00011ef6\U00011f00\U00011f01\U00011f34\U00011f3a"
338
+ "\U00011f3e\U00011f42\U00011f50\U00011f5a\U00013447\U00013455\U0001611e\U00016139\U00016a60\U00016a69\U00016ac0"
339
+ "\U00016ac9\U00016af0\U00016af4\U00016b30\U00016b36\U00016b50\U00016b59\U00016d70\U00016d79\U00016f51\U00016f87"
340
+ "\U00016f8f\U00016f92\U00016ff0\U00016ff1\U0001bc9d\U0001bc9e\U0001ccf0\U0001ccf9\U0001cf00\U0001cf2d\U0001cf30"
333
341
  "\U0001cf46\U0001d165\U0001d169\U0001d16d\U0001d172\U0001d17b\U0001d182\U0001d185\U0001d18b\U0001d1aa\U0001d1ad"
334
342
  "\U0001d242\U0001d244\U0001d7ce\U0001d7ff\U0001da00\U0001da36\U0001da3b\U0001da6c\U0001da9b\U0001da9f\U0001daa1"
335
343
  "\U0001daaf\U0001e000\U0001e006\U0001e008\U0001e018\U0001e01b\U0001e021\U0001e023\U0001e024\U0001e026\U0001e02a"
336
- "\U0001e130\U0001e136\U0001e140\U0001e149\U0001e2ec\U0001e2f9\U0001e4ec\U0001e4f9\U0001e8d0\U0001e8d6\U0001e944"
337
- "\U0001e94a\U0001e950\U0001e959\U0001fbf0\U0001fbf9"
344
+ "\U0001e130\U0001e136\U0001e140\U0001e149\U0001e2ec\U0001e2f9\U0001e4ec\U0001e4f9\U0001e5ee\U0001e5ef\U0001e5f1"
345
+ "\U0001e5fa\U0001e8d0\U0001e8d6\U0001e944\U0001e94a\U0001e950\U0001e959\U0001fbf0\U0001fbf9\U000e0100\U000e01ef"
338
346
  )
339
347
 
340
348
  # END GENERATED CODE
@@ -402,7 +402,8 @@ def get_is_contig_func_name(contig_type, ndim):
402
402
  def get_is_contig_utility(contig_type, ndim):
403
403
  assert contig_type in ('C', 'F')
404
404
  C = dict(template_context, ndim=ndim, contig_type=contig_type)
405
- utility = load_memview_c_utility("MemviewSliceCheckContig", C, requires=[is_contig_utility])
405
+ utility = load_memview_c_utility("MemviewSliceCheckContig", context=C,
406
+ requires=[is_contig_utility])
406
407
  return utility
407
408
 
408
409
 
@@ -798,11 +799,14 @@ def load_memview_cy_utility(util_code_name, context=None, **kwargs):
798
799
  return CythonUtilityCode.load(util_code_name, "MemoryView.pyx",
799
800
  context=context, **kwargs)
800
801
 
801
- def load_memview_c_utility(util_code_name, context=None, **kwargs):
802
+ def load_memview_c_utility(
803
+ util_code_name, util_code_filename="MemoryView_C.c",
804
+ *,
805
+ context=None, **kwargs):
802
806
  if context is None:
803
- return UtilityCode.load(util_code_name, "MemoryView_C.c", **kwargs)
807
+ return UtilityCode.load(util_code_name, util_code_filename, **kwargs)
804
808
  else:
805
- return TempitaUtilityCode.load(util_code_name, "MemoryView_C.c",
809
+ return TempitaUtilityCode.load(util_code_name, util_code_filename,
806
810
  context=context, **kwargs)
807
811
 
808
812
  def use_cython_array_utility_code(env):
@@ -827,7 +831,8 @@ def _get_memviewslice_declare_code():
827
831
  requires=[])
828
832
  return memviewslice_declare_code
829
833
 
830
- atomic_utility = load_memview_c_utility("Atomics", template_context)
834
+ atomic_utility = load_memview_c_utility(
835
+ "Atomics", util_code_filename="Synchronization.c", context=template_context)
831
836
 
832
837
  def _get_memviewslice_init_code(memviewslice_declare_code):
833
838
  memviewslice_init_code = load_memview_c_utility(
@@ -854,13 +859,13 @@ def get_typeinfo_to_format_code(shared_utility_qualified_name):
854
859
  else:
855
860
  return _get_typeinfo_to_format_code()
856
861
 
857
- is_contig_utility = load_memview_c_utility("MemviewSliceIsContig", template_context)
858
- overlapping_utility = load_memview_c_utility("OverlappingSlices", template_context)
862
+ is_contig_utility = load_memview_c_utility("MemviewSliceIsContig", context=template_context)
863
+ overlapping_utility = load_memview_c_utility("OverlappingSlices", context=template_context)
859
864
 
860
865
  def _get_copy_contents_new_utility():
861
866
  copy_contents_new_utility = load_memview_c_utility(
862
867
  "MemviewSliceCopyTemplate",
863
- template_context,
868
+ context=template_context,
864
869
  requires=[], # require cython_array_utility_code
865
870
  )
866
871
  return copy_contents_new_utility
@@ -211,7 +211,7 @@ class ModuleNode(Nodes.Node, Nodes.BlockNode):
211
211
  # They have the potential to cause ABI issues.
212
212
  self.scope.use_utility_code(
213
213
  UtilityCode.load_cached(
214
- "CythonPyMutexPublicCheck", "Lock.c"
214
+ "CythonPyMutexPublicCheck", "Synchronization.c"
215
215
  ))
216
216
 
217
217
  def prepare_utility_code(self):
@@ -9029,7 +9029,7 @@ class CriticalSectionStatNode(TryFinallyStatNode):
9029
9029
 
9030
9030
  def generate_execution_code(self, code):
9031
9031
  code.globalstate.use_utility_code(
9032
- UtilityCode.load_cached("CriticalSections", "ModuleSetupCode.c"))
9032
+ UtilityCode.load_cached("CriticalSections", "Synchronization.c"))
9033
9033
 
9034
9034
  code.mark_pos(self.pos)
9035
9035
  code.begin_block()
@@ -9149,14 +9149,6 @@ class CythonLockStatNode(TryFinallyStatNode):
9149
9149
  body = self.body
9150
9150
  if isinstance(body, StatListNode) and len(body.stats) >= 1:
9151
9151
  body = body.stats[0]
9152
- if isinstance(body, GILStatNode) and body.state == "gil":
9153
- # Only warn about the initial and most obvious mistake (directly nesting the loops)
9154
- type_name = self.arg.type.empty_declaration_code(pyrex=True).strip()
9155
- warning(
9156
- body.pos,
9157
- f"Acquiring the GIL inside a {type_name} lock. "
9158
- "To avoid potential deadlocks acquire the GIL first.",
9159
- 2)
9160
9152
  return super().analyse_expressions(env)
9161
9153
 
9162
9154
  def generate_execution_code(self, code):
@@ -9841,7 +9833,7 @@ class ParallelStatNode(StatNode, ParallelNode):
9841
9833
  c.globalstate.use_utility_code(
9842
9834
  UtilityCode.load_cached(
9843
9835
  "SharedInFreeThreading",
9844
- "ModuleSetupCode.c"))
9836
+ "Synchronization.c"))
9845
9837
  c.put(f" __Pyx_shared_in_cpython_freethreading({Naming.parallel_freethreading_mutex})")
9846
9838
  c.put(" private(%s, %s, %s)" % self.pos_info)
9847
9839
 
@@ -71,6 +71,7 @@ cdef class GilCheck(VisitorTransform):
71
71
  cdef list env_stack
72
72
  cdef int nogil_state
73
73
  cdef int nogil_state_at_current_gilstatnode
74
+ cdef object in_lock_block
74
75
 
75
76
  cdef class TransformBuiltinMethods(EnvTransform):
76
77
  cdef dict def_node_body_insertions
@@ -3676,6 +3676,7 @@ class GilCheck(VisitorTransform):
3676
3676
  def __call__(self, root):
3677
3677
  self.env_stack = [root.scope]
3678
3678
  self.nogil_state = Nodes.NoGilState.HasGil
3679
+ self.in_lock_block = None
3679
3680
 
3680
3681
  self.nogil_state_at_current_gilstatnode = Nodes.NoGilState.HasGil
3681
3682
  return super().__call__(root)
@@ -3695,6 +3696,7 @@ class GilCheck(VisitorTransform):
3695
3696
  def visit_FuncDefNode(self, node):
3696
3697
  self.env_stack.append(node.local_scope)
3697
3698
  inner_nogil = node.local_scope.nogil
3699
+ in_lock_block, self.in_lock_block = self.in_lock_block, None
3698
3700
 
3699
3701
  nogil_state = self.nogil_state
3700
3702
  if inner_nogil:
@@ -3708,6 +3710,7 @@ class GilCheck(VisitorTransform):
3708
3710
  # FuncDefNodes can be nested, because a cpdef function contains a def function
3709
3711
  # inside it. Therefore restore to previous state
3710
3712
  self.nogil_state = nogil_state
3713
+ self.in_lock_block = in_lock_block
3711
3714
 
3712
3715
  self.env_stack.pop()
3713
3716
  return node
@@ -3725,6 +3728,14 @@ class GilCheck(VisitorTransform):
3725
3728
  was_nogil = self.nogil_state
3726
3729
  is_nogil = (node.state == 'nogil')
3727
3730
 
3731
+ if not is_nogil and self.in_lock_block:
3732
+ type_name = self.in_lock_block.arg.type.empty_declaration_code(pyrex=True).strip()
3733
+ warning(
3734
+ node.pos,
3735
+ f"Acquiring the GIL inside a {type_name} lock. "
3736
+ "To avoid potential deadlocks acquire the GIL first.",
3737
+ 2)
3738
+
3728
3739
  if was_nogil == is_nogil and not self.nogil_state == Nodes.NoGilState.NoGilScope:
3729
3740
  if not was_nogil:
3730
3741
  error(node.pos, "Trying to acquire the GIL while it is "
@@ -3804,7 +3815,10 @@ class GilCheck(VisitorTransform):
3804
3815
 
3805
3816
  def visit_CythonLockStatNode(self, node):
3806
3817
  # skip normal "try/finally node" handling
3807
- return self.visit_Node(node)
3818
+ in_lock_block, self.in_lock_block = self.in_lock_block, node
3819
+ result = self.visit_Node(node)
3820
+ self.in_lock_block = in_lock_block
3821
+ return result
3808
3822
 
3809
3823
  def visit_GILExitNode(self, node):
3810
3824
  if self.nogil_state_at_current_gilstatnode == Nodes.NoGilState.NoGilScope: