Cython 3.0.6__tar.gz → 3.0.8__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 (2423) hide show
  1. Cython-3.0.8/.gitrev +1 -0
  2. {Cython-3.0.6 → Cython-3.0.8}/CHANGES.rst +67 -1
  3. {Cython-3.0.6 → Cython-3.0.8}/Cython/Compiler/Errors.py +1 -1
  4. {Cython-3.0.6 → Cython-3.0.8}/Cython/Compiler/ExprNodes.py +3 -1
  5. {Cython-3.0.6 → Cython-3.0.8}/Cython/Compiler/FusedNode.py +8 -7
  6. {Cython-3.0.6 → Cython-3.0.8}/Cython/Compiler/ModuleNode.py +1 -1
  7. {Cython-3.0.6 → Cython-3.0.8}/Cython/Compiler/Naming.py +1 -0
  8. {Cython-3.0.6 → Cython-3.0.8}/Cython/Compiler/Nodes.py +4 -0
  9. {Cython-3.0.6 → Cython-3.0.8}/Cython/Compiler/ParseTreeTransforms.pxd +2 -0
  10. {Cython-3.0.6 → Cython-3.0.8}/Cython/Compiler/ParseTreeTransforms.py +16 -5
  11. {Cython-3.0.6 → Cython-3.0.8}/Cython/Compiler/PyrexTypes.py +27 -7
  12. {Cython-3.0.6 → Cython-3.0.8}/Cython/Includes/cpython/unicode.pxd +7 -3
  13. {Cython-3.0.6 → Cython-3.0.8}/Cython/Shadow.py +14 -3
  14. Cython-3.0.8/Cython/Tests/TestShadow.py +79 -0
  15. {Cython-3.0.6 → Cython-3.0.8}/Cython/Utility/CythonFunction.c +1 -1
  16. {Cython-3.0.6 → Cython-3.0.8}/Cython/Utility/Dataclasses.c +5 -5
  17. {Cython-3.0.6 → Cython-3.0.8}/Cython/Utility/Exceptions.c +1 -1
  18. {Cython-3.0.6 → Cython-3.0.8}/Cython/Utility/FunctionArguments.c +10 -10
  19. {Cython-3.0.6 → Cython-3.0.8}/Cython/Utility/ModuleSetupCode.c +5 -4
  20. {Cython-3.0.6 → Cython-3.0.8}/Cython/Utility/ObjectHandling.c +4 -2
  21. {Cython-3.0.6 → Cython-3.0.8}/Cython/Utility/TypeConversion.c +1 -1
  22. {Cython-3.0.6 → Cython-3.0.8}/Cython/Utility/UFuncs_C.c +1 -1
  23. {Cython-3.0.6 → Cython-3.0.8}/PKG-INFO +1 -1
  24. {Cython-3.0.6 → Cython-3.0.8}/docs/src/tutorial/pure.rst +5 -0
  25. Cython-3.0.8/tests/run/async_def.pyx +106 -0
  26. {Cython-3.0.6 → Cython-3.0.8}/tests/run/cpdef_enums_import.srctree +18 -1
  27. Cython-3.0.8/tests/run/fused_cpdef.pxd +4 -0
  28. {Cython-3.0.6 → Cython-3.0.8}/tests/run/fused_cpdef.pyx +13 -0
  29. {Cython-3.0.6 → Cython-3.0.8}/tests/run/fused_types.pyx +28 -0
  30. {Cython-3.0.6 → Cython-3.0.8}/tests/run/nogil.pyx +8 -8
  31. Cython-3.0.6/.gitrev +0 -1
  32. Cython-3.0.6/tests/run/async_def.pyx +0 -62
  33. {Cython-3.0.6 → Cython-3.0.8}/COPYING.txt +0 -0
  34. {Cython-3.0.6 → Cython-3.0.8}/Cython/Build/BuildExecutable.py +0 -0
  35. {Cython-3.0.6 → Cython-3.0.8}/Cython/Build/Cythonize.py +0 -0
  36. {Cython-3.0.6 → Cython-3.0.8}/Cython/Build/Dependencies.py +0 -0
  37. {Cython-3.0.6 → Cython-3.0.8}/Cython/Build/Distutils.py +0 -0
  38. {Cython-3.0.6 → Cython-3.0.8}/Cython/Build/Inline.py +0 -0
  39. {Cython-3.0.6 → Cython-3.0.8}/Cython/Build/IpythonMagic.py +0 -0
  40. {Cython-3.0.6 → Cython-3.0.8}/Cython/Build/Tests/TestCyCache.py +0 -0
  41. {Cython-3.0.6 → Cython-3.0.8}/Cython/Build/Tests/TestCythonizeArgsParser.py +0 -0
  42. {Cython-3.0.6 → Cython-3.0.8}/Cython/Build/Tests/TestDependencies.py +0 -0
  43. {Cython-3.0.6 → Cython-3.0.8}/Cython/Build/Tests/TestInline.py +0 -0
  44. {Cython-3.0.6 → Cython-3.0.8}/Cython/Build/Tests/TestIpythonMagic.py +0 -0
  45. {Cython-3.0.6 → Cython-3.0.8}/Cython/Build/Tests/TestRecythonize.py +0 -0
  46. {Cython-3.0.6 → Cython-3.0.8}/Cython/Build/Tests/TestStripLiterals.py +0 -0
  47. {Cython-3.0.6 → Cython-3.0.8}/Cython/Build/Tests/__init__.py +0 -0
  48. {Cython-3.0.6 → Cython-3.0.8}/Cython/Build/__init__.py +0 -0
  49. {Cython-3.0.6 → Cython-3.0.8}/Cython/CodeWriter.py +0 -0
  50. {Cython-3.0.6 → Cython-3.0.8}/Cython/Compiler/AnalysedTreeTransforms.py +0 -0
  51. {Cython-3.0.6 → Cython-3.0.8}/Cython/Compiler/Annotate.py +0 -0
  52. {Cython-3.0.6 → Cython-3.0.8}/Cython/Compiler/AutoDocTransforms.py +0 -0
  53. {Cython-3.0.6 → Cython-3.0.8}/Cython/Compiler/Buffer.py +0 -0
  54. {Cython-3.0.6 → Cython-3.0.8}/Cython/Compiler/Builtin.py +0 -0
  55. {Cython-3.0.6 → Cython-3.0.8}/Cython/Compiler/CmdLine.py +0 -0
  56. {Cython-3.0.6 → Cython-3.0.8}/Cython/Compiler/Code.pxd +0 -0
  57. {Cython-3.0.6 → Cython-3.0.8}/Cython/Compiler/Code.py +0 -0
  58. {Cython-3.0.6 → Cython-3.0.8}/Cython/Compiler/CodeGeneration.py +0 -0
  59. {Cython-3.0.6 → Cython-3.0.8}/Cython/Compiler/CythonScope.py +0 -0
  60. {Cython-3.0.6 → Cython-3.0.8}/Cython/Compiler/Dataclass.py +0 -0
  61. {Cython-3.0.6 → Cython-3.0.8}/Cython/Compiler/DebugFlags.py +0 -0
  62. {Cython-3.0.6 → Cython-3.0.8}/Cython/Compiler/FlowControl.pxd +0 -0
  63. {Cython-3.0.6 → Cython-3.0.8}/Cython/Compiler/FlowControl.py +0 -0
  64. {Cython-3.0.6 → Cython-3.0.8}/Cython/Compiler/Future.py +0 -0
  65. {Cython-3.0.6 → Cython-3.0.8}/Cython/Compiler/Interpreter.py +0 -0
  66. {Cython-3.0.6 → Cython-3.0.8}/Cython/Compiler/Lexicon.py +0 -0
  67. {Cython-3.0.6 → Cython-3.0.8}/Cython/Compiler/Main.py +0 -0
  68. {Cython-3.0.6 → Cython-3.0.8}/Cython/Compiler/MemoryView.py +0 -0
  69. {Cython-3.0.6 → Cython-3.0.8}/Cython/Compiler/Optimize.py +0 -0
  70. {Cython-3.0.6 → Cython-3.0.8}/Cython/Compiler/Options.py +0 -0
  71. {Cython-3.0.6 → Cython-3.0.8}/Cython/Compiler/Parsing.pxd +0 -0
  72. {Cython-3.0.6 → Cython-3.0.8}/Cython/Compiler/Parsing.py +0 -0
  73. {Cython-3.0.6 → Cython-3.0.8}/Cython/Compiler/Pipeline.py +0 -0
  74. {Cython-3.0.6 → Cython-3.0.8}/Cython/Compiler/Pythran.py +0 -0
  75. {Cython-3.0.6 → Cython-3.0.8}/Cython/Compiler/Scanning.pxd +0 -0
  76. {Cython-3.0.6 → Cython-3.0.8}/Cython/Compiler/Scanning.py +0 -0
  77. {Cython-3.0.6 → Cython-3.0.8}/Cython/Compiler/StringEncoding.py +0 -0
  78. {Cython-3.0.6 → Cython-3.0.8}/Cython/Compiler/Symtab.py +0 -0
  79. {Cython-3.0.6 → Cython-3.0.8}/Cython/Compiler/Tests/TestBuffer.py +0 -0
  80. {Cython-3.0.6 → Cython-3.0.8}/Cython/Compiler/Tests/TestCmdLine.py +0 -0
  81. {Cython-3.0.6 → Cython-3.0.8}/Cython/Compiler/Tests/TestFlowControl.py +0 -0
  82. {Cython-3.0.6 → Cython-3.0.8}/Cython/Compiler/Tests/TestGrammar.py +0 -0
  83. {Cython-3.0.6 → Cython-3.0.8}/Cython/Compiler/Tests/TestMemView.py +0 -0
  84. {Cython-3.0.6 → Cython-3.0.8}/Cython/Compiler/Tests/TestParseTreeTransforms.py +0 -0
  85. {Cython-3.0.6 → Cython-3.0.8}/Cython/Compiler/Tests/TestScanning.py +0 -0
  86. {Cython-3.0.6 → Cython-3.0.8}/Cython/Compiler/Tests/TestSignatureMatching.py +0 -0
  87. {Cython-3.0.6 → Cython-3.0.8}/Cython/Compiler/Tests/TestStringEncoding.py +0 -0
  88. {Cython-3.0.6 → Cython-3.0.8}/Cython/Compiler/Tests/TestTreeFragment.py +0 -0
  89. {Cython-3.0.6 → Cython-3.0.8}/Cython/Compiler/Tests/TestTreePath.py +0 -0
  90. {Cython-3.0.6 → Cython-3.0.8}/Cython/Compiler/Tests/TestTypes.py +0 -0
  91. {Cython-3.0.6 → Cython-3.0.8}/Cython/Compiler/Tests/TestUtilityLoad.py +0 -0
  92. {Cython-3.0.6 → Cython-3.0.8}/Cython/Compiler/Tests/TestVisitor.py +0 -0
  93. {Cython-3.0.6 → Cython-3.0.8}/Cython/Compiler/Tests/Utils.py +0 -0
  94. {Cython-3.0.6 → Cython-3.0.8}/Cython/Compiler/Tests/__init__.py +0 -0
  95. {Cython-3.0.6 → Cython-3.0.8}/Cython/Compiler/TreeFragment.py +0 -0
  96. {Cython-3.0.6 → Cython-3.0.8}/Cython/Compiler/TreePath.py +0 -0
  97. {Cython-3.0.6 → Cython-3.0.8}/Cython/Compiler/TypeInference.py +0 -0
  98. {Cython-3.0.6 → Cython-3.0.8}/Cython/Compiler/TypeSlots.py +0 -0
  99. {Cython-3.0.6 → Cython-3.0.8}/Cython/Compiler/UFuncs.py +0 -0
  100. {Cython-3.0.6 → Cython-3.0.8}/Cython/Compiler/UtilNodes.py +0 -0
  101. {Cython-3.0.6 → Cython-3.0.8}/Cython/Compiler/UtilityCode.py +0 -0
  102. {Cython-3.0.6 → Cython-3.0.8}/Cython/Compiler/Version.py +0 -0
  103. {Cython-3.0.6 → Cython-3.0.8}/Cython/Compiler/Visitor.pxd +0 -0
  104. {Cython-3.0.6 → Cython-3.0.8}/Cython/Compiler/Visitor.py +0 -0
  105. {Cython-3.0.6 → Cython-3.0.8}/Cython/Compiler/__init__.py +0 -0
  106. {Cython-3.0.6 → Cython-3.0.8}/Cython/Coverage.py +0 -0
  107. {Cython-3.0.6 → Cython-3.0.8}/Cython/Debugger/Cygdb.py +0 -0
  108. {Cython-3.0.6 → Cython-3.0.8}/Cython/Debugger/DebugWriter.py +0 -0
  109. {Cython-3.0.6 → Cython-3.0.8}/Cython/Debugger/Tests/TestLibCython.py +0 -0
  110. {Cython-3.0.6 → Cython-3.0.8}/Cython/Debugger/Tests/__init__.py +0 -0
  111. {Cython-3.0.6 → Cython-3.0.8}/Cython/Debugger/Tests/cfuncs.c +0 -0
  112. {Cython-3.0.6 → Cython-3.0.8}/Cython/Debugger/Tests/cfuncs.h +0 -0
  113. {Cython-3.0.6 → Cython-3.0.8}/Cython/Debugger/Tests/codefile +0 -0
  114. {Cython-3.0.6 → Cython-3.0.8}/Cython/Debugger/Tests/test_libcython_in_gdb.py +0 -0
  115. {Cython-3.0.6 → Cython-3.0.8}/Cython/Debugger/Tests/test_libpython_in_gdb.py +0 -0
  116. {Cython-3.0.6 → Cython-3.0.8}/Cython/Debugger/__init__.py +0 -0
  117. {Cython-3.0.6 → Cython-3.0.8}/Cython/Debugger/libcython.py +0 -0
  118. {Cython-3.0.6 → Cython-3.0.8}/Cython/Debugger/libpython.py +0 -0
  119. {Cython-3.0.6 → Cython-3.0.8}/Cython/Debugging.py +0 -0
  120. {Cython-3.0.6 → Cython-3.0.8}/Cython/Distutils/__init__.py +0 -0
  121. {Cython-3.0.6 → Cython-3.0.8}/Cython/Distutils/build_ext.py +0 -0
  122. {Cython-3.0.6 → Cython-3.0.8}/Cython/Distutils/extension.py +0 -0
  123. {Cython-3.0.6 → Cython-3.0.8}/Cython/Distutils/old_build_ext.py +0 -0
  124. {Cython-3.0.6 → Cython-3.0.8}/Cython/Includes/cpython/__init__.pxd +0 -0
  125. {Cython-3.0.6 → Cython-3.0.8}/Cython/Includes/cpython/array.pxd +0 -0
  126. {Cython-3.0.6 → Cython-3.0.8}/Cython/Includes/cpython/bool.pxd +0 -0
  127. {Cython-3.0.6 → Cython-3.0.8}/Cython/Includes/cpython/buffer.pxd +0 -0
  128. {Cython-3.0.6 → Cython-3.0.8}/Cython/Includes/cpython/bytearray.pxd +0 -0
  129. {Cython-3.0.6 → Cython-3.0.8}/Cython/Includes/cpython/bytes.pxd +0 -0
  130. {Cython-3.0.6 → Cython-3.0.8}/Cython/Includes/cpython/cellobject.pxd +0 -0
  131. {Cython-3.0.6 → Cython-3.0.8}/Cython/Includes/cpython/ceval.pxd +0 -0
  132. {Cython-3.0.6 → Cython-3.0.8}/Cython/Includes/cpython/cobject.pxd +0 -0
  133. {Cython-3.0.6 → Cython-3.0.8}/Cython/Includes/cpython/codecs.pxd +0 -0
  134. {Cython-3.0.6 → Cython-3.0.8}/Cython/Includes/cpython/complex.pxd +0 -0
  135. {Cython-3.0.6 → Cython-3.0.8}/Cython/Includes/cpython/contextvars.pxd +0 -0
  136. {Cython-3.0.6 → Cython-3.0.8}/Cython/Includes/cpython/conversion.pxd +0 -0
  137. {Cython-3.0.6 → Cython-3.0.8}/Cython/Includes/cpython/datetime.pxd +0 -0
  138. {Cython-3.0.6 → Cython-3.0.8}/Cython/Includes/cpython/descr.pxd +0 -0
  139. {Cython-3.0.6 → Cython-3.0.8}/Cython/Includes/cpython/dict.pxd +0 -0
  140. {Cython-3.0.6 → Cython-3.0.8}/Cython/Includes/cpython/exc.pxd +0 -0
  141. {Cython-3.0.6 → Cython-3.0.8}/Cython/Includes/cpython/fileobject.pxd +0 -0
  142. {Cython-3.0.6 → Cython-3.0.8}/Cython/Includes/cpython/float.pxd +0 -0
  143. {Cython-3.0.6 → Cython-3.0.8}/Cython/Includes/cpython/function.pxd +0 -0
  144. {Cython-3.0.6 → Cython-3.0.8}/Cython/Includes/cpython/genobject.pxd +0 -0
  145. {Cython-3.0.6 → Cython-3.0.8}/Cython/Includes/cpython/getargs.pxd +0 -0
  146. {Cython-3.0.6 → Cython-3.0.8}/Cython/Includes/cpython/instance.pxd +0 -0
  147. {Cython-3.0.6 → Cython-3.0.8}/Cython/Includes/cpython/int.pxd +0 -0
  148. {Cython-3.0.6 → Cython-3.0.8}/Cython/Includes/cpython/iterator.pxd +0 -0
  149. {Cython-3.0.6 → Cython-3.0.8}/Cython/Includes/cpython/iterobject.pxd +0 -0
  150. {Cython-3.0.6 → Cython-3.0.8}/Cython/Includes/cpython/list.pxd +0 -0
  151. {Cython-3.0.6 → Cython-3.0.8}/Cython/Includes/cpython/long.pxd +0 -0
  152. {Cython-3.0.6 → Cython-3.0.8}/Cython/Includes/cpython/longintrepr.pxd +0 -0
  153. {Cython-3.0.6 → Cython-3.0.8}/Cython/Includes/cpython/mapping.pxd +0 -0
  154. {Cython-3.0.6 → Cython-3.0.8}/Cython/Includes/cpython/marshal.pxd +0 -0
  155. {Cython-3.0.6 → Cython-3.0.8}/Cython/Includes/cpython/mem.pxd +0 -0
  156. {Cython-3.0.6 → Cython-3.0.8}/Cython/Includes/cpython/memoryview.pxd +0 -0
  157. {Cython-3.0.6 → Cython-3.0.8}/Cython/Includes/cpython/method.pxd +0 -0
  158. {Cython-3.0.6 → Cython-3.0.8}/Cython/Includes/cpython/module.pxd +0 -0
  159. {Cython-3.0.6 → Cython-3.0.8}/Cython/Includes/cpython/number.pxd +0 -0
  160. {Cython-3.0.6 → Cython-3.0.8}/Cython/Includes/cpython/object.pxd +0 -0
  161. {Cython-3.0.6 → Cython-3.0.8}/Cython/Includes/cpython/oldbuffer.pxd +0 -0
  162. {Cython-3.0.6 → Cython-3.0.8}/Cython/Includes/cpython/pycapsule.pxd +0 -0
  163. {Cython-3.0.6 → Cython-3.0.8}/Cython/Includes/cpython/pylifecycle.pxd +0 -0
  164. {Cython-3.0.6 → Cython-3.0.8}/Cython/Includes/cpython/pyport.pxd +0 -0
  165. {Cython-3.0.6 → Cython-3.0.8}/Cython/Includes/cpython/pystate.pxd +0 -0
  166. {Cython-3.0.6 → Cython-3.0.8}/Cython/Includes/cpython/pythread.pxd +0 -0
  167. {Cython-3.0.6 → Cython-3.0.8}/Cython/Includes/cpython/ref.pxd +0 -0
  168. {Cython-3.0.6 → Cython-3.0.8}/Cython/Includes/cpython/sequence.pxd +0 -0
  169. {Cython-3.0.6 → Cython-3.0.8}/Cython/Includes/cpython/set.pxd +0 -0
  170. {Cython-3.0.6 → Cython-3.0.8}/Cython/Includes/cpython/slice.pxd +0 -0
  171. {Cython-3.0.6 → Cython-3.0.8}/Cython/Includes/cpython/string.pxd +0 -0
  172. {Cython-3.0.6 → Cython-3.0.8}/Cython/Includes/cpython/time.pxd +0 -0
  173. {Cython-3.0.6 → Cython-3.0.8}/Cython/Includes/cpython/tuple.pxd +0 -0
  174. {Cython-3.0.6 → Cython-3.0.8}/Cython/Includes/cpython/type.pxd +0 -0
  175. {Cython-3.0.6 → Cython-3.0.8}/Cython/Includes/cpython/version.pxd +0 -0
  176. {Cython-3.0.6 → Cython-3.0.8}/Cython/Includes/cpython/weakref.pxd +0 -0
  177. {Cython-3.0.6 → Cython-3.0.8}/Cython/Includes/libc/__init__.pxd +0 -0
  178. {Cython-3.0.6 → Cython-3.0.8}/Cython/Includes/libc/complex.pxd +0 -0
  179. {Cython-3.0.6 → Cython-3.0.8}/Cython/Includes/libc/errno.pxd +0 -0
  180. {Cython-3.0.6 → Cython-3.0.8}/Cython/Includes/libc/float.pxd +0 -0
  181. {Cython-3.0.6 → Cython-3.0.8}/Cython/Includes/libc/limits.pxd +0 -0
  182. {Cython-3.0.6 → Cython-3.0.8}/Cython/Includes/libc/locale.pxd +0 -0
  183. {Cython-3.0.6 → Cython-3.0.8}/Cython/Includes/libc/math.pxd +0 -0
  184. {Cython-3.0.6 → Cython-3.0.8}/Cython/Includes/libc/setjmp.pxd +0 -0
  185. {Cython-3.0.6 → Cython-3.0.8}/Cython/Includes/libc/signal.pxd +0 -0
  186. {Cython-3.0.6 → Cython-3.0.8}/Cython/Includes/libc/stddef.pxd +0 -0
  187. {Cython-3.0.6 → Cython-3.0.8}/Cython/Includes/libc/stdint.pxd +0 -0
  188. {Cython-3.0.6 → Cython-3.0.8}/Cython/Includes/libc/stdio.pxd +0 -0
  189. {Cython-3.0.6 → Cython-3.0.8}/Cython/Includes/libc/stdlib.pxd +0 -0
  190. {Cython-3.0.6 → Cython-3.0.8}/Cython/Includes/libc/string.pxd +0 -0
  191. {Cython-3.0.6 → Cython-3.0.8}/Cython/Includes/libc/time.pxd +0 -0
  192. {Cython-3.0.6 → Cython-3.0.8}/Cython/Includes/libcpp/__init__.pxd +0 -0
  193. {Cython-3.0.6 → Cython-3.0.8}/Cython/Includes/libcpp/algorithm.pxd +0 -0
  194. {Cython-3.0.6 → Cython-3.0.8}/Cython/Includes/libcpp/any.pxd +0 -0
  195. {Cython-3.0.6 → Cython-3.0.8}/Cython/Includes/libcpp/atomic.pxd +0 -0
  196. {Cython-3.0.6 → Cython-3.0.8}/Cython/Includes/libcpp/bit.pxd +0 -0
  197. {Cython-3.0.6 → Cython-3.0.8}/Cython/Includes/libcpp/cast.pxd +0 -0
  198. {Cython-3.0.6 → Cython-3.0.8}/Cython/Includes/libcpp/cmath.pxd +0 -0
  199. {Cython-3.0.6 → Cython-3.0.8}/Cython/Includes/libcpp/complex.pxd +0 -0
  200. {Cython-3.0.6 → Cython-3.0.8}/Cython/Includes/libcpp/deque.pxd +0 -0
  201. {Cython-3.0.6 → Cython-3.0.8}/Cython/Includes/libcpp/execution.pxd +0 -0
  202. {Cython-3.0.6 → Cython-3.0.8}/Cython/Includes/libcpp/forward_list.pxd +0 -0
  203. {Cython-3.0.6 → Cython-3.0.8}/Cython/Includes/libcpp/functional.pxd +0 -0
  204. {Cython-3.0.6 → Cython-3.0.8}/Cython/Includes/libcpp/iterator.pxd +0 -0
  205. {Cython-3.0.6 → Cython-3.0.8}/Cython/Includes/libcpp/limits.pxd +0 -0
  206. {Cython-3.0.6 → Cython-3.0.8}/Cython/Includes/libcpp/list.pxd +0 -0
  207. {Cython-3.0.6 → Cython-3.0.8}/Cython/Includes/libcpp/map.pxd +0 -0
  208. {Cython-3.0.6 → Cython-3.0.8}/Cython/Includes/libcpp/memory.pxd +0 -0
  209. {Cython-3.0.6 → Cython-3.0.8}/Cython/Includes/libcpp/numbers.pxd +0 -0
  210. {Cython-3.0.6 → Cython-3.0.8}/Cython/Includes/libcpp/numeric.pxd +0 -0
  211. {Cython-3.0.6 → Cython-3.0.8}/Cython/Includes/libcpp/optional.pxd +0 -0
  212. {Cython-3.0.6 → Cython-3.0.8}/Cython/Includes/libcpp/pair.pxd +0 -0
  213. {Cython-3.0.6 → Cython-3.0.8}/Cython/Includes/libcpp/queue.pxd +0 -0
  214. {Cython-3.0.6 → Cython-3.0.8}/Cython/Includes/libcpp/random.pxd +0 -0
  215. {Cython-3.0.6 → Cython-3.0.8}/Cython/Includes/libcpp/set.pxd +0 -0
  216. {Cython-3.0.6 → Cython-3.0.8}/Cython/Includes/libcpp/stack.pxd +0 -0
  217. {Cython-3.0.6 → Cython-3.0.8}/Cython/Includes/libcpp/string.pxd +0 -0
  218. {Cython-3.0.6 → Cython-3.0.8}/Cython/Includes/libcpp/typeindex.pxd +0 -0
  219. {Cython-3.0.6 → Cython-3.0.8}/Cython/Includes/libcpp/typeinfo.pxd +0 -0
  220. {Cython-3.0.6 → Cython-3.0.8}/Cython/Includes/libcpp/unordered_map.pxd +0 -0
  221. {Cython-3.0.6 → Cython-3.0.8}/Cython/Includes/libcpp/unordered_set.pxd +0 -0
  222. {Cython-3.0.6 → Cython-3.0.8}/Cython/Includes/libcpp/utility.pxd +0 -0
  223. {Cython-3.0.6 → Cython-3.0.8}/Cython/Includes/libcpp/vector.pxd +0 -0
  224. {Cython-3.0.6 → Cython-3.0.8}/Cython/Includes/numpy/__init__.pxd +0 -0
  225. {Cython-3.0.6 → Cython-3.0.8}/Cython/Includes/numpy/math.pxd +0 -0
  226. {Cython-3.0.6 → Cython-3.0.8}/Cython/Includes/openmp.pxd +0 -0
  227. {Cython-3.0.6 → Cython-3.0.8}/Cython/Includes/posix/__init__.pxd +0 -0
  228. {Cython-3.0.6 → Cython-3.0.8}/Cython/Includes/posix/dlfcn.pxd +0 -0
  229. {Cython-3.0.6 → Cython-3.0.8}/Cython/Includes/posix/fcntl.pxd +0 -0
  230. {Cython-3.0.6 → Cython-3.0.8}/Cython/Includes/posix/ioctl.pxd +0 -0
  231. {Cython-3.0.6 → Cython-3.0.8}/Cython/Includes/posix/mman.pxd +0 -0
  232. {Cython-3.0.6 → Cython-3.0.8}/Cython/Includes/posix/resource.pxd +0 -0
  233. {Cython-3.0.6 → Cython-3.0.8}/Cython/Includes/posix/select.pxd +0 -0
  234. {Cython-3.0.6 → Cython-3.0.8}/Cython/Includes/posix/signal.pxd +0 -0
  235. {Cython-3.0.6 → Cython-3.0.8}/Cython/Includes/posix/stat.pxd +0 -0
  236. {Cython-3.0.6 → Cython-3.0.8}/Cython/Includes/posix/stdio.pxd +0 -0
  237. {Cython-3.0.6 → Cython-3.0.8}/Cython/Includes/posix/stdlib.pxd +0 -0
  238. {Cython-3.0.6 → Cython-3.0.8}/Cython/Includes/posix/strings.pxd +0 -0
  239. {Cython-3.0.6 → Cython-3.0.8}/Cython/Includes/posix/time.pxd +0 -0
  240. {Cython-3.0.6 → Cython-3.0.8}/Cython/Includes/posix/types.pxd +0 -0
  241. {Cython-3.0.6 → Cython-3.0.8}/Cython/Includes/posix/uio.pxd +0 -0
  242. {Cython-3.0.6 → Cython-3.0.8}/Cython/Includes/posix/unistd.pxd +0 -0
  243. {Cython-3.0.6 → Cython-3.0.8}/Cython/Includes/posix/wait.pxd +0 -0
  244. {Cython-3.0.6 → Cython-3.0.8}/Cython/Parser/ConcreteSyntaxTree.pyx +0 -0
  245. {Cython-3.0.6 → Cython-3.0.8}/Cython/Parser/Grammar +0 -0
  246. {Cython-3.0.6 → Cython-3.0.8}/Cython/Parser/__init__.py +0 -0
  247. {Cython-3.0.6 → Cython-3.0.8}/Cython/Plex/Actions.pxd +0 -0
  248. {Cython-3.0.6 → Cython-3.0.8}/Cython/Plex/Actions.py +0 -0
  249. {Cython-3.0.6 → Cython-3.0.8}/Cython/Plex/DFA.pxd +0 -0
  250. {Cython-3.0.6 → Cython-3.0.8}/Cython/Plex/DFA.py +0 -0
  251. {Cython-3.0.6 → Cython-3.0.8}/Cython/Plex/Errors.py +0 -0
  252. {Cython-3.0.6 → Cython-3.0.8}/Cython/Plex/Lexicons.py +0 -0
  253. {Cython-3.0.6 → Cython-3.0.8}/Cython/Plex/Machines.pxd +0 -0
  254. {Cython-3.0.6 → Cython-3.0.8}/Cython/Plex/Machines.py +0 -0
  255. {Cython-3.0.6 → Cython-3.0.8}/Cython/Plex/Regexps.py +0 -0
  256. {Cython-3.0.6 → Cython-3.0.8}/Cython/Plex/Scanners.pxd +0 -0
  257. {Cython-3.0.6 → Cython-3.0.8}/Cython/Plex/Scanners.py +0 -0
  258. {Cython-3.0.6 → Cython-3.0.8}/Cython/Plex/Transitions.pxd +0 -0
  259. {Cython-3.0.6 → Cython-3.0.8}/Cython/Plex/Transitions.py +0 -0
  260. {Cython-3.0.6 → Cython-3.0.8}/Cython/Plex/__init__.py +0 -0
  261. {Cython-3.0.6 → Cython-3.0.8}/Cython/Runtime/__init__.py +0 -0
  262. {Cython-3.0.6 → Cython-3.0.8}/Cython/Runtime/refnanny.pyx +0 -0
  263. {Cython-3.0.6 → Cython-3.0.8}/Cython/Shadow.pyi +0 -0
  264. {Cython-3.0.6 → Cython-3.0.8}/Cython/StringIOTree.pxd +0 -0
  265. {Cython-3.0.6 → Cython-3.0.8}/Cython/StringIOTree.py +0 -0
  266. {Cython-3.0.6 → Cython-3.0.8}/Cython/Tempita/__init__.py +0 -0
  267. {Cython-3.0.6 → Cython-3.0.8}/Cython/Tempita/_looper.py +0 -0
  268. {Cython-3.0.6 → Cython-3.0.8}/Cython/Tempita/_tempita.py +0 -0
  269. {Cython-3.0.6 → Cython-3.0.8}/Cython/Tempita/compat3.py +0 -0
  270. {Cython-3.0.6 → Cython-3.0.8}/Cython/TestUtils.py +0 -0
  271. {Cython-3.0.6 → Cython-3.0.8}/Cython/Tests/TestCodeWriter.py +0 -0
  272. {Cython-3.0.6 → Cython-3.0.8}/Cython/Tests/TestCythonUtils.py +0 -0
  273. {Cython-3.0.6 → Cython-3.0.8}/Cython/Tests/TestJediTyper.py +0 -0
  274. {Cython-3.0.6 → Cython-3.0.8}/Cython/Tests/TestStringIOTree.py +0 -0
  275. {Cython-3.0.6 → Cython-3.0.8}/Cython/Tests/TestTestUtils.py +0 -0
  276. {Cython-3.0.6 → Cython-3.0.8}/Cython/Tests/__init__.py +0 -0
  277. {Cython-3.0.6 → Cython-3.0.8}/Cython/Tests/xmlrunner.py +0 -0
  278. {Cython-3.0.6 → Cython-3.0.8}/Cython/Utility/AsyncGen.c +0 -0
  279. {Cython-3.0.6 → Cython-3.0.8}/Cython/Utility/Buffer.c +0 -0
  280. {Cython-3.0.6 → Cython-3.0.8}/Cython/Utility/Builtins.c +0 -0
  281. {Cython-3.0.6 → Cython-3.0.8}/Cython/Utility/CConvert.pyx +0 -0
  282. {Cython-3.0.6 → Cython-3.0.8}/Cython/Utility/CMath.c +0 -0
  283. {Cython-3.0.6 → Cython-3.0.8}/Cython/Utility/CommonStructures.c +0 -0
  284. {Cython-3.0.6 → Cython-3.0.8}/Cython/Utility/Complex.c +0 -0
  285. {Cython-3.0.6 → Cython-3.0.8}/Cython/Utility/Coroutine.c +0 -0
  286. {Cython-3.0.6 → Cython-3.0.8}/Cython/Utility/CpdefEnums.pyx +0 -0
  287. {Cython-3.0.6 → Cython-3.0.8}/Cython/Utility/CppConvert.pyx +0 -0
  288. {Cython-3.0.6 → Cython-3.0.8}/Cython/Utility/CppSupport.cpp +0 -0
  289. {Cython-3.0.6 → Cython-3.0.8}/Cython/Utility/Dataclasses.py +0 -0
  290. {Cython-3.0.6 → Cython-3.0.8}/Cython/Utility/Embed.c +0 -0
  291. {Cython-3.0.6 → Cython-3.0.8}/Cython/Utility/ExtensionTypes.c +0 -0
  292. {Cython-3.0.6 → Cython-3.0.8}/Cython/Utility/ImportExport.c +0 -0
  293. {Cython-3.0.6 → Cython-3.0.8}/Cython/Utility/MemoryView.pyx +0 -0
  294. {Cython-3.0.6 → Cython-3.0.8}/Cython/Utility/MemoryView_C.c +0 -0
  295. {Cython-3.0.6 → Cython-3.0.8}/Cython/Utility/NumpyImportArray.c +0 -0
  296. {Cython-3.0.6 → Cython-3.0.8}/Cython/Utility/Optimize.c +0 -0
  297. {Cython-3.0.6 → Cython-3.0.8}/Cython/Utility/Overflow.c +0 -0
  298. {Cython-3.0.6 → Cython-3.0.8}/Cython/Utility/Printing.c +0 -0
  299. {Cython-3.0.6 → Cython-3.0.8}/Cython/Utility/Profile.c +0 -0
  300. {Cython-3.0.6 → Cython-3.0.8}/Cython/Utility/StringTools.c +0 -0
  301. {Cython-3.0.6 → Cython-3.0.8}/Cython/Utility/TestCyUtilityLoader.pyx +0 -0
  302. {Cython-3.0.6 → Cython-3.0.8}/Cython/Utility/TestCythonScope.pyx +0 -0
  303. {Cython-3.0.6 → Cython-3.0.8}/Cython/Utility/TestUtilityLoader.c +0 -0
  304. {Cython-3.0.6 → Cython-3.0.8}/Cython/Utility/UFuncs.pyx +0 -0
  305. {Cython-3.0.6 → Cython-3.0.8}/Cython/Utility/__init__.py +0 -0
  306. {Cython-3.0.6 → Cython-3.0.8}/Cython/Utility/arrayarray.h +0 -0
  307. {Cython-3.0.6 → Cython-3.0.8}/Cython/Utils.pxd +0 -0
  308. {Cython-3.0.6 → Cython-3.0.8}/Cython/Utils.py +0 -0
  309. {Cython-3.0.6 → Cython-3.0.8}/Cython/__init__.py +0 -0
  310. {Cython-3.0.6 → Cython-3.0.8}/Demos/Makefile +0 -0
  311. {Cython-3.0.6 → Cython-3.0.8}/Demos/Makefile.nodistutils +0 -0
  312. {Cython-3.0.6 → Cython-3.0.8}/Demos/benchmarks/bpnn3.pxd +0 -0
  313. {Cython-3.0.6 → Cython-3.0.8}/Demos/benchmarks/bpnn3.py +0 -0
  314. {Cython-3.0.6 → Cython-3.0.8}/Demos/benchmarks/chaos.pxd +0 -0
  315. {Cython-3.0.6 → Cython-3.0.8}/Demos/benchmarks/chaos.py +0 -0
  316. {Cython-3.0.6 → Cython-3.0.8}/Demos/benchmarks/coroutines.py +0 -0
  317. {Cython-3.0.6 → Cython-3.0.8}/Demos/benchmarks/fstrings.py +0 -0
  318. {Cython-3.0.6 → Cython-3.0.8}/Demos/benchmarks/generators.py +0 -0
  319. {Cython-3.0.6 → Cython-3.0.8}/Demos/benchmarks/hexiom2.pxd +0 -0
  320. {Cython-3.0.6 → Cython-3.0.8}/Demos/benchmarks/hexiom2.py +0 -0
  321. {Cython-3.0.6 → Cython-3.0.8}/Demos/benchmarks/meteor_contest.pxd +0 -0
  322. {Cython-3.0.6 → Cython-3.0.8}/Demos/benchmarks/meteor_contest.py +0 -0
  323. {Cython-3.0.6 → Cython-3.0.8}/Demos/benchmarks/nbody.pxd +0 -0
  324. {Cython-3.0.6 → Cython-3.0.8}/Demos/benchmarks/nbody.py +0 -0
  325. {Cython-3.0.6 → Cython-3.0.8}/Demos/benchmarks/nqueens.py +0 -0
  326. {Cython-3.0.6 → Cython-3.0.8}/Demos/benchmarks/richards.pxd +0 -0
  327. {Cython-3.0.6 → Cython-3.0.8}/Demos/benchmarks/richards.py +0 -0
  328. {Cython-3.0.6 → Cython-3.0.8}/Demos/benchmarks/setup.py +0 -0
  329. {Cython-3.0.6 → Cython-3.0.8}/Demos/benchmarks/spectralnorm.pxd +0 -0
  330. {Cython-3.0.6 → Cython-3.0.8}/Demos/benchmarks/spectralnorm.py +0 -0
  331. {Cython-3.0.6 → Cython-3.0.8}/Demos/benchmarks/util.py +0 -0
  332. {Cython-3.0.6 → Cython-3.0.8}/Demos/callback/Makefile +0 -0
  333. {Cython-3.0.6 → Cython-3.0.8}/Demos/callback/Makefile.nodistutils +0 -0
  334. {Cython-3.0.6 → Cython-3.0.8}/Demos/callback/README.rst +0 -0
  335. {Cython-3.0.6 → Cython-3.0.8}/Demos/callback/Setup.py +0 -0
  336. {Cython-3.0.6 → Cython-3.0.8}/Demos/callback/cheese.pyx +0 -0
  337. {Cython-3.0.6 → Cython-3.0.8}/Demos/callback/cheesefinder.c +0 -0
  338. {Cython-3.0.6 → Cython-3.0.8}/Demos/callback/cheesefinder.h +0 -0
  339. {Cython-3.0.6 → Cython-3.0.8}/Demos/callback/run_cheese.py +0 -0
  340. {Cython-3.0.6 → Cython-3.0.8}/Demos/embed/Makefile +0 -0
  341. {Cython-3.0.6 → Cython-3.0.8}/Demos/embed/Makefile.msc +0 -0
  342. {Cython-3.0.6 → Cython-3.0.8}/Demos/embed/Makefile.msc.static +0 -0
  343. {Cython-3.0.6 → Cython-3.0.8}/Demos/embed/Makefile.unix +0 -0
  344. {Cython-3.0.6 → Cython-3.0.8}/Demos/embed/README.rst +0 -0
  345. {Cython-3.0.6 → Cython-3.0.8}/Demos/embed/assert_equal.py +0 -0
  346. {Cython-3.0.6 → Cython-3.0.8}/Demos/embed/embedded.output +0 -0
  347. {Cython-3.0.6 → Cython-3.0.8}/Demos/embed/embedded.pyx +0 -0
  348. {Cython-3.0.6 → Cython-3.0.8}/Demos/freeze/Makefile +0 -0
  349. {Cython-3.0.6 → Cython-3.0.8}/Demos/freeze/README.rst +0 -0
  350. {Cython-3.0.6 → Cython-3.0.8}/Demos/freeze/combinatorics.pyx +0 -0
  351. {Cython-3.0.6 → Cython-3.0.8}/Demos/freeze/lcmath.pyx +0 -0
  352. {Cython-3.0.6 → Cython-3.0.8}/Demos/integrate0.py +0 -0
  353. {Cython-3.0.6 → Cython-3.0.8}/Demos/integrate1.pyx +0 -0
  354. {Cython-3.0.6 → Cython-3.0.8}/Demos/integrate2.pyx +0 -0
  355. {Cython-3.0.6 → Cython-3.0.8}/Demos/integrate_timing.py +0 -0
  356. {Cython-3.0.6 → Cython-3.0.8}/Demos/libraries/call_mymath.pyx +0 -0
  357. {Cython-3.0.6 → Cython-3.0.8}/Demos/libraries/mymath.c +0 -0
  358. {Cython-3.0.6 → Cython-3.0.8}/Demos/libraries/mymath.h +0 -0
  359. {Cython-3.0.6 → Cython-3.0.8}/Demos/libraries/setup.py +0 -0
  360. {Cython-3.0.6 → Cython-3.0.8}/Demos/numpy_demo.pyx +0 -0
  361. {Cython-3.0.6 → Cython-3.0.8}/Demos/overflow_perf.pyx +0 -0
  362. {Cython-3.0.6 → Cython-3.0.8}/Demos/overflow_perf_run.py +0 -0
  363. {Cython-3.0.6 → Cython-3.0.8}/Demos/primes.pyx +0 -0
  364. {Cython-3.0.6 → Cython-3.0.8}/Demos/pyprimes.py +0 -0
  365. {Cython-3.0.6 → Cython-3.0.8}/Demos/run_numeric_demo.py +0 -0
  366. {Cython-3.0.6 → Cython-3.0.8}/Demos/run_primes.py +0 -0
  367. {Cython-3.0.6 → Cython-3.0.8}/Demos/run_spam.py +0 -0
  368. {Cython-3.0.6 → Cython-3.0.8}/Demos/setup.py +0 -0
  369. {Cython-3.0.6 → Cython-3.0.8}/Demos/spam.pyx +0 -0
  370. {Cython-3.0.6 → Cython-3.0.8}/INSTALL.txt +0 -0
  371. {Cython-3.0.6 → Cython-3.0.8}/LICENSE.txt +0 -0
  372. {Cython-3.0.6 → Cython-3.0.8}/MANIFEST.in +0 -0
  373. {Cython-3.0.6 → Cython-3.0.8}/Makefile +0 -0
  374. {Cython-3.0.6 → Cython-3.0.8}/README.rst +0 -0
  375. {Cython-3.0.6 → Cython-3.0.8}/ToDo.txt +0 -0
  376. {Cython-3.0.6 → Cython-3.0.8}/Tools/BUILD.bazel +0 -0
  377. {Cython-3.0.6 → Cython-3.0.8}/Tools/cevaltrace.py +0 -0
  378. {Cython-3.0.6 → Cython-3.0.8}/Tools/ci-run.sh +0 -0
  379. {Cython-3.0.6 → Cython-3.0.8}/Tools/cystdlib.py +0 -0
  380. {Cython-3.0.6 → Cython-3.0.8}/Tools/cython-epydoc.py +0 -0
  381. {Cython-3.0.6 → Cython-3.0.8}/Tools/cython-numpy-mode-kate.xml +0 -0
  382. {Cython-3.0.6 → Cython-3.0.8}/Tools/cython.st +0 -0
  383. {Cython-3.0.6 → Cython-3.0.8}/Tools/dataclass_test_data/test_dataclasses.py +0 -0
  384. {Cython-3.0.6 → Cython-3.0.8}/Tools/dump_github_issues.py +0 -0
  385. {Cython-3.0.6 → Cython-3.0.8}/Tools/gen_tests_for_posix_pxds.py +0 -0
  386. {Cython-3.0.6 → Cython-3.0.8}/Tools/jedityper.py +0 -0
  387. {Cython-3.0.6 → Cython-3.0.8}/Tools/kate.diff +0 -0
  388. {Cython-3.0.6 → Cython-3.0.8}/Tools/make_dataclass_tests.py +0 -0
  389. {Cython-3.0.6 → Cython-3.0.8}/Tools/rules.bzl +0 -0
  390. {Cython-3.0.6 → Cython-3.0.8}/Tools/site_scons/site_tools/cython.py +0 -0
  391. {Cython-3.0.6 → Cython-3.0.8}/Tools/site_scons/site_tools/pyext.py +0 -0
  392. {Cython-3.0.6 → Cython-3.0.8}/USAGE.txt +0 -0
  393. {Cython-3.0.6 → Cython-3.0.8}/bin/cygdb +0 -0
  394. {Cython-3.0.6 → Cython-3.0.8}/bin/cython +0 -0
  395. {Cython-3.0.6 → Cython-3.0.8}/bin/cython-generate-lexicon.py +0 -0
  396. {Cython-3.0.6 → Cython-3.0.8}/bin/cython.bat +0 -0
  397. {Cython-3.0.6 → Cython-3.0.8}/bin/cython_freeze +0 -0
  398. {Cython-3.0.6 → Cython-3.0.8}/bin/cythonize +0 -0
  399. {Cython-3.0.6 → Cython-3.0.8}/bin/cythonrun +0 -0
  400. {Cython-3.0.6 → Cython-3.0.8}/bin/move-declarators.sed +0 -0
  401. {Cython-3.0.6 → Cython-3.0.8}/bin/pcython +0 -0
  402. {Cython-3.0.6 → Cython-3.0.8}/cygdb.py +0 -0
  403. {Cython-3.0.6 → Cython-3.0.8}/cython.py +0 -0
  404. {Cython-3.0.6 → Cython-3.0.8}/cythonize.py +0 -0
  405. {Cython-3.0.6 → Cython-3.0.8}/doc-requirements.txt +0 -0
  406. {Cython-3.0.6 → Cython-3.0.8}/docs/.hgignore +0 -0
  407. {Cython-3.0.6 → Cython-3.0.8}/docs/CONTRIBUTING.rst +0 -0
  408. {Cython-3.0.6 → Cython-3.0.8}/docs/Makefile +0 -0
  409. {Cython-3.0.6 → Cython-3.0.8}/docs/README.md +0 -0
  410. {Cython-3.0.6 → Cython-3.0.8}/docs/TODO +0 -0
  411. {Cython-3.0.6 → Cython-3.0.8}/docs/_static/css/tabs.css +0 -0
  412. {Cython-3.0.6 → Cython-3.0.8}/docs/_static/cython-logo-C.svg +0 -0
  413. {Cython-3.0.6 → Cython-3.0.8}/docs/_static/cython-logo-light.png +0 -0
  414. {Cython-3.0.6 → Cython-3.0.8}/docs/_static/cython-logo.svg +0 -0
  415. {Cython-3.0.6 → Cython-3.0.8}/docs/_static/cythonlogo.png +0 -0
  416. {Cython-3.0.6 → Cython-3.0.8}/docs/_static/favicon.ico +0 -0
  417. {Cython-3.0.6 → Cython-3.0.8}/docs/_templates/layout.html +0 -0
  418. {Cython-3.0.6 → Cython-3.0.8}/docs/conf.py +0 -0
  419. {Cython-3.0.6 → Cython-3.0.8}/docs/examples/Cython Magics.ipynb +0 -0
  420. {Cython-3.0.6 → Cython-3.0.8}/docs/examples/README.rst +0 -0
  421. {Cython-3.0.6 → Cython-3.0.8}/docs/examples/not_in_docs/great_circle/c1.pyx +0 -0
  422. {Cython-3.0.6 → Cython-3.0.8}/docs/examples/not_in_docs/great_circle/c2.pyx +0 -0
  423. {Cython-3.0.6 → Cython-3.0.8}/docs/examples/not_in_docs/great_circle/p1.py +0 -0
  424. {Cython-3.0.6 → Cython-3.0.8}/docs/examples/quickstart/build/hello.pyx +0 -0
  425. {Cython-3.0.6 → Cython-3.0.8}/docs/examples/quickstart/build/setup.py +0 -0
  426. {Cython-3.0.6 → Cython-3.0.8}/docs/examples/quickstart/cythonize/cdef_keyword.py +0 -0
  427. {Cython-3.0.6 → Cython-3.0.8}/docs/examples/quickstart/cythonize/cdef_keyword.pyx +0 -0
  428. {Cython-3.0.6 → Cython-3.0.8}/docs/examples/quickstart/cythonize/integrate.py +0 -0
  429. {Cython-3.0.6 → Cython-3.0.8}/docs/examples/quickstart/cythonize/integrate_cy.py +0 -0
  430. {Cython-3.0.6 → Cython-3.0.8}/docs/examples/quickstart/cythonize/integrate_cy.pyx +0 -0
  431. {Cython-3.0.6 → Cython-3.0.8}/docs/examples/tutorial/array/clone.py +0 -0
  432. {Cython-3.0.6 → Cython-3.0.8}/docs/examples/tutorial/array/clone.pyx +0 -0
  433. {Cython-3.0.6 → Cython-3.0.8}/docs/examples/tutorial/array/overhead.py +0 -0
  434. {Cython-3.0.6 → Cython-3.0.8}/docs/examples/tutorial/array/overhead.pyx +0 -0
  435. {Cython-3.0.6 → Cython-3.0.8}/docs/examples/tutorial/array/resize.py +0 -0
  436. {Cython-3.0.6 → Cython-3.0.8}/docs/examples/tutorial/array/resize.pyx +0 -0
  437. {Cython-3.0.6 → Cython-3.0.8}/docs/examples/tutorial/array/safe_usage.py +0 -0
  438. {Cython-3.0.6 → Cython-3.0.8}/docs/examples/tutorial/array/safe_usage.pyx +0 -0
  439. {Cython-3.0.6 → Cython-3.0.8}/docs/examples/tutorial/array/unsafe_usage.py +0 -0
  440. {Cython-3.0.6 → Cython-3.0.8}/docs/examples/tutorial/array/unsafe_usage.pyx +0 -0
  441. {Cython-3.0.6 → Cython-3.0.8}/docs/examples/tutorial/cdef_classes/integrate.py +0 -0
  442. {Cython-3.0.6 → Cython-3.0.8}/docs/examples/tutorial/cdef_classes/integrate.pyx +0 -0
  443. {Cython-3.0.6 → Cython-3.0.8}/docs/examples/tutorial/cdef_classes/math_function.py +0 -0
  444. {Cython-3.0.6 → Cython-3.0.8}/docs/examples/tutorial/cdef_classes/math_function_2.py +0 -0
  445. {Cython-3.0.6 → Cython-3.0.8}/docs/examples/tutorial/cdef_classes/math_function_2.pyx +0 -0
  446. {Cython-3.0.6 → Cython-3.0.8}/docs/examples/tutorial/cdef_classes/nonecheck.py +0 -0
  447. {Cython-3.0.6 → Cython-3.0.8}/docs/examples/tutorial/cdef_classes/nonecheck.pyx +0 -0
  448. {Cython-3.0.6 → Cython-3.0.8}/docs/examples/tutorial/cdef_classes/sin_of_square.pxd +0 -0
  449. {Cython-3.0.6 → Cython-3.0.8}/docs/examples/tutorial/cdef_classes/sin_of_square.py +0 -0
  450. {Cython-3.0.6 → Cython-3.0.8}/docs/examples/tutorial/cdef_classes/sin_of_square.pyx +0 -0
  451. {Cython-3.0.6 → Cython-3.0.8}/docs/examples/tutorial/cdef_classes/wave_function.py +0 -0
  452. {Cython-3.0.6 → Cython-3.0.8}/docs/examples/tutorial/cdef_classes/wave_function.pyx +0 -0
  453. {Cython-3.0.6 → Cython-3.0.8}/docs/examples/tutorial/clibraries/c-algorithms/src/queue.h +0 -0
  454. {Cython-3.0.6 → Cython-3.0.8}/docs/examples/tutorial/clibraries/cqueue.pxd +0 -0
  455. {Cython-3.0.6 → Cython-3.0.8}/docs/examples/tutorial/clibraries/queue.py +0 -0
  456. {Cython-3.0.6 → Cython-3.0.8}/docs/examples/tutorial/clibraries/queue.pyx +0 -0
  457. {Cython-3.0.6 → Cython-3.0.8}/docs/examples/tutorial/clibraries/queue2.py +0 -0
  458. {Cython-3.0.6 → Cython-3.0.8}/docs/examples/tutorial/clibraries/queue2.pyx +0 -0
  459. {Cython-3.0.6 → Cython-3.0.8}/docs/examples/tutorial/clibraries/queue3.py +0 -0
  460. {Cython-3.0.6 → Cython-3.0.8}/docs/examples/tutorial/clibraries/queue3.pyx +0 -0
  461. {Cython-3.0.6 → Cython-3.0.8}/docs/examples/tutorial/clibraries/test_queue.py +0 -0
  462. {Cython-3.0.6 → Cython-3.0.8}/docs/examples/tutorial/cython_tutorial/fib.pyx +0 -0
  463. {Cython-3.0.6 → Cython-3.0.8}/docs/examples/tutorial/cython_tutorial/primes.py +0 -0
  464. {Cython-3.0.6 → Cython-3.0.8}/docs/examples/tutorial/cython_tutorial/primes.pyx +0 -0
  465. {Cython-3.0.6 → Cython-3.0.8}/docs/examples/tutorial/cython_tutorial/primes_cpp.py +0 -0
  466. {Cython-3.0.6 → Cython-3.0.8}/docs/examples/tutorial/cython_tutorial/primes_cpp.pyx +0 -0
  467. {Cython-3.0.6 → Cython-3.0.8}/docs/examples/tutorial/cython_tutorial/primes_python.py +0 -0
  468. {Cython-3.0.6 → Cython-3.0.8}/docs/examples/tutorial/embedding/embedded.pyx +0 -0
  469. {Cython-3.0.6 → Cython-3.0.8}/docs/examples/tutorial/embedding/embedded_main.c +0 -0
  470. {Cython-3.0.6 → Cython-3.0.8}/docs/examples/tutorial/external/atoi.py +0 -0
  471. {Cython-3.0.6 → Cython-3.0.8}/docs/examples/tutorial/external/atoi.pyx +0 -0
  472. {Cython-3.0.6 → Cython-3.0.8}/docs/examples/tutorial/external/cpdef_sin.pyx +0 -0
  473. {Cython-3.0.6 → Cython-3.0.8}/docs/examples/tutorial/external/keyword_args.pyx +0 -0
  474. {Cython-3.0.6 → Cython-3.0.8}/docs/examples/tutorial/external/keyword_args_call.py +0 -0
  475. {Cython-3.0.6 → Cython-3.0.8}/docs/examples/tutorial/external/keyword_args_call.pyx +0 -0
  476. {Cython-3.0.6 → Cython-3.0.8}/docs/examples/tutorial/external/libc_sin.py +0 -0
  477. {Cython-3.0.6 → Cython-3.0.8}/docs/examples/tutorial/external/libc_sin.pyx +0 -0
  478. {Cython-3.0.6 → Cython-3.0.8}/docs/examples/tutorial/external/py_version_hex.py +0 -0
  479. {Cython-3.0.6 → Cython-3.0.8}/docs/examples/tutorial/external/py_version_hex.pyx +0 -0
  480. {Cython-3.0.6 → Cython-3.0.8}/docs/examples/tutorial/external/setup.py +0 -0
  481. {Cython-3.0.6 → Cython-3.0.8}/docs/examples/tutorial/external/strstr.pxd +0 -0
  482. {Cython-3.0.6 → Cython-3.0.8}/docs/examples/tutorial/memory_allocation/malloc.py +0 -0
  483. {Cython-3.0.6 → Cython-3.0.8}/docs/examples/tutorial/memory_allocation/malloc.pyx +0 -0
  484. {Cython-3.0.6 → Cython-3.0.8}/docs/examples/tutorial/memory_allocation/some_memory.py +0 -0
  485. {Cython-3.0.6 → Cython-3.0.8}/docs/examples/tutorial/memory_allocation/some_memory.pyx +0 -0
  486. {Cython-3.0.6 → Cython-3.0.8}/docs/examples/tutorial/numpy/convolve2.pyx +0 -0
  487. {Cython-3.0.6 → Cython-3.0.8}/docs/examples/tutorial/numpy/convolve_py.py +0 -0
  488. {Cython-3.0.6 → Cython-3.0.8}/docs/examples/tutorial/parallelization/manual_work.py +0 -0
  489. {Cython-3.0.6 → Cython-3.0.8}/docs/examples/tutorial/parallelization/manual_work.pyx +0 -0
  490. {Cython-3.0.6 → Cython-3.0.8}/docs/examples/tutorial/parallelization/median.py +0 -0
  491. {Cython-3.0.6 → Cython-3.0.8}/docs/examples/tutorial/parallelization/median.pyx +0 -0
  492. {Cython-3.0.6 → Cython-3.0.8}/docs/examples/tutorial/parallelization/norm.py +0 -0
  493. {Cython-3.0.6 → Cython-3.0.8}/docs/examples/tutorial/parallelization/norm.pyx +0 -0
  494. {Cython-3.0.6 → Cython-3.0.8}/docs/examples/tutorial/parallelization/normalize.py +0 -0
  495. {Cython-3.0.6 → Cython-3.0.8}/docs/examples/tutorial/parallelization/normalize.pyx +0 -0
  496. {Cython-3.0.6 → Cython-3.0.8}/docs/examples/tutorial/parallelization/parallel_sin.py +0 -0
  497. {Cython-3.0.6 → Cython-3.0.8}/docs/examples/tutorial/parallelization/parallel_sin.pyx +0 -0
  498. {Cython-3.0.6 → Cython-3.0.8}/docs/examples/tutorial/parallelization/setup.py +0 -0
  499. {Cython-3.0.6 → Cython-3.0.8}/docs/examples/tutorial/profiling_tutorial/calc_pi.py +0 -0
  500. {Cython-3.0.6 → Cython-3.0.8}/docs/examples/tutorial/profiling_tutorial/calc_pi_2.py +0 -0
  501. {Cython-3.0.6 → Cython-3.0.8}/docs/examples/tutorial/profiling_tutorial/calc_pi_2.pyx +0 -0
  502. {Cython-3.0.6 → Cython-3.0.8}/docs/examples/tutorial/profiling_tutorial/calc_pi_3.py +0 -0
  503. {Cython-3.0.6 → Cython-3.0.8}/docs/examples/tutorial/profiling_tutorial/calc_pi_3.pyx +0 -0
  504. {Cython-3.0.6 → Cython-3.0.8}/docs/examples/tutorial/profiling_tutorial/calc_pi_4.py +0 -0
  505. {Cython-3.0.6 → Cython-3.0.8}/docs/examples/tutorial/profiling_tutorial/calc_pi_4.pyx +0 -0
  506. {Cython-3.0.6 → Cython-3.0.8}/docs/examples/tutorial/profiling_tutorial/often_called.py +0 -0
  507. {Cython-3.0.6 → Cython-3.0.8}/docs/examples/tutorial/profiling_tutorial/often_called.pyx +0 -0
  508. {Cython-3.0.6 → Cython-3.0.8}/docs/examples/tutorial/profiling_tutorial/profile.py +0 -0
  509. {Cython-3.0.6 → Cython-3.0.8}/docs/examples/tutorial/profiling_tutorial/profile_2.py +0 -0
  510. {Cython-3.0.6 → Cython-3.0.8}/docs/examples/tutorial/pure/A.pxd +0 -0
  511. {Cython-3.0.6 → Cython-3.0.8}/docs/examples/tutorial/pure/A.py +0 -0
  512. {Cython-3.0.6 → Cython-3.0.8}/docs/examples/tutorial/pure/A_equivalent.pyx +0 -0
  513. {Cython-3.0.6 → Cython-3.0.8}/docs/examples/tutorial/pure/annotations.py +0 -0
  514. {Cython-3.0.6 → Cython-3.0.8}/docs/examples/tutorial/pure/c_arrays.py +0 -0
  515. {Cython-3.0.6 → Cython-3.0.8}/docs/examples/tutorial/pure/cclass.py +0 -0
  516. {Cython-3.0.6 → Cython-3.0.8}/docs/examples/tutorial/pure/compiled_switch.py +0 -0
  517. {Cython-3.0.6 → Cython-3.0.8}/docs/examples/tutorial/pure/cython_declare.py +0 -0
  518. {Cython-3.0.6 → Cython-3.0.8}/docs/examples/tutorial/pure/cython_declare2.py +0 -0
  519. {Cython-3.0.6 → Cython-3.0.8}/docs/examples/tutorial/pure/disabled_annotations.py +0 -0
  520. {Cython-3.0.6 → Cython-3.0.8}/docs/examples/tutorial/pure/dostuff.pxd +0 -0
  521. {Cython-3.0.6 → Cython-3.0.8}/docs/examples/tutorial/pure/dostuff.py +0 -0
  522. {Cython-3.0.6 → Cython-3.0.8}/docs/examples/tutorial/pure/exceptval.py +0 -0
  523. {Cython-3.0.6 → Cython-3.0.8}/docs/examples/tutorial/pure/locals.py +0 -0
  524. {Cython-3.0.6 → Cython-3.0.8}/docs/examples/tutorial/pure/mymodule.pxd +0 -0
  525. {Cython-3.0.6 → Cython-3.0.8}/docs/examples/tutorial/pure/mymodule.py +0 -0
  526. {Cython-3.0.6 → Cython-3.0.8}/docs/examples/tutorial/pure/pep_526.py +0 -0
  527. {Cython-3.0.6 → Cython-3.0.8}/docs/examples/tutorial/pure/py_cimport.py +0 -0
  528. {Cython-3.0.6 → Cython-3.0.8}/docs/examples/tutorial/pxd_files/cmath.pxd +0 -0
  529. {Cython-3.0.6 → Cython-3.0.8}/docs/examples/tutorial/pxd_files/inline.pxd +0 -0
  530. {Cython-3.0.6 → Cython-3.0.8}/docs/examples/tutorial/pxd_files/integrate.py +0 -0
  531. {Cython-3.0.6 → Cython-3.0.8}/docs/examples/tutorial/pxd_files/integrate.pyx +0 -0
  532. {Cython-3.0.6 → Cython-3.0.8}/docs/examples/tutorial/string/api_func.pyx +0 -0
  533. {Cython-3.0.6 → Cython-3.0.8}/docs/examples/tutorial/string/arg_memview.pyx +0 -0
  534. {Cython-3.0.6 → Cython-3.0.8}/docs/examples/tutorial/string/auto_conversion_1.pyx +0 -0
  535. {Cython-3.0.6 → Cython-3.0.8}/docs/examples/tutorial/string/auto_conversion_2.pyx +0 -0
  536. {Cython-3.0.6 → Cython-3.0.8}/docs/examples/tutorial/string/auto_conversion_3.pyx +0 -0
  537. {Cython-3.0.6 → Cython-3.0.8}/docs/examples/tutorial/string/c_func.pxd +0 -0
  538. {Cython-3.0.6 → Cython-3.0.8}/docs/examples/tutorial/string/c_func.pyx +0 -0
  539. {Cython-3.0.6 → Cython-3.0.8}/docs/examples/tutorial/string/const.pyx +0 -0
  540. {Cython-3.0.6 → Cython-3.0.8}/docs/examples/tutorial/string/cpp_string.pyx +0 -0
  541. {Cython-3.0.6 → Cython-3.0.8}/docs/examples/tutorial/string/decode.pyx +0 -0
  542. {Cython-3.0.6 → Cython-3.0.8}/docs/examples/tutorial/string/decode_cpp_string.pyx +0 -0
  543. {Cython-3.0.6 → Cython-3.0.8}/docs/examples/tutorial/string/for_bytes.pyx +0 -0
  544. {Cython-3.0.6 → Cython-3.0.8}/docs/examples/tutorial/string/for_char.pyx +0 -0
  545. {Cython-3.0.6 → Cython-3.0.8}/docs/examples/tutorial/string/for_unicode.pyx +0 -0
  546. {Cython-3.0.6 → Cython-3.0.8}/docs/examples/tutorial/string/if_char_in.pyx +0 -0
  547. {Cython-3.0.6 → Cython-3.0.8}/docs/examples/tutorial/string/naive_decode.pyx +0 -0
  548. {Cython-3.0.6 → Cython-3.0.8}/docs/examples/tutorial/string/return_memview.pyx +0 -0
  549. {Cython-3.0.6 → Cython-3.0.8}/docs/examples/tutorial/string/slicing_c_string.pyx +0 -0
  550. {Cython-3.0.6 → Cython-3.0.8}/docs/examples/tutorial/string/someheader.h +0 -0
  551. {Cython-3.0.6 → Cython-3.0.8}/docs/examples/tutorial/string/to_char.pyx +0 -0
  552. {Cython-3.0.6 → Cython-3.0.8}/docs/examples/tutorial/string/to_unicode.pxd +0 -0
  553. {Cython-3.0.6 → Cython-3.0.8}/docs/examples/tutorial/string/to_unicode.pyx +0 -0
  554. {Cython-3.0.6 → Cython-3.0.8}/docs/examples/tutorial/string/try_finally.pyx +0 -0
  555. {Cython-3.0.6 → Cython-3.0.8}/docs/examples/tutorial/string/utf_eight.pyx +0 -0
  556. {Cython-3.0.6 → Cython-3.0.8}/docs/examples/userguide/buffer/matrix.py +0 -0
  557. {Cython-3.0.6 → Cython-3.0.8}/docs/examples/userguide/buffer/matrix.pyx +0 -0
  558. {Cython-3.0.6 → Cython-3.0.8}/docs/examples/userguide/buffer/matrix_with_buffer.py +0 -0
  559. {Cython-3.0.6 → Cython-3.0.8}/docs/examples/userguide/buffer/matrix_with_buffer.pyx +0 -0
  560. {Cython-3.0.6 → Cython-3.0.8}/docs/examples/userguide/buffer/view_count.py +0 -0
  561. {Cython-3.0.6 → Cython-3.0.8}/docs/examples/userguide/buffer/view_count.pyx +0 -0
  562. {Cython-3.0.6 → Cython-3.0.8}/docs/examples/userguide/early_binding_for_speed/rectangle.py +0 -0
  563. {Cython-3.0.6 → Cython-3.0.8}/docs/examples/userguide/early_binding_for_speed/rectangle.pyx +0 -0
  564. {Cython-3.0.6 → Cython-3.0.8}/docs/examples/userguide/early_binding_for_speed/rectangle_cdef.py +0 -0
  565. {Cython-3.0.6 → Cython-3.0.8}/docs/examples/userguide/early_binding_for_speed/rectangle_cdef.pyx +0 -0
  566. {Cython-3.0.6 → Cython-3.0.8}/docs/examples/userguide/early_binding_for_speed/rectangle_cpdef.py +0 -0
  567. {Cython-3.0.6 → Cython-3.0.8}/docs/examples/userguide/early_binding_for_speed/rectangle_cpdef.pyx +0 -0
  568. {Cython-3.0.6 → Cython-3.0.8}/docs/examples/userguide/extension_types/c_property.pyx +0 -0
  569. {Cython-3.0.6 → Cython-3.0.8}/docs/examples/userguide/extension_types/cheesy.py +0 -0
  570. {Cython-3.0.6 → Cython-3.0.8}/docs/examples/userguide/extension_types/cheesy.pyx +0 -0
  571. {Cython-3.0.6 → Cython-3.0.8}/docs/examples/userguide/extension_types/dataclass.py +0 -0
  572. {Cython-3.0.6 → Cython-3.0.8}/docs/examples/userguide/extension_types/dataclass.pyx +0 -0
  573. {Cython-3.0.6 → Cython-3.0.8}/docs/examples/userguide/extension_types/dict_animal.py +0 -0
  574. {Cython-3.0.6 → Cython-3.0.8}/docs/examples/userguide/extension_types/dict_animal.pyx +0 -0
  575. {Cython-3.0.6 → Cython-3.0.8}/docs/examples/userguide/extension_types/extendable_animal.py +0 -0
  576. {Cython-3.0.6 → Cython-3.0.8}/docs/examples/userguide/extension_types/extendable_animal.pyx +0 -0
  577. {Cython-3.0.6 → Cython-3.0.8}/docs/examples/userguide/extension_types/my_module.pxd +0 -0
  578. {Cython-3.0.6 → Cython-3.0.8}/docs/examples/userguide/extension_types/my_module.pyx +0 -0
  579. {Cython-3.0.6 → Cython-3.0.8}/docs/examples/userguide/extension_types/owned_pointer.py +0 -0
  580. {Cython-3.0.6 → Cython-3.0.8}/docs/examples/userguide/extension_types/owned_pointer.pyx +0 -0
  581. {Cython-3.0.6 → Cython-3.0.8}/docs/examples/userguide/extension_types/penguin.py +0 -0
  582. {Cython-3.0.6 → Cython-3.0.8}/docs/examples/userguide/extension_types/penguin.pyx +0 -0
  583. {Cython-3.0.6 → Cython-3.0.8}/docs/examples/userguide/extension_types/penguin2.py +0 -0
  584. {Cython-3.0.6 → Cython-3.0.8}/docs/examples/userguide/extension_types/penguin2.pyx +0 -0
  585. {Cython-3.0.6 → Cython-3.0.8}/docs/examples/userguide/extension_types/pets.py +0 -0
  586. {Cython-3.0.6 → Cython-3.0.8}/docs/examples/userguide/extension_types/pets.pyx +0 -0
  587. {Cython-3.0.6 → Cython-3.0.8}/docs/examples/userguide/extension_types/python_access.py +0 -0
  588. {Cython-3.0.6 → Cython-3.0.8}/docs/examples/userguide/extension_types/python_access.pyx +0 -0
  589. {Cython-3.0.6 → Cython-3.0.8}/docs/examples/userguide/extension_types/shrubbery.py +0 -0
  590. {Cython-3.0.6 → Cython-3.0.8}/docs/examples/userguide/extension_types/shrubbery.pyx +0 -0
  591. {Cython-3.0.6 → Cython-3.0.8}/docs/examples/userguide/extension_types/shrubbery_2.py +0 -0
  592. {Cython-3.0.6 → Cython-3.0.8}/docs/examples/userguide/extension_types/shrubbery_2.pyx +0 -0
  593. {Cython-3.0.6 → Cython-3.0.8}/docs/examples/userguide/extension_types/widen_shrubbery.py +0 -0
  594. {Cython-3.0.6 → Cython-3.0.8}/docs/examples/userguide/extension_types/widen_shrubbery.pyx +0 -0
  595. {Cython-3.0.6 → Cython-3.0.8}/docs/examples/userguide/extension_types/wrapper_class.py +0 -0
  596. {Cython-3.0.6 → Cython-3.0.8}/docs/examples/userguide/extension_types/wrapper_class.pyx +0 -0
  597. {Cython-3.0.6 → Cython-3.0.8}/docs/examples/userguide/external_C_code/delorean.pyx +0 -0
  598. {Cython-3.0.6 → Cython-3.0.8}/docs/examples/userguide/external_C_code/marty.c +0 -0
  599. {Cython-3.0.6 → Cython-3.0.8}/docs/examples/userguide/external_C_code/platform_adaptation.pyx +0 -0
  600. {Cython-3.0.6 → Cython-3.0.8}/docs/examples/userguide/external_C_code/struct_field_adaptation.h +0 -0
  601. {Cython-3.0.6 → Cython-3.0.8}/docs/examples/userguide/external_C_code/struct_field_adaptation.pyx +0 -0
  602. {Cython-3.0.6 → Cython-3.0.8}/docs/examples/userguide/external_C_code/verbatim_c_code.pyx +0 -0
  603. {Cython-3.0.6 → Cython-3.0.8}/docs/examples/userguide/fusedtypes/char_or_float.py +0 -0
  604. {Cython-3.0.6 → Cython-3.0.8}/docs/examples/userguide/fusedtypes/char_or_float.pyx +0 -0
  605. {Cython-3.0.6 → Cython-3.0.8}/docs/examples/userguide/fusedtypes/conditional_gil.py +0 -0
  606. {Cython-3.0.6 → Cython-3.0.8}/docs/examples/userguide/fusedtypes/conditional_gil.pyx +0 -0
  607. {Cython-3.0.6 → Cython-3.0.8}/docs/examples/userguide/fusedtypes/indexing.py +0 -0
  608. {Cython-3.0.6 → Cython-3.0.8}/docs/examples/userguide/fusedtypes/indexing.pyx +0 -0
  609. {Cython-3.0.6 → Cython-3.0.8}/docs/examples/userguide/fusedtypes/pointer.py +0 -0
  610. {Cython-3.0.6 → Cython-3.0.8}/docs/examples/userguide/fusedtypes/pointer.pyx +0 -0
  611. {Cython-3.0.6 → Cython-3.0.8}/docs/examples/userguide/fusedtypes/type_checking.py +0 -0
  612. {Cython-3.0.6 → Cython-3.0.8}/docs/examples/userguide/fusedtypes/type_checking.pyx +0 -0
  613. {Cython-3.0.6 → Cython-3.0.8}/docs/examples/userguide/language_basics/casting_python.pxd +0 -0
  614. {Cython-3.0.6 → Cython-3.0.8}/docs/examples/userguide/language_basics/casting_python.py +0 -0
  615. {Cython-3.0.6 → Cython-3.0.8}/docs/examples/userguide/language_basics/casting_python.pyx +0 -0
  616. {Cython-3.0.6 → Cython-3.0.8}/docs/examples/userguide/language_basics/cdef_block.pyx +0 -0
  617. {Cython-3.0.6 → Cython-3.0.8}/docs/examples/userguide/language_basics/compile_time.pyx +0 -0
  618. {Cython-3.0.6 → Cython-3.0.8}/docs/examples/userguide/language_basics/enum.pyx +0 -0
  619. {Cython-3.0.6 → Cython-3.0.8}/docs/examples/userguide/language_basics/function_pointer.pyx +0 -0
  620. {Cython-3.0.6 → Cython-3.0.8}/docs/examples/userguide/language_basics/function_pointer_struct.pyx +0 -0
  621. {Cython-3.0.6 → Cython-3.0.8}/docs/examples/userguide/language_basics/kwargs_1.pyx +0 -0
  622. {Cython-3.0.6 → Cython-3.0.8}/docs/examples/userguide/language_basics/kwargs_2.pyx +0 -0
  623. {Cython-3.0.6 → Cython-3.0.8}/docs/examples/userguide/language_basics/open_file.py +0 -0
  624. {Cython-3.0.6 → Cython-3.0.8}/docs/examples/userguide/language_basics/open_file.pyx +0 -0
  625. {Cython-3.0.6 → Cython-3.0.8}/docs/examples/userguide/language_basics/optional_subclassing.pxd +0 -0
  626. {Cython-3.0.6 → Cython-3.0.8}/docs/examples/userguide/language_basics/optional_subclassing.py +0 -0
  627. {Cython-3.0.6 → Cython-3.0.8}/docs/examples/userguide/language_basics/optional_subclassing.pyx +0 -0
  628. {Cython-3.0.6 → Cython-3.0.8}/docs/examples/userguide/language_basics/override.py +0 -0
  629. {Cython-3.0.6 → Cython-3.0.8}/docs/examples/userguide/language_basics/override.pyx +0 -0
  630. {Cython-3.0.6 → Cython-3.0.8}/docs/examples/userguide/language_basics/parameter_refcount.py +0 -0
  631. {Cython-3.0.6 → Cython-3.0.8}/docs/examples/userguide/language_basics/parameter_refcount.pyx +0 -0
  632. {Cython-3.0.6 → Cython-3.0.8}/docs/examples/userguide/language_basics/struct.py +0 -0
  633. {Cython-3.0.6 → Cython-3.0.8}/docs/examples/userguide/language_basics/struct.pyx +0 -0
  634. {Cython-3.0.6 → Cython-3.0.8}/docs/examples/userguide/language_basics/union.py +0 -0
  635. {Cython-3.0.6 → Cython-3.0.8}/docs/examples/userguide/language_basics/union.pyx +0 -0
  636. {Cython-3.0.6 → Cython-3.0.8}/docs/examples/userguide/memoryviews/C_func_file.c +0 -0
  637. {Cython-3.0.6 → Cython-3.0.8}/docs/examples/userguide/memoryviews/C_func_file.h +0 -0
  638. {Cython-3.0.6 → Cython-3.0.8}/docs/examples/userguide/memoryviews/add_one.py +0 -0
  639. {Cython-3.0.6 → Cython-3.0.8}/docs/examples/userguide/memoryviews/add_one.pyx +0 -0
  640. {Cython-3.0.6 → Cython-3.0.8}/docs/examples/userguide/memoryviews/copy.py +0 -0
  641. {Cython-3.0.6 → Cython-3.0.8}/docs/examples/userguide/memoryviews/copy.pyx +0 -0
  642. {Cython-3.0.6 → Cython-3.0.8}/docs/examples/userguide/memoryviews/cpython_array.py +0 -0
  643. {Cython-3.0.6 → Cython-3.0.8}/docs/examples/userguide/memoryviews/cpython_array.pyx +0 -0
  644. {Cython-3.0.6 → Cython-3.0.8}/docs/examples/userguide/memoryviews/custom_dtype.pyx +0 -0
  645. {Cython-3.0.6 → Cython-3.0.8}/docs/examples/userguide/memoryviews/cython_array.py +0 -0
  646. {Cython-3.0.6 → Cython-3.0.8}/docs/examples/userguide/memoryviews/cython_array.pyx +0 -0
  647. {Cython-3.0.6 → Cython-3.0.8}/docs/examples/userguide/memoryviews/memory_layout.py +0 -0
  648. {Cython-3.0.6 → Cython-3.0.8}/docs/examples/userguide/memoryviews/memory_layout.pyx +0 -0
  649. {Cython-3.0.6 → Cython-3.0.8}/docs/examples/userguide/memoryviews/memory_layout_2.py +0 -0
  650. {Cython-3.0.6 → Cython-3.0.8}/docs/examples/userguide/memoryviews/memory_layout_2.pyx +0 -0
  651. {Cython-3.0.6 → Cython-3.0.8}/docs/examples/userguide/memoryviews/memview_to_c.pxd +0 -0
  652. {Cython-3.0.6 → Cython-3.0.8}/docs/examples/userguide/memoryviews/memview_to_c.py +0 -0
  653. {Cython-3.0.6 → Cython-3.0.8}/docs/examples/userguide/memoryviews/memview_to_c.pyx +0 -0
  654. {Cython-3.0.6 → Cython-3.0.8}/docs/examples/userguide/memoryviews/not_none.py +0 -0
  655. {Cython-3.0.6 → Cython-3.0.8}/docs/examples/userguide/memoryviews/not_none.pyx +0 -0
  656. {Cython-3.0.6 → Cython-3.0.8}/docs/examples/userguide/memoryviews/np_flag_const.pyx +0 -0
  657. {Cython-3.0.6 → Cython-3.0.8}/docs/examples/userguide/memoryviews/old_sum3d.pyx +0 -0
  658. {Cython-3.0.6 → Cython-3.0.8}/docs/examples/userguide/memoryviews/quickstart.py +0 -0
  659. {Cython-3.0.6 → Cython-3.0.8}/docs/examples/userguide/memoryviews/quickstart.pyx +0 -0
  660. {Cython-3.0.6 → Cython-3.0.8}/docs/examples/userguide/memoryviews/slicing.py +0 -0
  661. {Cython-3.0.6 → Cython-3.0.8}/docs/examples/userguide/memoryviews/slicing.pyx +0 -0
  662. {Cython-3.0.6 → Cython-3.0.8}/docs/examples/userguide/memoryviews/transpose.py +0 -0
  663. {Cython-3.0.6 → Cython-3.0.8}/docs/examples/userguide/memoryviews/transpose.pyx +0 -0
  664. {Cython-3.0.6 → Cython-3.0.8}/docs/examples/userguide/memoryviews/view_string.pyx +0 -0
  665. {Cython-3.0.6 → Cython-3.0.8}/docs/examples/userguide/numpy_tutorial/compute_fused_types.pyx +0 -0
  666. {Cython-3.0.6 → Cython-3.0.8}/docs/examples/userguide/numpy_tutorial/compute_infer_types.pyx +0 -0
  667. {Cython-3.0.6 → Cython-3.0.8}/docs/examples/userguide/numpy_tutorial/compute_memview.pyx +0 -0
  668. {Cython-3.0.6 → Cython-3.0.8}/docs/examples/userguide/numpy_tutorial/compute_prange.pyx +0 -0
  669. {Cython-3.0.6 → Cython-3.0.8}/docs/examples/userguide/numpy_tutorial/compute_py.py +0 -0
  670. {Cython-3.0.6 → Cython-3.0.8}/docs/examples/userguide/numpy_tutorial/compute_typed.pyx +0 -0
  671. {Cython-3.0.6 → Cython-3.0.8}/docs/examples/userguide/numpy_tutorial/numpy_and_cython.ipynb +0 -0
  672. {Cython-3.0.6 → Cython-3.0.8}/docs/examples/userguide/numpy_ufuncs/ufunc.py +0 -0
  673. {Cython-3.0.6 → Cython-3.0.8}/docs/examples/userguide/numpy_ufuncs/ufunc.pyx +0 -0
  674. {Cython-3.0.6 → Cython-3.0.8}/docs/examples/userguide/numpy_ufuncs/ufunc_ctuple.py +0 -0
  675. {Cython-3.0.6 → Cython-3.0.8}/docs/examples/userguide/numpy_ufuncs/ufunc_ctuple.pyx +0 -0
  676. {Cython-3.0.6 → Cython-3.0.8}/docs/examples/userguide/numpy_ufuncs/ufunc_fused.py +0 -0
  677. {Cython-3.0.6 → Cython-3.0.8}/docs/examples/userguide/numpy_ufuncs/ufunc_fused.pyx +0 -0
  678. {Cython-3.0.6 → Cython-3.0.8}/docs/examples/userguide/parallelism/breaking_loop.py +0 -0
  679. {Cython-3.0.6 → Cython-3.0.8}/docs/examples/userguide/parallelism/breaking_loop.pyx +0 -0
  680. {Cython-3.0.6 → Cython-3.0.8}/docs/examples/userguide/parallelism/cimport_openmp.py +0 -0
  681. {Cython-3.0.6 → Cython-3.0.8}/docs/examples/userguide/parallelism/cimport_openmp.pyx +0 -0
  682. {Cython-3.0.6 → Cython-3.0.8}/docs/examples/userguide/parallelism/memoryview_sum.py +0 -0
  683. {Cython-3.0.6 → Cython-3.0.8}/docs/examples/userguide/parallelism/memoryview_sum.pyx +0 -0
  684. {Cython-3.0.6 → Cython-3.0.8}/docs/examples/userguide/parallelism/parallel.py +0 -0
  685. {Cython-3.0.6 → Cython-3.0.8}/docs/examples/userguide/parallelism/parallel.pyx +0 -0
  686. {Cython-3.0.6 → Cython-3.0.8}/docs/examples/userguide/parallelism/setup_py.py +0 -0
  687. {Cython-3.0.6 → Cython-3.0.8}/docs/examples/userguide/parallelism/setup_pyx.py +0 -0
  688. {Cython-3.0.6 → Cython-3.0.8}/docs/examples/userguide/parallelism/simple_sum.py +0 -0
  689. {Cython-3.0.6 → Cython-3.0.8}/docs/examples/userguide/parallelism/simple_sum.pyx +0 -0
  690. {Cython-3.0.6 → Cython-3.0.8}/docs/examples/userguide/sharing_declarations/c_lunch.pxd +0 -0
  691. {Cython-3.0.6 → Cython-3.0.8}/docs/examples/userguide/sharing_declarations/dishes.pxd +0 -0
  692. {Cython-3.0.6 → Cython-3.0.8}/docs/examples/userguide/sharing_declarations/landscaping.py +0 -0
  693. {Cython-3.0.6 → Cython-3.0.8}/docs/examples/userguide/sharing_declarations/landscaping.pyx +0 -0
  694. {Cython-3.0.6 → Cython-3.0.8}/docs/examples/userguide/sharing_declarations/lunch.h +0 -0
  695. {Cython-3.0.6 → Cython-3.0.8}/docs/examples/userguide/sharing_declarations/lunch.py +0 -0
  696. {Cython-3.0.6 → Cython-3.0.8}/docs/examples/userguide/sharing_declarations/lunch.pyx +0 -0
  697. {Cython-3.0.6 → Cython-3.0.8}/docs/examples/userguide/sharing_declarations/restaurant.py +0 -0
  698. {Cython-3.0.6 → Cython-3.0.8}/docs/examples/userguide/sharing_declarations/restaurant.pyx +0 -0
  699. {Cython-3.0.6 → Cython-3.0.8}/docs/examples/userguide/sharing_declarations/setup_py.py +0 -0
  700. {Cython-3.0.6 → Cython-3.0.8}/docs/examples/userguide/sharing_declarations/setup_pyx.py +0 -0
  701. {Cython-3.0.6 → Cython-3.0.8}/docs/examples/userguide/sharing_declarations/shrubbing.pxd +0 -0
  702. {Cython-3.0.6 → Cython-3.0.8}/docs/examples/userguide/sharing_declarations/shrubbing.py +0 -0
  703. {Cython-3.0.6 → Cython-3.0.8}/docs/examples/userguide/sharing_declarations/shrubbing.pyx +0 -0
  704. {Cython-3.0.6 → Cython-3.0.8}/docs/examples/userguide/sharing_declarations/spammery.py +0 -0
  705. {Cython-3.0.6 → Cython-3.0.8}/docs/examples/userguide/sharing_declarations/spammery.pyx +0 -0
  706. {Cython-3.0.6 → Cython-3.0.8}/docs/examples/userguide/sharing_declarations/volume.pxd +0 -0
  707. {Cython-3.0.6 → Cython-3.0.8}/docs/examples/userguide/sharing_declarations/volume.py +0 -0
  708. {Cython-3.0.6 → Cython-3.0.8}/docs/examples/userguide/sharing_declarations/volume.pyx +0 -0
  709. {Cython-3.0.6 → Cython-3.0.8}/docs/examples/userguide/special_methods/total_ordering.py +0 -0
  710. {Cython-3.0.6 → Cython-3.0.8}/docs/examples/userguide/special_methods/total_ordering.pyx +0 -0
  711. {Cython-3.0.6 → Cython-3.0.8}/docs/examples/userguide/wrapping_CPlusPlus/Rectangle.cpp +0 -0
  712. {Cython-3.0.6 → Cython-3.0.8}/docs/examples/userguide/wrapping_CPlusPlus/Rectangle.h +0 -0
  713. {Cython-3.0.6 → Cython-3.0.8}/docs/examples/userguide/wrapping_CPlusPlus/Rectangle.pxd +0 -0
  714. {Cython-3.0.6 → Cython-3.0.8}/docs/examples/userguide/wrapping_CPlusPlus/cython_usage.pyx +0 -0
  715. {Cython-3.0.6 → Cython-3.0.8}/docs/examples/userguide/wrapping_CPlusPlus/function_templates.pyx +0 -0
  716. {Cython-3.0.6 → Cython-3.0.8}/docs/examples/userguide/wrapping_CPlusPlus/iterate.pyx +0 -0
  717. {Cython-3.0.6 → Cython-3.0.8}/docs/examples/userguide/wrapping_CPlusPlus/nested_class.pyx +0 -0
  718. {Cython-3.0.6 → Cython-3.0.8}/docs/examples/userguide/wrapping_CPlusPlus/python_to_cpp.pyx +0 -0
  719. {Cython-3.0.6 → Cython-3.0.8}/docs/examples/userguide/wrapping_CPlusPlus/rect.pyx +0 -0
  720. {Cython-3.0.6 → Cython-3.0.8}/docs/examples/userguide/wrapping_CPlusPlus/rect_ptr.pyx +0 -0
  721. {Cython-3.0.6 → Cython-3.0.8}/docs/examples/userguide/wrapping_CPlusPlus/rect_with_attributes.pyx +0 -0
  722. {Cython-3.0.6 → Cython-3.0.8}/docs/examples/userguide/wrapping_CPlusPlus/setup.py +0 -0
  723. {Cython-3.0.6 → Cython-3.0.8}/docs/examples/userguide/wrapping_CPlusPlus/templates.pyx +0 -0
  724. {Cython-3.0.6 → Cython-3.0.8}/docs/examples/userguide/wrapping_CPlusPlus/vector_demo.pyx +0 -0
  725. {Cython-3.0.6 → Cython-3.0.8}/docs/examples/userguide/wrapping_CPlusPlus/wrapper_vector.pyx +0 -0
  726. {Cython-3.0.6 → Cython-3.0.8}/docs/index.rst +0 -0
  727. {Cython-3.0.6 → Cython-3.0.8}/docs/make.bat +0 -0
  728. {Cython-3.0.6 → Cython-3.0.8}/docs/src/changes.rst +0 -0
  729. {Cython-3.0.6 → Cython-3.0.8}/docs/src/cimport-warning +0 -0
  730. {Cython-3.0.6 → Cython-3.0.8}/docs/src/donating.rst +0 -0
  731. {Cython-3.0.6 → Cython-3.0.8}/docs/src/quickstart/build.rst +0 -0
  732. {Cython-3.0.6 → Cython-3.0.8}/docs/src/quickstart/cython_in_jupyter.ipynb +0 -0
  733. {Cython-3.0.6 → Cython-3.0.8}/docs/src/quickstart/cythonize.rst +0 -0
  734. {Cython-3.0.6 → Cython-3.0.8}/docs/src/quickstart/demo.pyx +0 -0
  735. {Cython-3.0.6 → Cython-3.0.8}/docs/src/quickstart/htmlreport_py.png +0 -0
  736. {Cython-3.0.6 → Cython-3.0.8}/docs/src/quickstart/htmlreport_pyx.png +0 -0
  737. {Cython-3.0.6 → Cython-3.0.8}/docs/src/quickstart/index.rst +0 -0
  738. {Cython-3.0.6 → Cython-3.0.8}/docs/src/quickstart/install.rst +0 -0
  739. {Cython-3.0.6 → Cython-3.0.8}/docs/src/quickstart/jupyter.png +0 -0
  740. {Cython-3.0.6 → Cython-3.0.8}/docs/src/quickstart/overview.rst +0 -0
  741. {Cython-3.0.6 → Cython-3.0.8}/docs/src/quickstart/sage.png +0 -0
  742. {Cython-3.0.6 → Cython-3.0.8}/docs/src/reference/compilation.rst +0 -0
  743. {Cython-3.0.6 → Cython-3.0.8}/docs/src/reference/directives.rst +0 -0
  744. {Cython-3.0.6 → Cython-3.0.8}/docs/src/reference/extension_types.rst +0 -0
  745. {Cython-3.0.6 → Cython-3.0.8}/docs/src/reference/index.rst +0 -0
  746. {Cython-3.0.6 → Cython-3.0.8}/docs/src/reference/interfacing_with_other_code.rst +0 -0
  747. {Cython-3.0.6 → Cython-3.0.8}/docs/src/reference/language_basics.rst +0 -0
  748. {Cython-3.0.6 → Cython-3.0.8}/docs/src/reference/limitations.rst +0 -0
  749. {Cython-3.0.6 → Cython-3.0.8}/docs/src/reference/special_mention.rst +0 -0
  750. {Cython-3.0.6 → Cython-3.0.8}/docs/src/reference/special_methods_table.rst +0 -0
  751. {Cython-3.0.6 → Cython-3.0.8}/docs/src/tutorial/annotation_typing_table.csv +0 -0
  752. {Cython-3.0.6 → Cython-3.0.8}/docs/src/tutorial/appendix.rst +0 -0
  753. {Cython-3.0.6 → Cython-3.0.8}/docs/src/tutorial/array.rst +0 -0
  754. {Cython-3.0.6 → Cython-3.0.8}/docs/src/tutorial/caveats.rst +0 -0
  755. {Cython-3.0.6 → Cython-3.0.8}/docs/src/tutorial/cdef_classes.rst +0 -0
  756. {Cython-3.0.6 → Cython-3.0.8}/docs/src/tutorial/clibraries.rst +0 -0
  757. {Cython-3.0.6 → Cython-3.0.8}/docs/src/tutorial/cython_tutorial.rst +0 -0
  758. {Cython-3.0.6 → Cython-3.0.8}/docs/src/tutorial/data.py +0 -0
  759. {Cython-3.0.6 → Cython-3.0.8}/docs/src/tutorial/embedding.rst +0 -0
  760. {Cython-3.0.6 → Cython-3.0.8}/docs/src/tutorial/external.rst +0 -0
  761. {Cython-3.0.6 → Cython-3.0.8}/docs/src/tutorial/htmlreport_py.png +0 -0
  762. {Cython-3.0.6 → Cython-3.0.8}/docs/src/tutorial/htmlreport_pyx.png +0 -0
  763. {Cython-3.0.6 → Cython-3.0.8}/docs/src/tutorial/index.rst +0 -0
  764. {Cython-3.0.6 → Cython-3.0.8}/docs/src/tutorial/memory_allocation.rst +0 -0
  765. {Cython-3.0.6 → Cython-3.0.8}/docs/src/tutorial/numpy.rst +0 -0
  766. {Cython-3.0.6 → Cython-3.0.8}/docs/src/tutorial/parallelization.rst +0 -0
  767. {Cython-3.0.6 → Cython-3.0.8}/docs/src/tutorial/profiling_tutorial.rst +0 -0
  768. {Cython-3.0.6 → Cython-3.0.8}/docs/src/tutorial/pxd_files.rst +0 -0
  769. {Cython-3.0.6 → Cython-3.0.8}/docs/src/tutorial/python_division.png +0 -0
  770. {Cython-3.0.6 → Cython-3.0.8}/docs/src/tutorial/readings.rst +0 -0
  771. {Cython-3.0.6 → Cython-3.0.8}/docs/src/tutorial/related_work.rst +0 -0
  772. {Cython-3.0.6 → Cython-3.0.8}/docs/src/tutorial/strings.rst +0 -0
  773. {Cython-3.0.6 → Cython-3.0.8}/docs/src/two-syntax-variants-used +0 -0
  774. {Cython-3.0.6 → Cython-3.0.8}/docs/src/userguide/buffer.rst +0 -0
  775. {Cython-3.0.6 → Cython-3.0.8}/docs/src/userguide/compute_typed_html.jpg +0 -0
  776. {Cython-3.0.6 → Cython-3.0.8}/docs/src/userguide/cpow_table.csv +0 -0
  777. {Cython-3.0.6 → Cython-3.0.8}/docs/src/userguide/debugging.rst +0 -0
  778. {Cython-3.0.6 → Cython-3.0.8}/docs/src/userguide/early_binding_for_speed.rst +0 -0
  779. {Cython-3.0.6 → Cython-3.0.8}/docs/src/userguide/extension_types.rst +0 -0
  780. {Cython-3.0.6 → Cython-3.0.8}/docs/src/userguide/external_C_code.rst +0 -0
  781. {Cython-3.0.6 → Cython-3.0.8}/docs/src/userguide/faq.rst +0 -0
  782. {Cython-3.0.6 → Cython-3.0.8}/docs/src/userguide/fusedtypes.rst +0 -0
  783. {Cython-3.0.6 → Cython-3.0.8}/docs/src/userguide/glossary.rst +0 -0
  784. {Cython-3.0.6 → Cython-3.0.8}/docs/src/userguide/index.rst +0 -0
  785. {Cython-3.0.6 → Cython-3.0.8}/docs/src/userguide/language_basics.rst +0 -0
  786. {Cython-3.0.6 → Cython-3.0.8}/docs/src/userguide/limitations.rst +0 -0
  787. {Cython-3.0.6 → Cython-3.0.8}/docs/src/userguide/memoryviews.rst +0 -0
  788. {Cython-3.0.6 → Cython-3.0.8}/docs/src/userguide/migrating_to_cy30.rst +0 -0
  789. {Cython-3.0.6 → Cython-3.0.8}/docs/src/userguide/nogil.rst +0 -0
  790. {Cython-3.0.6 → Cython-3.0.8}/docs/src/userguide/numpy_pythran.rst +0 -0
  791. {Cython-3.0.6 → Cython-3.0.8}/docs/src/userguide/numpy_tutorial.rst +0 -0
  792. {Cython-3.0.6 → Cython-3.0.8}/docs/src/userguide/numpy_ufuncs.rst +0 -0
  793. {Cython-3.0.6 → Cython-3.0.8}/docs/src/userguide/parallelism.rst +0 -0
  794. {Cython-3.0.6 → Cython-3.0.8}/docs/src/userguide/pypy.rst +0 -0
  795. {Cython-3.0.6 → Cython-3.0.8}/docs/src/userguide/pyrex_differences.rst +0 -0
  796. {Cython-3.0.6 → Cython-3.0.8}/docs/src/userguide/sharing_declarations.rst +0 -0
  797. {Cython-3.0.6 → Cython-3.0.8}/docs/src/userguide/source_files_and_compilation.rst +0 -0
  798. {Cython-3.0.6 → Cython-3.0.8}/docs/src/userguide/special_methods.rst +0 -0
  799. {Cython-3.0.6 → Cython-3.0.8}/docs/src/userguide/troubleshooting.rst +0 -0
  800. {Cython-3.0.6 → Cython-3.0.8}/docs/src/userguide/wrapping_CPlusPlus.rst +0 -0
  801. {Cython-3.0.6 → Cython-3.0.8}/pylintrc +0 -0
  802. {Cython-3.0.6 → Cython-3.0.8}/pyximport/PKG-INFO +0 -0
  803. {Cython-3.0.6 → Cython-3.0.8}/pyximport/__init__.py +0 -0
  804. {Cython-3.0.6 → Cython-3.0.8}/pyximport/_pyximport2.py +0 -0
  805. {Cython-3.0.6 → Cython-3.0.8}/pyximport/_pyximport3.py +0 -0
  806. {Cython-3.0.6 → Cython-3.0.8}/pyximport/pyxbuild.py +0 -0
  807. {Cython-3.0.6 → Cython-3.0.8}/pyximport/pyximport.py +0 -0
  808. {Cython-3.0.6 → Cython-3.0.8}/pyximport/test/test_pyximport.py +0 -0
  809. {Cython-3.0.6 → Cython-3.0.8}/pyximport/test/test_reload.py +0 -0
  810. {Cython-3.0.6 → Cython-3.0.8}/runtests.py +0 -0
  811. {Cython-3.0.6 → Cython-3.0.8}/setup.cfg +0 -0
  812. {Cython-3.0.6 → Cython-3.0.8}/setup.py +0 -0
  813. {Cython-3.0.6 → Cython-3.0.8}/setupegg.py +0 -0
  814. {Cython-3.0.6 → Cython-3.0.8}/test-requirements-27.txt +0 -0
  815. {Cython-3.0.6 → Cython-3.0.8}/test-requirements-312.txt +0 -0
  816. {Cython-3.0.6 → Cython-3.0.8}/test-requirements-34.txt +0 -0
  817. {Cython-3.0.6 → Cython-3.0.8}/test-requirements-36.txt +0 -0
  818. {Cython-3.0.6 → Cython-3.0.8}/test-requirements-cpython.txt +0 -0
  819. {Cython-3.0.6 → Cython-3.0.8}/test-requirements-pypy27.txt +0 -0
  820. {Cython-3.0.6 → Cython-3.0.8}/test-requirements.txt +0 -0
  821. {Cython-3.0.6 → Cython-3.0.8}/tests/broken/b_extimpinherit.pyx +0 -0
  822. {Cython-3.0.6 → Cython-3.0.8}/tests/broken/big_t.pyx +0 -0
  823. {Cython-3.0.6 → Cython-3.0.8}/tests/broken/builtinconst.pyx +0 -0
  824. {Cython-3.0.6 → Cython-3.0.8}/tests/broken/builtindict.pyx +0 -0
  825. {Cython-3.0.6 → Cython-3.0.8}/tests/broken/cascadedass.pyx +0 -0
  826. {Cython-3.0.6 → Cython-3.0.8}/tests/broken/cexportfunc.pyx +0 -0
  827. {Cython-3.0.6 → Cython-3.0.8}/tests/broken/cimport.pyx +0 -0
  828. {Cython-3.0.6 → Cython-3.0.8}/tests/broken/cimportfrom.pyx +0 -0
  829. {Cython-3.0.6 → Cython-3.0.8}/tests/broken/cimportfrompkgdir.pyx +0 -0
  830. {Cython-3.0.6 → Cython-3.0.8}/tests/broken/cimportfunc.pyx +0 -0
  831. {Cython-3.0.6 → Cython-3.0.8}/tests/broken/ctypedefextern.pyx +0 -0
  832. {Cython-3.0.6 → Cython-3.0.8}/tests/broken/externfunc.pyx +0 -0
  833. {Cython-3.0.6 → Cython-3.0.8}/tests/broken/externsue.pyx +0 -0
  834. {Cython-3.0.6 → Cython-3.0.8}/tests/broken/fwddeclcclass.pyx +0 -0
  835. {Cython-3.0.6 → Cython-3.0.8}/tests/broken/getattr.pyx +0 -0
  836. {Cython-3.0.6 → Cython-3.0.8}/tests/broken/getattr3ref.pyx +0 -0
  837. {Cython-3.0.6 → Cython-3.0.8}/tests/broken/i_public.pyx +0 -0
  838. {Cython-3.0.6 → Cython-3.0.8}/tests/broken/includepublic.pyx +0 -0
  839. {Cython-3.0.6 → Cython-3.0.8}/tests/broken/intindex.pyx +0 -0
  840. {Cython-3.0.6 → Cython-3.0.8}/tests/broken/invalid-module-name.pyx +0 -0
  841. {Cython-3.0.6 → Cython-3.0.8}/tests/broken/l_capi.pyx +0 -0
  842. {Cython-3.0.6 → Cython-3.0.8}/tests/broken/l_cfuncexport.pyx +0 -0
  843. {Cython-3.0.6 → Cython-3.0.8}/tests/broken/naanou_1.pyx +0 -0
  844. {Cython-3.0.6 → Cython-3.0.8}/tests/broken/pkg.cimport.pyx +0 -0
  845. {Cython-3.0.6 → Cython-3.0.8}/tests/broken/pkg.cimportfrom.pyx +0 -0
  846. {Cython-3.0.6 → Cython-3.0.8}/tests/broken/plex2.pyx +0 -0
  847. {Cython-3.0.6 → Cython-3.0.8}/tests/broken/r_capi.pyx +0 -0
  848. {Cython-3.0.6 → Cython-3.0.8}/tests/broken/r_cfuncimport.pyx +0 -0
  849. {Cython-3.0.6 → Cython-3.0.8}/tests/broken/r_classdoc.pyx +0 -0
  850. {Cython-3.0.6 → Cython-3.0.8}/tests/broken/r_classmodname.pyx +0 -0
  851. {Cython-3.0.6 → Cython-3.0.8}/tests/broken/r_excval.pyx +0 -0
  852. {Cython-3.0.6 → Cython-3.0.8}/tests/broken/r_extimpinherit.pyx +0 -0
  853. {Cython-3.0.6 → Cython-3.0.8}/tests/broken/r_extinherit.pyx +0 -0
  854. {Cython-3.0.6 → Cython-3.0.8}/tests/broken/r_extmember.pyx +0 -0
  855. {Cython-3.0.6 → Cython-3.0.8}/tests/broken/r_extnumeric2.pyx +0 -0
  856. {Cython-3.0.6 → Cython-3.0.8}/tests/broken/r_extproperty.pyx +0 -0
  857. {Cython-3.0.6 → Cython-3.0.8}/tests/broken/r_extweakref.pyx +0 -0
  858. {Cython-3.0.6 → Cython-3.0.8}/tests/broken/r_getattr3.pyx +0 -0
  859. {Cython-3.0.6 → Cython-3.0.8}/tests/broken/r_import.pyx +0 -0
  860. {Cython-3.0.6 → Cython-3.0.8}/tests/broken/r_inhcmethcall.pyx +0 -0
  861. {Cython-3.0.6 → Cython-3.0.8}/tests/broken/r_kwonlyargs.pyx +0 -0
  862. {Cython-3.0.6 → Cython-3.0.8}/tests/broken/r_newstyleclass.pyx +0 -0
  863. {Cython-3.0.6 → Cython-3.0.8}/tests/broken/r_simpcall.pyx +0 -0
  864. {Cython-3.0.6 → Cython-3.0.8}/tests/broken/r_tbfilename.pyx +0 -0
  865. {Cython-3.0.6 → Cython-3.0.8}/tests/broken/r_traceback.pyx +0 -0
  866. {Cython-3.0.6 → Cython-3.0.8}/tests/broken/r_unpack.pyx +0 -0
  867. {Cython-3.0.6 → Cython-3.0.8}/tests/broken/raise.pyx +0 -0
  868. {Cython-3.0.6 → Cython-3.0.8}/tests/broken/retconvert.pyx +0 -0
  869. {Cython-3.0.6 → Cython-3.0.8}/tests/broken/test_include_options.pyx +0 -0
  870. {Cython-3.0.6 → Cython-3.0.8}/tests/broken/tryexceptelse.pyx +0 -0
  871. {Cython-3.0.6 → Cython-3.0.8}/tests/broken/tslots.pyx +0 -0
  872. {Cython-3.0.6 → Cython-3.0.8}/tests/buffers/bufaccess.h +0 -0
  873. {Cython-3.0.6 → Cython-3.0.8}/tests/buffers/bufaccess.pyx +0 -0
  874. {Cython-3.0.6 → Cython-3.0.8}/tests/buffers/buffer.pyx +0 -0
  875. {Cython-3.0.6 → Cython-3.0.8}/tests/buffers/buffmt.pyx +0 -0
  876. {Cython-3.0.6 → Cython-3.0.8}/tests/buffers/mockbuffers.pxi +0 -0
  877. {Cython-3.0.6 → Cython-3.0.8}/tests/buffers/userbuffer.pyx +0 -0
  878. {Cython-3.0.6 → Cython-3.0.8}/tests/bugs.txt +0 -0
  879. {Cython-3.0.6 → Cython-3.0.8}/tests/build/basic_cythonize.srctree +0 -0
  880. {Cython-3.0.6 → Cython-3.0.8}/tests/build/basic_distutils.srctree +0 -0
  881. {Cython-3.0.6 → Cython-3.0.8}/tests/build/build_dir.srctree +0 -0
  882. {Cython-3.0.6 → Cython-3.0.8}/tests/build/build_dir_src.srctree +0 -0
  883. {Cython-3.0.6 → Cython-3.0.8}/tests/build/build_ext_cython_c_in_temp.srctree +0 -0
  884. {Cython-3.0.6 → Cython-3.0.8}/tests/build/build_ext_cython_cplus.srctree +0 -0
  885. {Cython-3.0.6 → Cython-3.0.8}/tests/build/build_ext_cython_include_dirs.srctree +0 -0
  886. {Cython-3.0.6 → Cython-3.0.8}/tests/build/common_include_dir.srctree +0 -0
  887. {Cython-3.0.6 → Cython-3.0.8}/tests/build/compile_env_distutils.srctree +0 -0
  888. {Cython-3.0.6 → Cython-3.0.8}/tests/build/cpp_cythonize.srctree +0 -0
  889. {Cython-3.0.6 → Cython-3.0.8}/tests/build/cython_language_level.srctree +0 -0
  890. {Cython-3.0.6 → Cython-3.0.8}/tests/build/cythonize_additional_sources.srctree +0 -0
  891. {Cython-3.0.6 → Cython-3.0.8}/tests/build/cythonize_additional_sources_ext.srctree +0 -0
  892. {Cython-3.0.6 → Cython-3.0.8}/tests/build/cythonize_cython.srctree +0 -0
  893. {Cython-3.0.6 → Cython-3.0.8}/tests/build/cythonize_glob.srctree +0 -0
  894. {Cython-3.0.6 → Cython-3.0.8}/tests/build/cythonize_newer_files.srctree +0 -0
  895. {Cython-3.0.6 → Cython-3.0.8}/tests/build/cythonize_options.srctree +0 -0
  896. {Cython-3.0.6 → Cython-3.0.8}/tests/build/cythonize_pep420_namespace.srctree +0 -0
  897. {Cython-3.0.6 → Cython-3.0.8}/tests/build/cythonize_rename_ext.srctree +0 -0
  898. {Cython-3.0.6 → Cython-3.0.8}/tests/build/cythonize_script.srctree +0 -0
  899. {Cython-3.0.6 → Cython-3.0.8}/tests/build/cythonize_script_excludes.srctree +0 -0
  900. {Cython-3.0.6 → Cython-3.0.8}/tests/build/cythonize_script_package.srctree +0 -0
  901. {Cython-3.0.6 → Cython-3.0.8}/tests/build/cythonize_with_annotate.srctree +0 -0
  902. {Cython-3.0.6 → Cython-3.0.8}/tests/build/cythonize_with_annotate_via_Options.srctree +0 -0
  903. {Cython-3.0.6 → Cython-3.0.8}/tests/build/cythonize_with_annotate_via_cli.srctree +0 -0
  904. {Cython-3.0.6 → Cython-3.0.8}/tests/build/depfile.srctree +0 -0
  905. {Cython-3.0.6 → Cython-3.0.8}/tests/build/depfile_numpy.srctree +0 -0
  906. {Cython-3.0.6 → Cython-3.0.8}/tests/build/depfile_package_cython.srctree +0 -0
  907. {Cython-3.0.6 → Cython-3.0.8}/tests/build/depfile_package_cythonize.srctree +0 -0
  908. {Cython-3.0.6 → Cython-3.0.8}/tests/build/dotted.filename.modules.pxd +0 -0
  909. {Cython-3.0.6 → Cython-3.0.8}/tests/build/dotted.filename.modules.pyx +0 -0
  910. {Cython-3.0.6 → Cython-3.0.8}/tests/build/inline_distutils.srctree +0 -0
  911. {Cython-3.0.6 → Cython-3.0.8}/tests/build/module_api.srctree +0 -0
  912. {Cython-3.0.6 → Cython-3.0.8}/tests/build/package_compilation.srctree +0 -0
  913. {Cython-3.0.6 → Cython-3.0.8}/tests/build/setuptools_reimport.srctree +0 -0
  914. {Cython-3.0.6 → Cython-3.0.8}/tests/compile/a/__init__.py +0 -0
  915. {Cython-3.0.6 → Cython-3.0.8}/tests/compile/a/b.pxd +0 -0
  916. {Cython-3.0.6 → Cython-3.0.8}/tests/compile/a_capi.pyx +0 -0
  917. {Cython-3.0.6 → Cython-3.0.8}/tests/compile/altet1.h +0 -0
  918. {Cython-3.0.6 → Cython-3.0.8}/tests/compile/altet1.pyx.BROKEN +0 -0
  919. {Cython-3.0.6 → Cython-3.0.8}/tests/compile/argdefault.pyx +0 -0
  920. {Cython-3.0.6 → Cython-3.0.8}/tests/compile/arrayargs.pyx +0 -0
  921. {Cython-3.0.6 → Cython-3.0.8}/tests/compile/arrayptrcompat.pyx +0 -0
  922. {Cython-3.0.6 → Cython-3.0.8}/tests/compile/arraytoptrarg.pyx +0 -0
  923. {Cython-3.0.6 → Cython-3.0.8}/tests/compile/ass2longlong.pyx +0 -0
  924. {Cython-3.0.6 → Cython-3.0.8}/tests/compile/assert2.pyx +0 -0
  925. {Cython-3.0.6 → Cython-3.0.8}/tests/compile/behnel4.pyx +0 -0
  926. {Cython-3.0.6 → Cython-3.0.8}/tests/compile/belchenko1.pyx +0 -0
  927. {Cython-3.0.6 → Cython-3.0.8}/tests/compile/belchenko2.h +0 -0
  928. {Cython-3.0.6 → Cython-3.0.8}/tests/compile/belchenko2.pyx.BROKEN +0 -0
  929. {Cython-3.0.6 → Cython-3.0.8}/tests/compile/branch_hints.pyx +0 -0
  930. {Cython-3.0.6 → Cython-3.0.8}/tests/compile/buildenv.pyx +0 -0
  931. {Cython-3.0.6 → Cython-3.0.8}/tests/compile/builtin.pyx +0 -0
  932. {Cython-3.0.6 → Cython-3.0.8}/tests/compile/builtinbuffer.py +0 -0
  933. {Cython-3.0.6 → Cython-3.0.8}/tests/compile/builtinfuncs.pyx +0 -0
  934. {Cython-3.0.6 → Cython-3.0.8}/tests/compile/builtinlist.pyx +0 -0
  935. {Cython-3.0.6 → Cython-3.0.8}/tests/compile/burton1.pyx.BROKEN +0 -0
  936. {Cython-3.0.6 → Cython-3.0.8}/tests/compile/c_directives.pyx +0 -0
  937. {Cython-3.0.6 → Cython-3.0.8}/tests/compile/callingconvention.srctree +0 -0
  938. {Cython-3.0.6 → Cython-3.0.8}/tests/compile/cargdef.pyx +0 -0
  939. {Cython-3.0.6 → Cython-3.0.8}/tests/compile/carrdecl.pyx +0 -0
  940. {Cython-3.0.6 → Cython-3.0.8}/tests/compile/cassign.pyx +0 -0
  941. {Cython-3.0.6 → Cython-3.0.8}/tests/compile/cast_ctypedef_array_T518.pyx +0 -0
  942. {Cython-3.0.6 → Cython-3.0.8}/tests/compile/cast_ctypedef_array_T518_helper.h +0 -0
  943. {Cython-3.0.6 → Cython-3.0.8}/tests/compile/casttoexttype.pyx +0 -0
  944. {Cython-3.0.6 → Cython-3.0.8}/tests/compile/cdef_syntax.pyx +0 -0
  945. {Cython-3.0.6 → Cython-3.0.8}/tests/compile/cdefemptysue.pyx +0 -0
  946. {Cython-3.0.6 → Cython-3.0.8}/tests/compile/cdefexternblock.pyx +0 -0
  947. {Cython-3.0.6 → Cython-3.0.8}/tests/compile/cdefexternempty.pyx +0 -0
  948. {Cython-3.0.6 → Cython-3.0.8}/tests/compile/cdefexternfromstar.pyx +0 -0
  949. {Cython-3.0.6 → Cython-3.0.8}/tests/compile/cenum.pyx +0 -0
  950. {Cython-3.0.6 → Cython-3.0.8}/tests/compile/cforfromloop.pyx +0 -0
  951. {Cython-3.0.6 → Cython-3.0.8}/tests/compile/cheese.h +0 -0
  952. {Cython-3.0.6 → Cython-3.0.8}/tests/compile/cimport_package_module_T4.pyx +0 -0
  953. {Cython-3.0.6 → Cython-3.0.8}/tests/compile/cimported_class_base.srctree +0 -0
  954. {Cython-3.0.6 → Cython-3.0.8}/tests/compile/cimportfrom_T248.pyx +0 -0
  955. {Cython-3.0.6 → Cython-3.0.8}/tests/compile/classmethargdefault.pyx +0 -0
  956. {Cython-3.0.6 → Cython-3.0.8}/tests/compile/cnamespec.pyx +0 -0
  957. {Cython-3.0.6 → Cython-3.0.8}/tests/compile/cnumop.pyx +0 -0
  958. {Cython-3.0.6 → Cython-3.0.8}/tests/compile/coercetovoidptr.pyx +0 -0
  959. {Cython-3.0.6 → Cython-3.0.8}/tests/compile/complex_annotations.pyx +0 -0
  960. {Cython-3.0.6 → Cython-3.0.8}/tests/compile/complex_decorators.pyx +0 -0
  961. {Cython-3.0.6 → Cython-3.0.8}/tests/compile/complexbasetype.pyx +0 -0
  962. {Cython-3.0.6 → Cython-3.0.8}/tests/compile/conditional_dependencies.srctree +0 -0
  963. {Cython-3.0.6 → Cython-3.0.8}/tests/compile/const_T42.srctree +0 -0
  964. {Cython-3.0.6 → Cython-3.0.8}/tests/compile/const_decl.pyx +0 -0
  965. {Cython-3.0.6 → Cython-3.0.8}/tests/compile/constcast.pyx +0 -0
  966. {Cython-3.0.6 → Cython-3.0.8}/tests/compile/constexpr.pyx +0 -0
  967. {Cython-3.0.6 → Cython-3.0.8}/tests/compile/coventry1.pyx +0 -0
  968. {Cython-3.0.6 → Cython-3.0.8}/tests/compile/cpdef.pyx +0 -0
  969. {Cython-3.0.6 → Cython-3.0.8}/tests/compile/cpp_class_redefinition.pyx +0 -0
  970. {Cython-3.0.6 → Cython-3.0.8}/tests/compile/cpp_nogil.h +0 -0
  971. {Cython-3.0.6 → Cython-3.0.8}/tests/compile/cpp_nogil.pyx +0 -0
  972. {Cython-3.0.6 → Cython-3.0.8}/tests/compile/cpp_rvalue_reference_binding.pyx +0 -0
  973. {Cython-3.0.6 → Cython-3.0.8}/tests/compile/cpp_structs.pyx +0 -0
  974. {Cython-3.0.6 → Cython-3.0.8}/tests/compile/cpp_temp_assignment.pyx +0 -0
  975. {Cython-3.0.6 → Cython-3.0.8}/tests/compile/cpp_templated_ctypedef.pyx +0 -0
  976. {Cython-3.0.6 → Cython-3.0.8}/tests/compile/cpp_templates.pyx +0 -0
  977. {Cython-3.0.6 → Cython-3.0.8}/tests/compile/cpp_templates_nested.pyx +0 -0
  978. {Cython-3.0.6 → Cython-3.0.8}/tests/compile/cppenum.pyx +0 -0
  979. {Cython-3.0.6 → Cython-3.0.8}/tests/compile/create_extension.srctree +0 -0
  980. {Cython-3.0.6 → Cython-3.0.8}/tests/compile/crunchytype.pxd +0 -0
  981. {Cython-3.0.6 → Cython-3.0.8}/tests/compile/cstructreturn.pyx +0 -0
  982. {Cython-3.0.6 → Cython-3.0.8}/tests/compile/ctuple_cimport.pxd +0 -0
  983. {Cython-3.0.6 → Cython-3.0.8}/tests/compile/ctuple_cimport_T1427.pyx +0 -0
  984. {Cython-3.0.6 → Cython-3.0.8}/tests/compile/ctuple_unused_T3543.pyx +0 -0
  985. {Cython-3.0.6 → Cython-3.0.8}/tests/compile/ctypedef.pyx +0 -0
  986. {Cython-3.0.6 → Cython-3.0.8}/tests/compile/ctypedef_public_class_T355.pxd +0 -0
  987. {Cython-3.0.6 → Cython-3.0.8}/tests/compile/ctypedef_public_class_T355.pyx +0 -0
  988. {Cython-3.0.6 → Cython-3.0.8}/tests/compile/ctypedefclass.pyx +0 -0
  989. {Cython-3.0.6 → Cython-3.0.8}/tests/compile/ctypedefenum.pyx +0 -0
  990. {Cython-3.0.6 → Cython-3.0.8}/tests/compile/ctypedefpubapi.pyx +0 -0
  991. {Cython-3.0.6 → Cython-3.0.8}/tests/compile/ctypedefstruct.pyx +0 -0
  992. {Cython-3.0.6 → Cython-3.0.8}/tests/compile/ctypedefunion.pyx +0 -0
  993. {Cython-3.0.6 → Cython-3.0.8}/tests/compile/cunsignedlong.pyx +0 -0
  994. {Cython-3.0.6 → Cython-3.0.8}/tests/compile/cvardef.pyx +0 -0
  995. {Cython-3.0.6 → Cython-3.0.8}/tests/compile/cverylongtypes.pyx +0 -0
  996. {Cython-3.0.6 → Cython-3.0.8}/tests/compile/cython_compiled_folding.pxd +0 -0
  997. {Cython-3.0.6 → Cython-3.0.8}/tests/compile/cython_compiled_folding.py +0 -0
  998. {Cython-3.0.6 → Cython-3.0.8}/tests/compile/declandimpl.pxd +0 -0
  999. {Cython-3.0.6 → Cython-3.0.8}/tests/compile/declandimpl.pyx +0 -0
  1000. {Cython-3.0.6 → Cython-3.0.8}/tests/compile/declarations.srctree +0 -0
  1001. {Cython-3.0.6 → Cython-3.0.8}/tests/compile/del.pyx +0 -0
  1002. {Cython-3.0.6 → Cython-3.0.8}/tests/compile/distutils_libraries_T845.srctree +0 -0
  1003. {Cython-3.0.6 → Cython-3.0.8}/tests/compile/docstrings.pyx +0 -0
  1004. {Cython-3.0.6 → Cython-3.0.8}/tests/compile/doda1.pyx +0 -0
  1005. {Cython-3.0.6 → Cython-3.0.8}/tests/compile/dotted_cimport.pyx +0 -0
  1006. {Cython-3.0.6 → Cython-3.0.8}/tests/compile/dotted_cimport_submodule/__init__.pyx +0 -0
  1007. {Cython-3.0.6 → Cython-3.0.8}/tests/compile/dotted_cimport_submodule/a.pxd +0 -0
  1008. {Cython-3.0.6 → Cython-3.0.8}/tests/compile/drake1.pyx +0 -0
  1009. {Cython-3.0.6 → Cython-3.0.8}/tests/compile/ellipsis_T488.pyx +0 -0
  1010. {Cython-3.0.6 → Cython-3.0.8}/tests/compile/emptytry.pyx +0 -0
  1011. {Cython-3.0.6 → Cython-3.0.8}/tests/compile/enumintcompat.pyx +0 -0
  1012. {Cython-3.0.6 → Cython-3.0.8}/tests/compile/eqcmp.pyx +0 -0
  1013. {Cython-3.0.6 → Cython-3.0.8}/tests/compile/ewing1.pyx +0 -0
  1014. {Cython-3.0.6 → Cython-3.0.8}/tests/compile/ewing3.pyx +0 -0
  1015. {Cython-3.0.6 → Cython-3.0.8}/tests/compile/ewing4.pyx +0 -0
  1016. {Cython-3.0.6 → Cython-3.0.8}/tests/compile/ewing5.pyx +0 -0
  1017. {Cython-3.0.6 → Cython-3.0.8}/tests/compile/ewing6.pyx +0 -0
  1018. {Cython-3.0.6 → Cython-3.0.8}/tests/compile/ewing7.pyx +0 -0
  1019. {Cython-3.0.6 → Cython-3.0.8}/tests/compile/ewing8.pxd +0 -0
  1020. {Cython-3.0.6 → Cython-3.0.8}/tests/compile/ewing8.pyx +0 -0
  1021. {Cython-3.0.6 → Cython-3.0.8}/tests/compile/ewing9.pxd +0 -0
  1022. {Cython-3.0.6 → Cython-3.0.8}/tests/compile/ewing9.pyx +0 -0
  1023. {Cython-3.0.6 → Cython-3.0.8}/tests/compile/excvalcheck.h +0 -0
  1024. {Cython-3.0.6 → Cython-3.0.8}/tests/compile/excvalcheck.pyx +0 -0
  1025. {Cython-3.0.6 → Cython-3.0.8}/tests/compile/excvaldecl.pyx +0 -0
  1026. {Cython-3.0.6 → Cython-3.0.8}/tests/compile/excvalreturn.pyx +0 -0
  1027. {Cython-3.0.6 → Cython-3.0.8}/tests/compile/extargdefault.pyx +0 -0
  1028. {Cython-3.0.6 → Cython-3.0.8}/tests/compile/extcmethcall.pyx +0 -0
  1029. {Cython-3.0.6 → Cython-3.0.8}/tests/compile/extcoerce.pyx +0 -0
  1030. {Cython-3.0.6 → Cython-3.0.8}/tests/compile/extdelattr.pyx +0 -0
  1031. {Cython-3.0.6 → Cython-3.0.8}/tests/compile/extdelitem.pyx +0 -0
  1032. {Cython-3.0.6 → Cython-3.0.8}/tests/compile/extdelslice.pyx +0 -0
  1033. {Cython-3.0.6 → Cython-3.0.8}/tests/compile/extdescrdel.pyx +0 -0
  1034. {Cython-3.0.6 → Cython-3.0.8}/tests/compile/extdescrget.pyx +0 -0
  1035. {Cython-3.0.6 → Cython-3.0.8}/tests/compile/extdescrset.pyx +0 -0
  1036. {Cython-3.0.6 → Cython-3.0.8}/tests/compile/extern.pyx +0 -0
  1037. {Cython-3.0.6 → Cython-3.0.8}/tests/compile/extexttype.pyx +0 -0
  1038. {Cython-3.0.6 → Cython-3.0.8}/tests/compile/extforward.pyx +0 -0
  1039. {Cython-3.0.6 → Cython-3.0.8}/tests/compile/extgetattr.pyx +0 -0
  1040. {Cython-3.0.6 → Cython-3.0.8}/tests/compile/extgetitem.pyx +0 -0
  1041. {Cython-3.0.6 → Cython-3.0.8}/tests/compile/exthash.pyx +0 -0
  1042. {Cython-3.0.6 → Cython-3.0.8}/tests/compile/extimported.pyx +0 -0
  1043. {Cython-3.0.6 → Cython-3.0.8}/tests/compile/extimportedsubtype.pyx +0 -0
  1044. {Cython-3.0.6 → Cython-3.0.8}/tests/compile/extindex.pyx +0 -0
  1045. {Cython-3.0.6 → Cython-3.0.8}/tests/compile/extinheritdel.pyx +0 -0
  1046. {Cython-3.0.6 → Cython-3.0.8}/tests/compile/extinheritset.pyx +0 -0
  1047. {Cython-3.0.6 → Cython-3.0.8}/tests/compile/extpropertyall.pyx +0 -0
  1048. {Cython-3.0.6 → Cython-3.0.8}/tests/compile/extpropertydel.pyx +0 -0
  1049. {Cython-3.0.6 → Cython-3.0.8}/tests/compile/extpropertydoc.pyx +0 -0
  1050. {Cython-3.0.6 → Cython-3.0.8}/tests/compile/extpropertyget.pyx +0 -0
  1051. {Cython-3.0.6 → Cython-3.0.8}/tests/compile/extpropertyset.pyx +0 -0
  1052. {Cython-3.0.6 → Cython-3.0.8}/tests/compile/extpymemberdef.pyx +0 -0
  1053. {Cython-3.0.6 → Cython-3.0.8}/tests/compile/extsetattr.pyx +0 -0
  1054. {Cython-3.0.6 → Cython-3.0.8}/tests/compile/extsetitem.pyx +0 -0
  1055. {Cython-3.0.6 → Cython-3.0.8}/tests/compile/extsetslice.pyx +0 -0
  1056. {Cython-3.0.6 → Cython-3.0.8}/tests/compile/finally_GH1744.pyx +0 -0
  1057. {Cython-3.0.6 → Cython-3.0.8}/tests/compile/find_pxd.srctree +0 -0
  1058. {Cython-3.0.6 → Cython-3.0.8}/tests/compile/first_assignment.pyx +0 -0
  1059. {Cython-3.0.6 → Cython-3.0.8}/tests/compile/food.h +0 -0
  1060. {Cython-3.0.6 → Cython-3.0.8}/tests/compile/for.pyx +0 -0
  1061. {Cython-3.0.6 → Cython-3.0.8}/tests/compile/forfromelse.pyx +0 -0
  1062. {Cython-3.0.6 → Cython-3.0.8}/tests/compile/formfeed.pyx +0 -0
  1063. {Cython-3.0.6 → Cython-3.0.8}/tests/compile/forward.pyx +0 -0
  1064. {Cython-3.0.6 → Cython-3.0.8}/tests/compile/fromimport.pyx +0 -0
  1065. {Cython-3.0.6 → Cython-3.0.8}/tests/compile/fromimport_star.pyx +0 -0
  1066. {Cython-3.0.6 → Cython-3.0.8}/tests/compile/fused_buffers.pyx +0 -0
  1067. {Cython-3.0.6 → Cython-3.0.8}/tests/compile/fused_no_numpy.pyx +0 -0
  1068. {Cython-3.0.6 → Cython-3.0.8}/tests/compile/fused_redeclare_T3111.pyx +0 -0
  1069. {Cython-3.0.6 → Cython-3.0.8}/tests/compile/fused_unused.pyx +0 -0
  1070. {Cython-3.0.6 → Cython-3.0.8}/tests/compile/fused_wraparound.pyx +0 -0
  1071. {Cython-3.0.6 → Cython-3.0.8}/tests/compile/future_imports.pyx +0 -0
  1072. {Cython-3.0.6 → Cython-3.0.8}/tests/compile/gencall.pyx +0 -0
  1073. {Cython-3.0.6 → Cython-3.0.8}/tests/compile/getattr3ref.pyx.BROKEN +0 -0
  1074. {Cython-3.0.6 → Cython-3.0.8}/tests/compile/globalonly.pyx +0 -0
  1075. {Cython-3.0.6 → Cython-3.0.8}/tests/compile/globalstmt.pyx +0 -0
  1076. {Cython-3.0.6 → Cython-3.0.8}/tests/compile/globvardef.pyx +0 -0
  1077. {Cython-3.0.6 → Cython-3.0.8}/tests/compile/gustafsson2.pyx +0 -0
  1078. {Cython-3.0.6 → Cython-3.0.8}/tests/compile/hinsen1.h +0 -0
  1079. {Cython-3.0.6 → Cython-3.0.8}/tests/compile/hinsen1.pyx.BROKEN +0 -0
  1080. {Cython-3.0.6 → Cython-3.0.8}/tests/compile/hinsen2.pyx +0 -0
  1081. {Cython-3.0.6 → Cython-3.0.8}/tests/compile/huss2.pyx +0 -0
  1082. {Cython-3.0.6 → Cython-3.0.8}/tests/compile/ia_cdefblock.pyx +0 -0
  1083. {Cython-3.0.6 → Cython-3.0.8}/tests/compile/import.pyx +0 -0
  1084. {Cython-3.0.6 → Cython-3.0.8}/tests/compile/index.pyx +0 -0
  1085. {Cython-3.0.6 → Cython-3.0.8}/tests/compile/indices.pyx +0 -0
  1086. {Cython-3.0.6 → Cython-3.0.8}/tests/compile/inplace_lhs.pyx +0 -0
  1087. {Cython-3.0.6 → Cython-3.0.8}/tests/compile/inplace_ops.pyx +0 -0
  1088. {Cython-3.0.6 → Cython-3.0.8}/tests/compile/ishimoto1.pyx +0 -0
  1089. {Cython-3.0.6 → Cython-3.0.8}/tests/compile/ishimoto4.pyx +0 -0
  1090. {Cython-3.0.6 → Cython-3.0.8}/tests/compile/jiba3.pyx +0 -0
  1091. {Cython-3.0.6 → Cython-3.0.8}/tests/compile/jiba4.pyx +0 -0
  1092. {Cython-3.0.6 → Cython-3.0.8}/tests/compile/jiba5.pyx +0 -0
  1093. {Cython-3.0.6 → Cython-3.0.8}/tests/compile/jiba6.pyx +0 -0
  1094. {Cython-3.0.6 → Cython-3.0.8}/tests/compile/johnson1.pyx +0 -0
  1095. {Cython-3.0.6 → Cython-3.0.8}/tests/compile/johnson2.pyx +0 -0
  1096. {Cython-3.0.6 → Cython-3.0.8}/tests/compile/khavkine1.pyx +0 -0
  1097. {Cython-3.0.6 → Cython-3.0.8}/tests/compile/kleckner1.pyx +0 -0
  1098. {Cython-3.0.6 → Cython-3.0.8}/tests/compile/lepage_2.pyx +0 -0
  1099. {Cython-3.0.6 → Cython-3.0.8}/tests/compile/libc_all.pyx +0 -0
  1100. {Cython-3.0.6 → Cython-3.0.8}/tests/compile/libc_errno.pyx +0 -0
  1101. {Cython-3.0.6 → Cython-3.0.8}/tests/compile/libc_signal.pyx +0 -0
  1102. {Cython-3.0.6 → Cython-3.0.8}/tests/compile/libc_stdio.pyx +0 -0
  1103. {Cython-3.0.6 → Cython-3.0.8}/tests/compile/longunsigned.pyx +0 -0
  1104. {Cython-3.0.6 → Cython-3.0.8}/tests/compile/magcmp.pyx +0 -0
  1105. {Cython-3.0.6 → Cython-3.0.8}/tests/compile/min_async.pyx +0 -0
  1106. {Cython-3.0.6 → Cython-3.0.8}/tests/compile/module_name_arg.srctree +0 -0
  1107. {Cython-3.0.6 → Cython-3.0.8}/tests/compile/msvc_strings.pyx +0 -0
  1108. {Cython-3.0.6 → Cython-3.0.8}/tests/compile/nogil.h +0 -0
  1109. {Cython-3.0.6 → Cython-3.0.8}/tests/compile/nogil.pyx +0 -0
  1110. {Cython-3.0.6 → Cython-3.0.8}/tests/compile/nonctypedefclass.pyx +0 -0
  1111. {Cython-3.0.6 → Cython-3.0.8}/tests/compile/none.pyx +0 -0
  1112. {Cython-3.0.6 → Cython-3.0.8}/tests/compile/notnonearg.pyx +0 -0
  1113. {Cython-3.0.6 → Cython-3.0.8}/tests/compile/nullptr.pyx +0 -0
  1114. {Cython-3.0.6 → Cython-3.0.8}/tests/compile/omittedargnames.pyx +0 -0
  1115. {Cython-3.0.6 → Cython-3.0.8}/tests/compile/operators.h +0 -0
  1116. {Cython-3.0.6 → Cython-3.0.8}/tests/compile/packed_structs.pyx +0 -0
  1117. {Cython-3.0.6 → Cython-3.0.8}/tests/compile/parallel_compile_float_rank.pyx +0 -0
  1118. {Cython-3.0.6 → Cython-3.0.8}/tests/compile/pinard4.pyx +0 -0
  1119. {Cython-3.0.6 → Cython-3.0.8}/tests/compile/point.h +0 -0
  1120. {Cython-3.0.6 → Cython-3.0.8}/tests/compile/posix_pxds.pyx +0 -0
  1121. {Cython-3.0.6 → Cython-3.0.8}/tests/compile/publicapi_api.pyx +0 -0
  1122. {Cython-3.0.6 → Cython-3.0.8}/tests/compile/publicapi_cimport.pyx +0 -0
  1123. {Cython-3.0.6 → Cython-3.0.8}/tests/compile/publicapi_mix.pyx +0 -0
  1124. {Cython-3.0.6 → Cython-3.0.8}/tests/compile/publicapi_pub.pyx +0 -0
  1125. {Cython-3.0.6 → Cython-3.0.8}/tests/compile/publicapi_pxd_mix.pxd +0 -0
  1126. {Cython-3.0.6 → Cython-3.0.8}/tests/compile/publicapi_pxd_mix.pyx +0 -0
  1127. {Cython-3.0.6 → Cython-3.0.8}/tests/compile/pxd_mangling_names.srctree +0 -0
  1128. {Cython-3.0.6 → Cython-3.0.8}/tests/compile/pxd_override_T230.pxd +0 -0
  1129. {Cython-3.0.6 → Cython-3.0.8}/tests/compile/pxd_override_T230.py +0 -0
  1130. {Cython-3.0.6 → Cython-3.0.8}/tests/compile/pyclass.pyx +0 -0
  1131. {Cython-3.0.6 → Cython-3.0.8}/tests/compile/pylong.pyx +0 -0
  1132. {Cython-3.0.6 → Cython-3.0.8}/tests/compile/r_pernici1.pyx +0 -0
  1133. {Cython-3.0.6 → Cython-3.0.8}/tests/compile/signedtypes.pyx +0 -0
  1134. {Cython-3.0.6 → Cython-3.0.8}/tests/compile/slicex.pyx +0 -0
  1135. {Cython-3.0.6 → Cython-3.0.8}/tests/compile/specialfloatvals.pyx +0 -0
  1136. {Cython-3.0.6 → Cython-3.0.8}/tests/compile/specmethargdefault.pyx +0 -0
  1137. {Cython-3.0.6 → Cython-3.0.8}/tests/compile/specmethdocstring.pyx +0 -0
  1138. {Cython-3.0.6 → Cython-3.0.8}/tests/compile/specmethextarg.pyx +0 -0
  1139. {Cython-3.0.6 → Cython-3.0.8}/tests/compile/stop_async_iteration_exception_pep492.pyx +0 -0
  1140. {Cython-3.0.6 → Cython-3.0.8}/tests/compile/templates.h +0 -0
  1141. {Cython-3.0.6 → Cython-3.0.8}/tests/compile/traceback.pyx +0 -0
  1142. {Cython-3.0.6 → Cython-3.0.8}/tests/compile/tree_assertions.pyx +0 -0
  1143. {Cython-3.0.6 → Cython-3.0.8}/tests/compile/tryexcept.pyx +0 -0
  1144. {Cython-3.0.6 → Cython-3.0.8}/tests/compile/tryfinally.pyx +0 -0
  1145. {Cython-3.0.6 → Cython-3.0.8}/tests/compile/typecast.pyx +0 -0
  1146. {Cython-3.0.6 → Cython-3.0.8}/tests/compile/types_and_names.pxd +0 -0
  1147. {Cython-3.0.6 → Cython-3.0.8}/tests/compile/types_and_names.pyx +0 -0
  1148. {Cython-3.0.6 → Cython-3.0.8}/tests/compile/utf8bom.pyx +0 -0
  1149. {Cython-3.0.6 → Cython-3.0.8}/tests/compile/vector_include.pyx +0 -0
  1150. {Cython-3.0.6 → Cython-3.0.8}/tests/compile/verbatiminclude_cimport.srctree +0 -0
  1151. {Cython-3.0.6 → Cython-3.0.8}/tests/compile/volatile.pyx +0 -0
  1152. {Cython-3.0.6 → Cython-3.0.8}/tests/compile/watts2.pyx +0 -0
  1153. {Cython-3.0.6 → Cython-3.0.8}/tests/compile/weakref_T276.pyx +0 -0
  1154. {Cython-3.0.6 → Cython-3.0.8}/tests/compile/while.pyx +0 -0
  1155. {Cython-3.0.6 → Cython-3.0.8}/tests/compile/withgil.pyx +0 -0
  1156. {Cython-3.0.6 → Cython-3.0.8}/tests/cygwin_bugs.txt +0 -0
  1157. {Cython-3.0.6 → Cython-3.0.8}/tests/errors/break_outside_loop.pyx +0 -0
  1158. {Cython-3.0.6 → Cython-3.0.8}/tests/errors/bufaccess_noassignT444.pyx +0 -0
  1159. {Cython-3.0.6 → Cython-3.0.8}/tests/errors/buffertypedef_T117.pyx +0 -0
  1160. {Cython-3.0.6 → Cython-3.0.8}/tests/errors/builtin_type_inheritance.pyx +0 -0
  1161. {Cython-3.0.6 → Cython-3.0.8}/tests/errors/callargs.pyx +0 -0
  1162. {Cython-3.0.6 → Cython-3.0.8}/tests/errors/callingnonexisting_T307.pyx +0 -0
  1163. {Cython-3.0.6 → Cython-3.0.8}/tests/errors/cdef_class_properties_decorated.pyx +0 -0
  1164. {Cython-3.0.6 → Cython-3.0.8}/tests/errors/cdef_func_decorators.pyx +0 -0
  1165. {Cython-3.0.6 → Cython-3.0.8}/tests/errors/cdef_func_syntax.pyx +0 -0
  1166. {Cython-3.0.6 → Cython-3.0.8}/tests/errors/cdef_in_pyclass.pyx +0 -0
  1167. {Cython-3.0.6 → Cython-3.0.8}/tests/errors/cdef_members_T517.pyx +0 -0
  1168. {Cython-3.0.6 → Cython-3.0.8}/tests/errors/cdef_syntax.pyx +0 -0
  1169. {Cython-3.0.6 → Cython-3.0.8}/tests/errors/cdefkwargs.pyx +0 -0
  1170. {Cython-3.0.6 → Cython-3.0.8}/tests/errors/cdefoptargs.pyx +0 -0
  1171. {Cython-3.0.6 → Cython-3.0.8}/tests/errors/cdefspecial.pyx +0 -0
  1172. {Cython-3.0.6 → Cython-3.0.8}/tests/errors/cfunc_directive_in_pyclass.pyx +0 -0
  1173. {Cython-3.0.6 → Cython-3.0.8}/tests/errors/cfuncptr.pyx +0 -0
  1174. {Cython-3.0.6 → Cython-3.0.8}/tests/errors/charptr_from_temp.pyx +0 -0
  1175. {Cython-3.0.6 → Cython-3.0.8}/tests/errors/cimport_attributes.pyx +0 -0
  1176. {Cython-3.0.6 → Cython-3.0.8}/tests/errors/cmethbasematch.pxd +0 -0
  1177. {Cython-3.0.6 → Cython-3.0.8}/tests/errors/cmethbasematch.pyx +0 -0
  1178. {Cython-3.0.6 → Cython-3.0.8}/tests/errors/compile_time_unraisable_T370.pyx +0 -0
  1179. {Cython-3.0.6 → Cython-3.0.8}/tests/errors/const_decl_errors.pyx +0 -0
  1180. {Cython-3.0.6 → Cython-3.0.8}/tests/errors/continue_outside_loop.pyx +0 -0
  1181. {Cython-3.0.6 → Cython-3.0.8}/tests/errors/cpdef_syntax.pyx +0 -0
  1182. {Cython-3.0.6 → Cython-3.0.8}/tests/errors/cpdef_vars.pyx +0 -0
  1183. {Cython-3.0.6 → Cython-3.0.8}/tests/errors/cpp_bool.pyx +0 -0
  1184. {Cython-3.0.6 → Cython-3.0.8}/tests/errors/cpp_class_gil_GH1986.pyx +0 -0
  1185. {Cython-3.0.6 → Cython-3.0.8}/tests/errors/cpp_comparison.pyx +0 -0
  1186. {Cython-3.0.6 → Cython-3.0.8}/tests/errors/cpp_enum_redeclare.pyx +0 -0
  1187. {Cython-3.0.6 → Cython-3.0.8}/tests/errors/cpp_increment.pyx +0 -0
  1188. {Cython-3.0.6 → Cython-3.0.8}/tests/errors/cpp_no_auto_conversion.pyx +0 -0
  1189. {Cython-3.0.6 → Cython-3.0.8}/tests/errors/cpp_no_const_iterator_conversion.pyx +0 -0
  1190. {Cython-3.0.6 → Cython-3.0.8}/tests/errors/cpp_no_constructor.pyx +0 -0
  1191. {Cython-3.0.6 → Cython-3.0.8}/tests/errors/cpp_object_template.pyx +0 -0
  1192. {Cython-3.0.6 → Cython-3.0.8}/tests/errors/cpp_rvalue_reference_support.pyx +0 -0
  1193. {Cython-3.0.6 → Cython-3.0.8}/tests/errors/cppexc_non_extern.pyx +0 -0
  1194. {Cython-3.0.6 → Cython-3.0.8}/tests/errors/cython3_bytes.pyx +0 -0
  1195. {Cython-3.0.6 → Cython-3.0.8}/tests/errors/dataclass_e1.pyx +0 -0
  1196. {Cython-3.0.6 → Cython-3.0.8}/tests/errors/dataclass_e4.pyx +0 -0
  1197. {Cython-3.0.6 → Cython-3.0.8}/tests/errors/dataclass_e5.pyx +0 -0
  1198. {Cython-3.0.6 → Cython-3.0.8}/tests/errors/dataclass_e6.pyx +0 -0
  1199. {Cython-3.0.6 → Cython-3.0.8}/tests/errors/dataclass_w1.pyx +0 -0
  1200. {Cython-3.0.6 → Cython-3.0.8}/tests/errors/dataclass_w1_othermod.pxd +0 -0
  1201. {Cython-3.0.6 → Cython-3.0.8}/tests/errors/declareafteruse_T158.pyx +0 -0
  1202. {Cython-3.0.6 → Cython-3.0.8}/tests/errors/dotted.module.pxd +0 -0
  1203. {Cython-3.0.6 → Cython-3.0.8}/tests/errors/dotted_filenames.pyx +0 -0
  1204. {Cython-3.0.6 → Cython-3.0.8}/tests/errors/duplicate_const.pyx +0 -0
  1205. {Cython-3.0.6 → Cython-3.0.8}/tests/errors/e2_packedstruct_T290.pyx +0 -0
  1206. {Cython-3.0.6 → Cython-3.0.8}/tests/errors/e_addop.pyx +0 -0
  1207. {Cython-3.0.6 → Cython-3.0.8}/tests/errors/e_addressof.pyx +0 -0
  1208. {Cython-3.0.6 → Cython-3.0.8}/tests/errors/e_argdefault.pyx +0 -0
  1209. {Cython-3.0.6 → Cython-3.0.8}/tests/errors/e_arrayassign.pyx +0 -0
  1210. {Cython-3.0.6 → Cython-3.0.8}/tests/errors/e_ass.pyx +0 -0
  1211. {Cython-3.0.6 → Cython-3.0.8}/tests/errors/e_assert.pyx +0 -0
  1212. {Cython-3.0.6 → Cython-3.0.8}/tests/errors/e_assnone.pyx +0 -0
  1213. {Cython-3.0.6 → Cython-3.0.8}/tests/errors/e_autotestdict.pyx +0 -0
  1214. {Cython-3.0.6 → Cython-3.0.8}/tests/errors/e_badexcvaltype.pyx +0 -0
  1215. {Cython-3.0.6 → Cython-3.0.8}/tests/errors/e_badfuncargtype.pyx +0 -0
  1216. {Cython-3.0.6 → Cython-3.0.8}/tests/errors/e_badpyparam.pyx +0 -0
  1217. {Cython-3.0.6 → Cython-3.0.8}/tests/errors/e_badtypeuse.pyx +0 -0
  1218. {Cython-3.0.6 → Cython-3.0.8}/tests/errors/e_binop_and.pyx +0 -0
  1219. {Cython-3.0.6 → Cython-3.0.8}/tests/errors/e_binop_or.pyx +0 -0
  1220. {Cython-3.0.6 → Cython-3.0.8}/tests/errors/e_bitop.pyx +0 -0
  1221. {Cython-3.0.6 → Cython-3.0.8}/tests/errors/e_boolcoerce.pyx +0 -0
  1222. {Cython-3.0.6 → Cython-3.0.8}/tests/errors/e_bufaccess.pyx +0 -0
  1223. {Cython-3.0.6 → Cython-3.0.8}/tests/errors/e_bufaccess2.pyx +0 -0
  1224. {Cython-3.0.6 → Cython-3.0.8}/tests/errors/e_bufaccess_pxd.pxd +0 -0
  1225. {Cython-3.0.6 → Cython-3.0.8}/tests/errors/e_callnonfunction.pyx +0 -0
  1226. {Cython-3.0.6 → Cython-3.0.8}/tests/errors/e_callspec.pyx +0 -0
  1227. {Cython-3.0.6 → Cython-3.0.8}/tests/errors/e_cdef_closure.pyx +0 -0
  1228. {Cython-3.0.6 → Cython-3.0.8}/tests/errors/e_cdef_in_py.py +0 -0
  1229. {Cython-3.0.6 → Cython-3.0.8}/tests/errors/e_cdef_keywords_T241.pyx +0 -0
  1230. {Cython-3.0.6 → Cython-3.0.8}/tests/errors/e_cdef_missing_declarator.pyx +0 -0
  1231. {Cython-3.0.6 → Cython-3.0.8}/tests/errors/e_cdef_yield.pyx +0 -0
  1232. {Cython-3.0.6 → Cython-3.0.8}/tests/errors/e_cdefassign.pyx +0 -0
  1233. {Cython-3.0.6 → Cython-3.0.8}/tests/errors/e_cdefemptysue.pyx +0 -0
  1234. {Cython-3.0.6 → Cython-3.0.8}/tests/errors/e_cenum.pyx +0 -0
  1235. {Cython-3.0.6 → Cython-3.0.8}/tests/errors/e_cenum_with_type.pyx +0 -0
  1236. {Cython-3.0.6 → Cython-3.0.8}/tests/errors/e_cmp.pyx +0 -0
  1237. {Cython-3.0.6 → Cython-3.0.8}/tests/errors/e_cpp_nogil.pyx +0 -0
  1238. {Cython-3.0.6 → Cython-3.0.8}/tests/errors/e_cpp_only_features.pyx +0 -0
  1239. {Cython-3.0.6 → Cython-3.0.8}/tests/errors/e_cpp_references.pyx +0 -0
  1240. {Cython-3.0.6 → Cython-3.0.8}/tests/errors/e_cstruct.pyx +0 -0
  1241. {Cython-3.0.6 → Cython-3.0.8}/tests/errors/e_ctypedefornot.pyx +0 -0
  1242. {Cython-3.0.6 → Cython-3.0.8}/tests/errors/e_cunion.pyx +0 -0
  1243. {Cython-3.0.6 → Cython-3.0.8}/tests/errors/e_cython_parallel.pyx +0 -0
  1244. {Cython-3.0.6 → Cython-3.0.8}/tests/errors/e_declarations.pyx +0 -0
  1245. {Cython-3.0.6 → Cython-3.0.8}/tests/errors/e_del.pyx +0 -0
  1246. {Cython-3.0.6 → Cython-3.0.8}/tests/errors/e_directives.pyx +0 -0
  1247. {Cython-3.0.6 → Cython-3.0.8}/tests/errors/e_exceptclause.pyx +0 -0
  1248. {Cython-3.0.6 → Cython-3.0.8}/tests/errors/e_excvalfunctype.pyx +0 -0
  1249. {Cython-3.0.6 → Cython-3.0.8}/tests/errors/e_exttype_freelist.pyx +0 -0
  1250. {Cython-3.0.6 → Cython-3.0.8}/tests/errors/e_exttype_total_ordering.pyx +0 -0
  1251. {Cython-3.0.6 → Cython-3.0.8}/tests/errors/e_extweakref.pyx +0 -0
  1252. {Cython-3.0.6 → Cython-3.0.8}/tests/errors/e_fstring.pyx +0 -0
  1253. {Cython-3.0.6 → Cython-3.0.8}/tests/errors/e_func_in_pxd.pyx +0 -0
  1254. {Cython-3.0.6 → Cython-3.0.8}/tests/errors/e_func_in_pxd_support.pxd +0 -0
  1255. {Cython-3.0.6 → Cython-3.0.8}/tests/errors/e_fused_closure.pyx +0 -0
  1256. {Cython-3.0.6 → Cython-3.0.8}/tests/errors/e_generators.pyx +0 -0
  1257. {Cython-3.0.6 → Cython-3.0.8}/tests/errors/e_index.pyx +0 -0
  1258. {Cython-3.0.6 → Cython-3.0.8}/tests/errors/e_int_literals_py2.py +0 -0
  1259. {Cython-3.0.6 → Cython-3.0.8}/tests/errors/e_int_literals_py3.py +0 -0
  1260. {Cython-3.0.6 → Cython-3.0.8}/tests/errors/e_invalid_num_threads.pyx +0 -0
  1261. {Cython-3.0.6 → Cython-3.0.8}/tests/errors/e_invalid_special_cython_modules.py +0 -0
  1262. {Cython-3.0.6 → Cython-3.0.8}/tests/errors/e_multass.pyx +0 -0
  1263. {Cython-3.0.6 → Cython-3.0.8}/tests/errors/e_nargs.pyx +0 -0
  1264. {Cython-3.0.6 → Cython-3.0.8}/tests/errors/e_nogilcmeth.pxd +0 -0
  1265. {Cython-3.0.6 → Cython-3.0.8}/tests/errors/e_nogilcmeth.pyx +0 -0
  1266. {Cython-3.0.6 → Cython-3.0.8}/tests/errors/e_nogilfunctype.pyx +0 -0
  1267. {Cython-3.0.6 → Cython-3.0.8}/tests/errors/e_nonlocal_T490.pyx +0 -0
  1268. {Cython-3.0.6 → Cython-3.0.8}/tests/errors/e_nosignword.pyx +0 -0
  1269. {Cython-3.0.6 → Cython-3.0.8}/tests/errors/e_notnone.pyx +0 -0
  1270. {Cython-3.0.6 → Cython-3.0.8}/tests/errors/e_notnone2.pyx +0 -0
  1271. {Cython-3.0.6 → Cython-3.0.8}/tests/errors/e_numop.pyx +0 -0
  1272. {Cython-3.0.6 → Cython-3.0.8}/tests/errors/e_powop.pyx +0 -0
  1273. {Cython-3.0.6 → Cython-3.0.8}/tests/errors/e_public_cdef_private_types.pyx +0 -0
  1274. {Cython-3.0.6 → Cython-3.0.8}/tests/errors/e_pure_cimports.pyx +0 -0
  1275. {Cython-3.0.6 → Cython-3.0.8}/tests/errors/e_pxdimpl.pyx +0 -0
  1276. {Cython-3.0.6 → Cython-3.0.8}/tests/errors/e_pxdimpl_imported.pxd +0 -0
  1277. {Cython-3.0.6 → Cython-3.0.8}/tests/errors/e_pyobinstruct.pyx +0 -0
  1278. {Cython-3.0.6 → Cython-3.0.8}/tests/errors/e_relative_cimport.pyx +0 -0
  1279. {Cython-3.0.6 → Cython-3.0.8}/tests/errors/e_return.pyx +0 -0
  1280. {Cython-3.0.6 → Cython-3.0.8}/tests/errors/e_sizeofincomplete.pyx +0 -0
  1281. {Cython-3.0.6 → Cython-3.0.8}/tests/errors/e_slice.pyx +0 -0
  1282. {Cython-3.0.6 → Cython-3.0.8}/tests/errors/e_strcoerce.pyx +0 -0
  1283. {Cython-3.0.6 → Cython-3.0.8}/tests/errors/e_subop.pyx +0 -0
  1284. {Cython-3.0.6 → Cython-3.0.8}/tests/errors/e_switch.pyx +0 -0
  1285. {Cython-3.0.6 → Cython-3.0.8}/tests/errors/e_switch_transform.pyx +0 -0
  1286. {Cython-3.0.6 → Cython-3.0.8}/tests/errors/e_tempcast.pyx +0 -0
  1287. {Cython-3.0.6 → Cython-3.0.8}/tests/errors/e_tuple_args_T692.py +0 -0
  1288. {Cython-3.0.6 → Cython-3.0.8}/tests/errors/e_typing_errors.pyx +0 -0
  1289. {Cython-3.0.6 → Cython-3.0.8}/tests/errors/e_typing_optional.py +0 -0
  1290. {Cython-3.0.6 → Cython-3.0.8}/tests/errors/e_undefexttype.pyx +0 -0
  1291. {Cython-3.0.6 → Cython-3.0.8}/tests/errors/e_unop.pyx +0 -0
  1292. {Cython-3.0.6 → Cython-3.0.8}/tests/errors/e_while.pyx +0 -0
  1293. {Cython-3.0.6 → Cython-3.0.8}/tests/errors/empty.pyx +0 -0
  1294. {Cython-3.0.6 → Cython-3.0.8}/tests/errors/encoding.pyx +0 -0
  1295. {Cython-3.0.6 → Cython-3.0.8}/tests/errors/exec_errors.pyx +0 -0
  1296. {Cython-3.0.6 → Cython-3.0.8}/tests/errors/extclassattrsetting.pyx +0 -0
  1297. {Cython-3.0.6 → Cython-3.0.8}/tests/errors/extended_unpacking.pyx +0 -0
  1298. {Cython-3.0.6 → Cython-3.0.8}/tests/errors/extended_unpacking_notuple.pyx +0 -0
  1299. {Cython-3.0.6 → Cython-3.0.8}/tests/errors/extended_unpacking_parser.pyx +0 -0
  1300. {Cython-3.0.6 → Cython-3.0.8}/tests/errors/extended_unpacking_parser2.pyx +0 -0
  1301. {Cython-3.0.6 → Cython-3.0.8}/tests/errors/final_methods.pyx +0 -0
  1302. {Cython-3.0.6 → Cython-3.0.8}/tests/errors/fused_syntax.pyx +0 -0
  1303. {Cython-3.0.6 → Cython-3.0.8}/tests/errors/fused_syntax_ctypedef.pyx +0 -0
  1304. {Cython-3.0.6 → Cython-3.0.8}/tests/errors/fused_types.pyx +0 -0
  1305. {Cython-3.0.6 → Cython-3.0.8}/tests/errors/futurebraces.pyx +0 -0
  1306. {Cython-3.0.6 → Cython-3.0.8}/tests/errors/incomplete_varadic.pyx +0 -0
  1307. {Cython-3.0.6 → Cython-3.0.8}/tests/errors/incorrectly_nested_gil_blocks.pyx +0 -0
  1308. {Cython-3.0.6 → Cython-3.0.8}/tests/errors/invalid_cast.pyx +0 -0
  1309. {Cython-3.0.6 → Cython-3.0.8}/tests/errors/invalid_hex_escape0.pyx +0 -0
  1310. {Cython-3.0.6 → Cython-3.0.8}/tests/errors/invalid_hex_escape1.pyx +0 -0
  1311. {Cython-3.0.6 → Cython-3.0.8}/tests/errors/invalid_syntax_py.pyx +0 -0
  1312. {Cython-3.0.6 → Cython-3.0.8}/tests/errors/invalid_uescape.pyx +0 -0
  1313. {Cython-3.0.6 → Cython-3.0.8}/tests/errors/invalid_uescape0.pyx +0 -0
  1314. {Cython-3.0.6 → Cython-3.0.8}/tests/errors/invalid_uescape2.pyx +0 -0
  1315. {Cython-3.0.6 → Cython-3.0.8}/tests/errors/invalid_uescapeN.pyx +0 -0
  1316. {Cython-3.0.6 → Cython-3.0.8}/tests/errors/literal_lists.pyx +0 -0
  1317. {Cython-3.0.6 → Cython-3.0.8}/tests/errors/missing_baseclass_in_predecl_T262.pyx +0 -0
  1318. {Cython-3.0.6 → Cython-3.0.8}/tests/errors/missing_self_in_cpdef_method_T156.pyx +0 -0
  1319. {Cython-3.0.6 → Cython-3.0.8}/tests/errors/missing_self_in_cpdef_method_T165.pyx +0 -0
  1320. {Cython-3.0.6 → Cython-3.0.8}/tests/errors/mod_errors.pyx +0 -0
  1321. {Cython-3.0.6 → Cython-3.0.8}/tests/errors/nogil.pyx +0 -0
  1322. {Cython-3.0.6 → Cython-3.0.8}/tests/errors/nogil_buffer_acquisition.pyx +0 -0
  1323. {Cython-3.0.6 → Cython-3.0.8}/tests/errors/nogil_conditional.pyx +0 -0
  1324. {Cython-3.0.6 → Cython-3.0.8}/tests/errors/nogilcmeth.pxd +0 -0
  1325. {Cython-3.0.6 → Cython-3.0.8}/tests/errors/nogilcmeth.pyx +0 -0
  1326. {Cython-3.0.6 → Cython-3.0.8}/tests/errors/nogilfunctype.pyx +0 -0
  1327. {Cython-3.0.6 → Cython-3.0.8}/tests/errors/nonconst_def.pyx +0 -0
  1328. {Cython-3.0.6 → Cython-3.0.8}/tests/errors/nonconst_def_tuple.pyx +0 -0
  1329. {Cython-3.0.6 → Cython-3.0.8}/tests/errors/nonconst_excval.pyx +0 -0
  1330. {Cython-3.0.6 → Cython-3.0.8}/tests/errors/notcimportedT418.pyx +0 -0
  1331. {Cython-3.0.6 → Cython-3.0.8}/tests/errors/parsed_directive.pyx +0 -0
  1332. {Cython-3.0.6 → Cython-3.0.8}/tests/errors/pep448_syntax_1.pyx +0 -0
  1333. {Cython-3.0.6 → Cython-3.0.8}/tests/errors/pep448_syntax_2.pyx +0 -0
  1334. {Cython-3.0.6 → Cython-3.0.8}/tests/errors/pep448_syntax_3.pyx +0 -0
  1335. {Cython-3.0.6 → Cython-3.0.8}/tests/errors/pep487_exttype.pyx +0 -0
  1336. {Cython-3.0.6 → Cython-3.0.8}/tests/errors/pep492_badsyntax_async1.pyx +0 -0
  1337. {Cython-3.0.6 → Cython-3.0.8}/tests/errors/pep492_badsyntax_async4.pyx +0 -0
  1338. {Cython-3.0.6 → Cython-3.0.8}/tests/errors/pep492_badsyntax_async5.pyx +0 -0
  1339. {Cython-3.0.6 → Cython-3.0.8}/tests/errors/pep492_badsyntax_async7.pyx +0 -0
  1340. {Cython-3.0.6 → Cython-3.0.8}/tests/errors/pep492_badsyntax_async8.pyx +0 -0
  1341. {Cython-3.0.6 → Cython-3.0.8}/tests/errors/pep492_badsyntax_async9.pyx +0 -0
  1342. {Cython-3.0.6 → Cython-3.0.8}/tests/errors/posonly.pyx +0 -0
  1343. {Cython-3.0.6 → Cython-3.0.8}/tests/errors/posonly2.pyx +0 -0
  1344. {Cython-3.0.6 → Cython-3.0.8}/tests/errors/posonly3.pyx +0 -0
  1345. {Cython-3.0.6 → Cython-3.0.8}/tests/errors/posonly4.pyx +0 -0
  1346. {Cython-3.0.6 → Cython-3.0.8}/tests/errors/posonly5.pyx +0 -0
  1347. {Cython-3.0.6 → Cython-3.0.8}/tests/errors/pure_cclass_without_body.pxd +0 -0
  1348. {Cython-3.0.6 → Cython-3.0.8}/tests/errors/pure_cclass_without_body.py +0 -0
  1349. {Cython-3.0.6 → Cython-3.0.8}/tests/errors/pure_errors.py +0 -0
  1350. {Cython-3.0.6 → Cython-3.0.8}/tests/errors/pure_nogil_conditional.py +0 -0
  1351. {Cython-3.0.6 → Cython-3.0.8}/tests/errors/pure_warnings.py +0 -0
  1352. {Cython-3.0.6 → Cython-3.0.8}/tests/errors/pxd_cdef_class_declaration_T286.pxd +0 -0
  1353. {Cython-3.0.6 → Cython-3.0.8}/tests/errors/pxd_cdef_class_declaration_T286.pyx +0 -0
  1354. {Cython-3.0.6 → Cython-3.0.8}/tests/errors/pxd_signature_mismatch.pxd +0 -0
  1355. {Cython-3.0.6 → Cython-3.0.8}/tests/errors/pxd_signature_mismatch.pyx +0 -0
  1356. {Cython-3.0.6 → Cython-3.0.8}/tests/errors/py_ucs4_type_errors.pyx +0 -0
  1357. {Cython-3.0.6 → Cython-3.0.8}/tests/errors/py_unicode_type_errors.pyx +0 -0
  1358. {Cython-3.0.6 → Cython-3.0.8}/tests/errors/pyobjcastdisallow_T313.pyx +0 -0
  1359. {Cython-3.0.6 → Cython-3.0.8}/tests/errors/redeclaration_of_var_by_cfunc_T600.pyx +0 -0
  1360. {Cython-3.0.6 → Cython-3.0.8}/tests/errors/return_outside_function_T135.pyx +0 -0
  1361. {Cython-3.0.6 → Cython-3.0.8}/tests/errors/reversed_literal_pyobjs.pyx +0 -0
  1362. {Cython-3.0.6 → Cython-3.0.8}/tests/errors/se_badindent.pyx +0 -0
  1363. {Cython-3.0.6 → Cython-3.0.8}/tests/errors/se_badindent2.pyx +0 -0
  1364. {Cython-3.0.6 → Cython-3.0.8}/tests/errors/se_mixtabspace.pyx +0 -0
  1365. {Cython-3.0.6 → Cython-3.0.8}/tests/errors/se_multass.pyx +0 -0
  1366. {Cython-3.0.6 → Cython-3.0.8}/tests/errors/string_assignments.pyx +0 -0
  1367. {Cython-3.0.6 → Cython-3.0.8}/tests/errors/subtyping_final_class.pyx +0 -0
  1368. {Cython-3.0.6 → Cython-3.0.8}/tests/errors/syntax_warnings.pyx +0 -0
  1369. {Cython-3.0.6 → Cython-3.0.8}/tests/errors/tree_assert.pyx +0 -0
  1370. {Cython-3.0.6 → Cython-3.0.8}/tests/errors/typoT304.pyx +0 -0
  1371. {Cython-3.0.6 → Cython-3.0.8}/tests/errors/undefinedname.pyx +0 -0
  1372. {Cython-3.0.6 → Cython-3.0.8}/tests/errors/unicode_identifiers_e1.pyx +0 -0
  1373. {Cython-3.0.6 → Cython-3.0.8}/tests/errors/unicode_identifiers_e2.pyx +0 -0
  1374. {Cython-3.0.6 → Cython-3.0.8}/tests/errors/unicode_identifiers_e3.pyx +0 -0
  1375. {Cython-3.0.6 → Cython-3.0.8}/tests/errors/unicode_identifiers_e4.pyx +0 -0
  1376. {Cython-3.0.6 → Cython-3.0.8}/tests/errors/uninitialized_lhs.pyx +0 -0
  1377. {Cython-3.0.6 → Cython-3.0.8}/tests/errors/void_as_arg.pyx +0 -0
  1378. {Cython-3.0.6 → Cython-3.0.8}/tests/errors/w_cdef_override.pyx +0 -0
  1379. {Cython-3.0.6 → Cython-3.0.8}/tests/errors/w_numpy_arr_as_cppvec_ref.pyx +0 -0
  1380. {Cython-3.0.6 → Cython-3.0.8}/tests/errors/w_python_list_as_cppset_ref.pyx +0 -0
  1381. {Cython-3.0.6 → Cython-3.0.8}/tests/errors/w_undeclared.pyx +0 -0
  1382. {Cython-3.0.6 → Cython-3.0.8}/tests/errors/w_uninitialized.pyx +0 -0
  1383. {Cython-3.0.6 → Cython-3.0.8}/tests/errors/w_uninitialized_cpp.pyx +0 -0
  1384. {Cython-3.0.6 → Cython-3.0.8}/tests/errors/w_uninitialized_del.pyx +0 -0
  1385. {Cython-3.0.6 → Cython-3.0.8}/tests/errors/w_uninitialized_exc.pyx +0 -0
  1386. {Cython-3.0.6 → Cython-3.0.8}/tests/errors/w_uninitialized_for.pyx +0 -0
  1387. {Cython-3.0.6 → Cython-3.0.8}/tests/errors/w_uninitialized_generators.pyx +0 -0
  1388. {Cython-3.0.6 → Cython-3.0.8}/tests/errors/w_uninitialized_py2.pyx +0 -0
  1389. {Cython-3.0.6 → Cython-3.0.8}/tests/errors/w_uninitialized_py3.pyx +0 -0
  1390. {Cython-3.0.6 → Cython-3.0.8}/tests/errors/w_uninitialized_while.pyx +0 -0
  1391. {Cython-3.0.6 → Cython-3.0.8}/tests/errors/w_uninitialized_with.pyx +0 -0
  1392. {Cython-3.0.6 → Cython-3.0.8}/tests/errors/w_unreachable.pyx +0 -0
  1393. {Cython-3.0.6 → Cython-3.0.8}/tests/errors/w_unreachable_cf.pyx +0 -0
  1394. {Cython-3.0.6 → Cython-3.0.8}/tests/errors/w_unused.pyx +0 -0
  1395. {Cython-3.0.6 → Cython-3.0.8}/tests/errors/wraparound_warnings.pyx +0 -0
  1396. {Cython-3.0.6 → Cython-3.0.8}/tests/graal_bugs.txt +0 -0
  1397. {Cython-3.0.6 → Cython-3.0.8}/tests/limited_api_bugs.txt +0 -0
  1398. {Cython-3.0.6 → Cython-3.0.8}/tests/macos_cpp_bugs.txt +0 -0
  1399. {Cython-3.0.6 → Cython-3.0.8}/tests/memoryview/bufaccess.h +0 -0
  1400. {Cython-3.0.6 → Cython-3.0.8}/tests/memoryview/cfunc_convert_with_memoryview.pyx +0 -0
  1401. {Cython-3.0.6 → Cython-3.0.8}/tests/memoryview/compile_declarations.pyx +0 -0
  1402. {Cython-3.0.6 → Cython-3.0.8}/tests/memoryview/contig_check.pyx +0 -0
  1403. {Cython-3.0.6 → Cython-3.0.8}/tests/memoryview/cythonarray.pyx +0 -0
  1404. {Cython-3.0.6 → Cython-3.0.8}/tests/memoryview/error_declarations.pyx +0 -0
  1405. {Cython-3.0.6 → Cython-3.0.8}/tests/memoryview/extension_type_memoryview.pyx +0 -0
  1406. {Cython-3.0.6 → Cython-3.0.8}/tests/memoryview/memoryview.pxd +0 -0
  1407. {Cython-3.0.6 → Cython-3.0.8}/tests/memoryview/memoryview.pyx +0 -0
  1408. {Cython-3.0.6 → Cython-3.0.8}/tests/memoryview/memoryview_acq_count.srctree +0 -0
  1409. {Cython-3.0.6 → Cython-3.0.8}/tests/memoryview/memoryview_annotation_typing.py +0 -0
  1410. {Cython-3.0.6 → Cython-3.0.8}/tests/memoryview/memoryview_cache_builtins.srctree +0 -0
  1411. {Cython-3.0.6 → Cython-3.0.8}/tests/memoryview/memoryview_compare_type_pointers.srctree +0 -0
  1412. {Cython-3.0.6 → Cython-3.0.8}/tests/memoryview/memoryview_in_subclasses.pyx +0 -0
  1413. {Cython-3.0.6 → Cython-3.0.8}/tests/memoryview/memoryview_inline_pxd.srctree +0 -0
  1414. {Cython-3.0.6 → Cython-3.0.8}/tests/memoryview/memoryview_inplace_division.pyx +0 -0
  1415. {Cython-3.0.6 → Cython-3.0.8}/tests/memoryview/memoryview_no_binding_T3613.pyx +0 -0
  1416. {Cython-3.0.6 → Cython-3.0.8}/tests/memoryview/memoryview_no_withgil_check.pyx +0 -0
  1417. {Cython-3.0.6 → Cython-3.0.8}/tests/memoryview/memoryview_pep484_typing.pyx +0 -0
  1418. {Cython-3.0.6 → Cython-3.0.8}/tests/memoryview/memoryviewattrs.pyx +0 -0
  1419. {Cython-3.0.6 → Cython-3.0.8}/tests/memoryview/memslice.pyx +0 -0
  1420. {Cython-3.0.6 → Cython-3.0.8}/tests/memoryview/memview_assignments.pyx +0 -0
  1421. {Cython-3.0.6 → Cython-3.0.8}/tests/memoryview/numpy_memoryview.pyx +0 -0
  1422. {Cython-3.0.6 → Cython-3.0.8}/tests/memoryview/numpy_memoryview_readonly.pyx +0 -0
  1423. {Cython-3.0.6 → Cython-3.0.8}/tests/memoryview/parallel_refcounting_stress_test.pyx +0 -0
  1424. {Cython-3.0.6 → Cython-3.0.8}/tests/memoryview/relaxed_strides.pyx +0 -0
  1425. {Cython-3.0.6 → Cython-3.0.8}/tests/memoryview/transpose_refcount.pyx +0 -0
  1426. {Cython-3.0.6 → Cython-3.0.8}/tests/memoryview/view_return_errors.pyx +0 -0
  1427. {Cython-3.0.6 → Cython-3.0.8}/tests/pypy2_bugs.txt +0 -0
  1428. {Cython-3.0.6 → Cython-3.0.8}/tests/pypy_bugs.txt +0 -0
  1429. {Cython-3.0.6 → Cython-3.0.8}/tests/pypy_crash_bugs.txt +0 -0
  1430. {Cython-3.0.6 → Cython-3.0.8}/tests/pypy_implementation_detail_bugs.txt +0 -0
  1431. {Cython-3.0.6 → Cython-3.0.8}/tests/pyximport/pyximport_basic.srctree +0 -0
  1432. {Cython-3.0.6 → Cython-3.0.8}/tests/pyximport/pyximport_errors.srctree +0 -0
  1433. {Cython-3.0.6 → Cython-3.0.8}/tests/pyximport/pyximport_namespace.srctree +0 -0
  1434. {Cython-3.0.6 → Cython-3.0.8}/tests/pyximport/pyximport_pyimport.srctree +0 -0
  1435. {Cython-3.0.6 → Cython-3.0.8}/tests/pyximport/pyximport_pyimport_only.srctree +0 -0
  1436. {Cython-3.0.6 → Cython-3.0.8}/tests/pyximport/pyximport_pyxbld.srctree +0 -0
  1437. {Cython-3.0.6 → Cython-3.0.8}/tests/run/__debug__.srctree +0 -0
  1438. {Cython-3.0.6 → Cython-3.0.8}/tests/run/__getattribute__.pyx +0 -0
  1439. {Cython-3.0.6 → Cython-3.0.8}/tests/run/__getattribute_subclasses__.pyx +0 -0
  1440. {Cython-3.0.6 → Cython-3.0.8}/tests/run/absolute_import.srctree +0 -0
  1441. {Cython-3.0.6 → Cython-3.0.8}/tests/run/addloop.pyx +0 -0
  1442. {Cython-3.0.6 → Cython-3.0.8}/tests/run/addop.pyx +0 -0
  1443. {Cython-3.0.6 → Cython-3.0.8}/tests/run/addressof.pyx +0 -0
  1444. {Cython-3.0.6 → Cython-3.0.8}/tests/run/all.pyx +0 -0
  1445. {Cython-3.0.6 → Cython-3.0.8}/tests/run/altet2.pyx +0 -0
  1446. {Cython-3.0.6 → Cython-3.0.8}/tests/run/always_allow_keywords_T295.pyx +0 -0
  1447. {Cython-3.0.6 → Cython-3.0.8}/tests/run/and.pyx +0 -0
  1448. {Cython-3.0.6 → Cython-3.0.8}/tests/run/annotate_html.pyx +0 -0
  1449. {Cython-3.0.6 → Cython-3.0.8}/tests/run/annotation_typing.pyx +0 -0
  1450. {Cython-3.0.6 → Cython-3.0.8}/tests/run/anonymousenum.pyx +0 -0
  1451. {Cython-3.0.6 → Cython-3.0.8}/tests/run/any.pyx +0 -0
  1452. {Cython-3.0.6 → Cython-3.0.8}/tests/run/append.pyx +0 -0
  1453. {Cython-3.0.6 → Cython-3.0.8}/tests/run/arg_incref.pyx +0 -0
  1454. {Cython-3.0.6 → Cython-3.0.8}/tests/run/argdefault.pyx +0 -0
  1455. {Cython-3.0.6 → Cython-3.0.8}/tests/run/argerrors.py +0 -0
  1456. {Cython-3.0.6 → Cython-3.0.8}/tests/run/args_unpacking_in_closure_T658.pyx +0 -0
  1457. {Cython-3.0.6 → Cython-3.0.8}/tests/run/argument_unpacking_closure_T736.py +0 -0
  1458. {Cython-3.0.6 → Cython-3.0.8}/tests/run/arithmetic_analyse_types.pyx +0 -0
  1459. {Cython-3.0.6 → Cython-3.0.8}/tests/run/arithmetic_analyse_types_helper.h +0 -0
  1460. {Cython-3.0.6 → Cython-3.0.8}/tests/run/array_address.pyx +0 -0
  1461. {Cython-3.0.6 → Cython-3.0.8}/tests/run/array_cimport.srctree +0 -0
  1462. {Cython-3.0.6 → Cython-3.0.8}/tests/run/arrayassign.pyx +0 -0
  1463. {Cython-3.0.6 → Cython-3.0.8}/tests/run/ass2cglobal.pyx +0 -0
  1464. {Cython-3.0.6 → Cython-3.0.8}/tests/run/ass2global.py +0 -0
  1465. {Cython-3.0.6 → Cython-3.0.8}/tests/run/ass2local.pyx +0 -0
  1466. {Cython-3.0.6 → Cython-3.0.8}/tests/run/assert.pyx +0 -0
  1467. {Cython-3.0.6 → Cython-3.0.8}/tests/run/assigned_builtin_methods.pyx +0 -0
  1468. {Cython-3.0.6 → Cython-3.0.8}/tests/run/async_globals.pyx +0 -0
  1469. {Cython-3.0.6 → Cython-3.0.8}/tests/run/async_iter_pep492.pyx +0 -0
  1470. {Cython-3.0.6 → Cython-3.0.8}/tests/run/asyncio_generators.srctree +0 -0
  1471. {Cython-3.0.6 → Cython-3.0.8}/tests/run/attr.pyx +0 -0
  1472. {Cython-3.0.6 → Cython-3.0.8}/tests/run/attribute_and_lambda.pyx +0 -0
  1473. {Cython-3.0.6 → Cython-3.0.8}/tests/run/auto_cpdef.py +0 -0
  1474. {Cython-3.0.6 → Cython-3.0.8}/tests/run/auto_cpdef_closures.py +0 -0
  1475. {Cython-3.0.6 → Cython-3.0.8}/tests/run/autotestdict.pxd +0 -0
  1476. {Cython-3.0.6 → Cython-3.0.8}/tests/run/autotestdict.pyx +0 -0
  1477. {Cython-3.0.6 → Cython-3.0.8}/tests/run/autotestdict_all.pyx +0 -0
  1478. {Cython-3.0.6 → Cython-3.0.8}/tests/run/autotestdict_cdef.pyx +0 -0
  1479. {Cython-3.0.6 → Cython-3.0.8}/tests/run/autotestdict_skip.pyx +0 -0
  1480. {Cython-3.0.6 → Cython-3.0.8}/tests/run/baas3.pyx +0 -0
  1481. {Cython-3.0.6 → Cython-3.0.8}/tests/run/backquote.pyx +0 -0
  1482. {Cython-3.0.6 → Cython-3.0.8}/tests/run/bad_c_struct_T252.pyx +0 -0
  1483. {Cython-3.0.6 → Cython-3.0.8}/tests/run/behnel1.pyx +0 -0
  1484. {Cython-3.0.6 → Cython-3.0.8}/tests/run/behnel2.pyx +0 -0
  1485. {Cython-3.0.6 → Cython-3.0.8}/tests/run/behnel3.pyx +0 -0
  1486. {Cython-3.0.6 → Cython-3.0.8}/tests/run/big_indices.pyx +0 -0
  1487. {Cython-3.0.6 → Cython-3.0.8}/tests/run/binop_reverse_methods_GH2056.pyx +0 -0
  1488. {Cython-3.0.6 → Cython-3.0.8}/tests/run/bint.pyx +0 -0
  1489. {Cython-3.0.6 → Cython-3.0.8}/tests/run/bint_binop_T145.pyx +0 -0
  1490. {Cython-3.0.6 → Cython-3.0.8}/tests/run/bint_property_T354.pyx +0 -0
  1491. {Cython-3.0.6 → Cython-3.0.8}/tests/run/bishop1.pyx +0 -0
  1492. {Cython-3.0.6 → Cython-3.0.8}/tests/run/bishop2.pyx +0 -0
  1493. {Cython-3.0.6 → Cython-3.0.8}/tests/run/boolean_context.pyx +0 -0
  1494. {Cython-3.0.6 → Cython-3.0.8}/tests/run/boolop.pyx +0 -0
  1495. {Cython-3.0.6 → Cython-3.0.8}/tests/run/boolop_py.py +0 -0
  1496. {Cython-3.0.6 → Cython-3.0.8}/tests/run/bound_builtin_methods_T589.pyx +0 -0
  1497. {Cython-3.0.6 → Cython-3.0.8}/tests/run/broken_exception.pyx +0 -0
  1498. {Cython-3.0.6 → Cython-3.0.8}/tests/run/buffer_n_overflowcheck_T5356.pyx +0 -0
  1499. {Cython-3.0.6 → Cython-3.0.8}/tests/run/builtin_abs.pyx +0 -0
  1500. {Cython-3.0.6 → Cython-3.0.8}/tests/run/builtin_basestring.pyx +0 -0
  1501. {Cython-3.0.6 → Cython-3.0.8}/tests/run/builtin_callable.pyx +0 -0
  1502. {Cython-3.0.6 → Cython-3.0.8}/tests/run/builtin_float.py +0 -0
  1503. {Cython-3.0.6 → Cython-3.0.8}/tests/run/builtin_globals.py +0 -0
  1504. {Cython-3.0.6 → Cython-3.0.8}/tests/run/builtin_len.pyx +0 -0
  1505. {Cython-3.0.6 → Cython-3.0.8}/tests/run/builtin_memory_view.pyx +0 -0
  1506. {Cython-3.0.6 → Cython-3.0.8}/tests/run/builtin_methods_return_values.pyx +0 -0
  1507. {Cython-3.0.6 → Cython-3.0.8}/tests/run/builtin_min_max.pyx +0 -0
  1508. {Cython-3.0.6 → Cython-3.0.8}/tests/run/builtin_next.pyx +0 -0
  1509. {Cython-3.0.6 → Cython-3.0.8}/tests/run/builtin_ord.pyx +0 -0
  1510. {Cython-3.0.6 → Cython-3.0.8}/tests/run/builtin_pow.pyx +0 -0
  1511. {Cython-3.0.6 → Cython-3.0.8}/tests/run/builtin_py3.pyx +0 -0
  1512. {Cython-3.0.6 → Cython-3.0.8}/tests/run/builtin_slice.pyx +0 -0
  1513. {Cython-3.0.6 → Cython-3.0.8}/tests/run/builtin_sorted.pyx +0 -0
  1514. {Cython-3.0.6 → Cython-3.0.8}/tests/run/builtin_subtype_methods_T653.pyx +0 -0
  1515. {Cython-3.0.6 → Cython-3.0.8}/tests/run/builtin_subtype_methods_cy3.pyx +0 -0
  1516. {Cython-3.0.6 → Cython-3.0.8}/tests/run/builtin_type.pyx +0 -0
  1517. {Cython-3.0.6 → Cython-3.0.8}/tests/run/builtin_type_inheritance_T608.pyx +0 -0
  1518. {Cython-3.0.6 → Cython-3.0.8}/tests/run/builtin_type_inheritance_T608_py2only.pyx +0 -0
  1519. {Cython-3.0.6 → Cython-3.0.8}/tests/run/builtin_types_class.py +0 -0
  1520. {Cython-3.0.6 → Cython-3.0.8}/tests/run/builtin_types_none_T166.pyx +0 -0
  1521. {Cython-3.0.6 → Cython-3.0.8}/tests/run/builtincomplex.pyx +0 -0
  1522. {Cython-3.0.6 → Cython-3.0.8}/tests/run/builtinnames.pyx +0 -0
  1523. {Cython-3.0.6 → Cython-3.0.8}/tests/run/builtins_truth_test.pyx +0 -0
  1524. {Cython-3.0.6 → Cython-3.0.8}/tests/run/builtinslice.pyx +0 -0
  1525. {Cython-3.0.6 → Cython-3.0.8}/tests/run/bytearray_ascii_auto_encoding.pyx +0 -0
  1526. {Cython-3.0.6 → Cython-3.0.8}/tests/run/bytearray_coercion.pyx +0 -0
  1527. {Cython-3.0.6 → Cython-3.0.8}/tests/run/bytearray_default_auto_encoding.pyx +0 -0
  1528. {Cython-3.0.6 → Cython-3.0.8}/tests/run/bytearray_iter.py +0 -0
  1529. {Cython-3.0.6 → Cython-3.0.8}/tests/run/bytearraymethods.pyx +0 -0
  1530. {Cython-3.0.6 → Cython-3.0.8}/tests/run/bytes_char_coercion.pyx +0 -0
  1531. {Cython-3.0.6 → Cython-3.0.8}/tests/run/bytes_formatting.pyx +0 -0
  1532. {Cython-3.0.6 → Cython-3.0.8}/tests/run/bytes_indexing.pyx +0 -0
  1533. {Cython-3.0.6 → Cython-3.0.8}/tests/run/bytesmethods.pyx +0 -0
  1534. {Cython-3.0.6 → Cython-3.0.8}/tests/run/c_file_validation.srctree +0 -0
  1535. {Cython-3.0.6 → Cython-3.0.8}/tests/run/c_int_types_T255.pyx +0 -0
  1536. {Cython-3.0.6 → Cython-3.0.8}/tests/run/c_type_methods_T236.pyx +0 -0
  1537. {Cython-3.0.6 → Cython-3.0.8}/tests/run/call_crash.pyx +0 -0
  1538. {Cython-3.0.6 → Cython-3.0.8}/tests/run/call_py_cy.pyx +0 -0
  1539. {Cython-3.0.6 → Cython-3.0.8}/tests/run/callargs.pyx +0 -0
  1540. {Cython-3.0.6 → Cython-3.0.8}/tests/run/capiimpl.pyx +0 -0
  1541. {Cython-3.0.6 → Cython-3.0.8}/tests/run/carray_coercion.pyx +0 -0
  1542. {Cython-3.0.6 → Cython-3.0.8}/tests/run/carray_slicing.pyx +0 -0
  1543. {Cython-3.0.6 → Cython-3.0.8}/tests/run/carrays.pyx +0 -0
  1544. {Cython-3.0.6 → Cython-3.0.8}/tests/run/cascaded_list_unpacking_T467.pyx +0 -0
  1545. {Cython-3.0.6 → Cython-3.0.8}/tests/run/cascaded_typed_assignments_T466.pyx +0 -0
  1546. {Cython-3.0.6 → Cython-3.0.8}/tests/run/cascadedassignment.pyx +0 -0
  1547. {Cython-3.0.6 → Cython-3.0.8}/tests/run/cascmp.pyx +0 -0
  1548. {Cython-3.0.6 → Cython-3.0.8}/tests/run/cclass_assign_attr_GH3100.pyx +0 -0
  1549. {Cython-3.0.6 → Cython-3.0.8}/tests/run/cdef_bool_T227.pyx +0 -0
  1550. {Cython-3.0.6 → Cython-3.0.8}/tests/run/cdef_class_dataclass.pyx +0 -0
  1551. {Cython-3.0.6 → Cython-3.0.8}/tests/run/cdef_class_field.pyx +0 -0
  1552. {Cython-3.0.6 → Cython-3.0.8}/tests/run/cdef_class_order.pyx +0 -0
  1553. {Cython-3.0.6 → Cython-3.0.8}/tests/run/cdef_class_property_decorator_T264.pyx +0 -0
  1554. {Cython-3.0.6 → Cython-3.0.8}/tests/run/cdef_classmethod.pyx +0 -0
  1555. {Cython-3.0.6 → Cython-3.0.8}/tests/run/cdef_cpdef_override_GH543.srctree +0 -0
  1556. {Cython-3.0.6 → Cython-3.0.8}/tests/run/cdef_decorator_directives_T183.pyx +0 -0
  1557. {Cython-3.0.6 → Cython-3.0.8}/tests/run/cdef_function_kwargs.pyx +0 -0
  1558. {Cython-3.0.6 → Cython-3.0.8}/tests/run/cdef_locals_decorator_T477.pyx +0 -0
  1559. {Cython-3.0.6 → Cython-3.0.8}/tests/run/cdef_members_T517.pyx +0 -0
  1560. {Cython-3.0.6 → Cython-3.0.8}/tests/run/cdef_members_binding_properties.pyx +0 -0
  1561. {Cython-3.0.6 → Cython-3.0.8}/tests/run/cdef_methods_T462.pyx +0 -0
  1562. {Cython-3.0.6 → Cython-3.0.8}/tests/run/cdef_multiple_inheritance.pyx +0 -0
  1563. {Cython-3.0.6 → Cython-3.0.8}/tests/run/cdef_multiple_inheritance_cimport.srctree +0 -0
  1564. {Cython-3.0.6 → Cython-3.0.8}/tests/run/cdef_multiple_inheritance_errors.srctree +0 -0
  1565. {Cython-3.0.6 → Cython-3.0.8}/tests/run/cdef_multiple_inheritance_nodict.pyx +0 -0
  1566. {Cython-3.0.6 → Cython-3.0.8}/tests/run/cdef_opt.pxd +0 -0
  1567. {Cython-3.0.6 → Cython-3.0.8}/tests/run/cdef_opt.pyx +0 -0
  1568. {Cython-3.0.6 → Cython-3.0.8}/tests/run/cdef_setitem_T284.pyx +0 -0
  1569. {Cython-3.0.6 → Cython-3.0.8}/tests/run/cdefassign.pyx +0 -0
  1570. {Cython-3.0.6 → Cython-3.0.8}/tests/run/cdefoptargs.pyx +0 -0
  1571. {Cython-3.0.6 → Cython-3.0.8}/tests/run/cdivision_CEP_516.pyx +0 -0
  1572. {Cython-3.0.6 → Cython-3.0.8}/tests/run/cf_none.pyx +0 -0
  1573. {Cython-3.0.6 → Cython-3.0.8}/tests/run/cfunc_call_tuple_args_T408.pyx +0 -0
  1574. {Cython-3.0.6 → Cython-3.0.8}/tests/run/cfunc_convert.pyx +0 -0
  1575. {Cython-3.0.6 → Cython-3.0.8}/tests/run/cfuncdef.pyx +0 -0
  1576. {Cython-3.0.6 → Cython-3.0.8}/tests/run/cfuncptr.pyx +0 -0
  1577. {Cython-3.0.6 → Cython-3.0.8}/tests/run/char_constants_T99.pyx +0 -0
  1578. {Cython-3.0.6 → Cython-3.0.8}/tests/run/charcomparisonT412.pyx +0 -0
  1579. {Cython-3.0.6 → Cython-3.0.8}/tests/run/charencoding.pyx +0 -0
  1580. {Cython-3.0.6 → Cython-3.0.8}/tests/run/charescape.pyx +0 -0
  1581. {Cython-3.0.6 → Cython-3.0.8}/tests/run/charptr_comparison_T582.pyx +0 -0
  1582. {Cython-3.0.6 → Cython-3.0.8}/tests/run/charptr_decode.pyx +0 -0
  1583. {Cython-3.0.6 → Cython-3.0.8}/tests/run/charptr_from_temp.pyx +0 -0
  1584. {Cython-3.0.6 → Cython-3.0.8}/tests/run/charptr_len.pyx +0 -0
  1585. {Cython-3.0.6 → Cython-3.0.8}/tests/run/check_fused_types.pyx +0 -0
  1586. {Cython-3.0.6 → Cython-3.0.8}/tests/run/check_fused_types_pxd.pxd +0 -0
  1587. {Cython-3.0.6 → Cython-3.0.8}/tests/run/check_size.srctree +0 -0
  1588. {Cython-3.0.6 → Cython-3.0.8}/tests/run/cimport.srctree +0 -0
  1589. {Cython-3.0.6 → Cython-3.0.8}/tests/run/cimport_alias_subclass.pyx +0 -0
  1590. {Cython-3.0.6 → Cython-3.0.8}/tests/run/cimport_alias_subclass_helper.pxd +0 -0
  1591. {Cython-3.0.6 → Cython-3.0.8}/tests/run/cimport_cython_T505.pyx +0 -0
  1592. {Cython-3.0.6 → Cython-3.0.8}/tests/run/cimport_from_pyx.srctree +0 -0
  1593. {Cython-3.0.6 → Cython-3.0.8}/tests/run/cimport_from_sys_path.srctree +0 -0
  1594. {Cython-3.0.6 → Cython-3.0.8}/tests/run/cintop.pyx +0 -0
  1595. {Cython-3.0.6 → Cython-3.0.8}/tests/run/class_attribute_init_values_T18.pyx +0 -0
  1596. {Cython-3.0.6 → Cython-3.0.8}/tests/run/class_func_in_control_structures_T87.pyx +0 -0
  1597. {Cython-3.0.6 → Cython-3.0.8}/tests/run/class_redefine.py +0 -0
  1598. {Cython-3.0.6 → Cython-3.0.8}/tests/run/class_scope.py +0 -0
  1599. {Cython-3.0.6 → Cython-3.0.8}/tests/run/class_scope_del_T684.py +0 -0
  1600. {Cython-3.0.6 → Cython-3.0.8}/tests/run/classbody_exec.pyx +0 -0
  1601. {Cython-3.0.6 → Cython-3.0.8}/tests/run/classdecorators_T336.pyx +0 -0
  1602. {Cython-3.0.6 → Cython-3.0.8}/tests/run/classkwonlyargs.pyx +0 -0
  1603. {Cython-3.0.6 → Cython-3.0.8}/tests/run/classmethod.pyx +0 -0
  1604. {Cython-3.0.6 → Cython-3.0.8}/tests/run/classpass.pyx +0 -0
  1605. {Cython-3.0.6 → Cython-3.0.8}/tests/run/clear_to_null.pyx +0 -0
  1606. {Cython-3.0.6 → Cython-3.0.8}/tests/run/clone_type.pyx +0 -0
  1607. {Cython-3.0.6 → Cython-3.0.8}/tests/run/closure_arg_type_error.pyx +0 -0
  1608. {Cython-3.0.6 → Cython-3.0.8}/tests/run/closure_class_T596.pyx +0 -0
  1609. {Cython-3.0.6 → Cython-3.0.8}/tests/run/closure_decorators_T478.pyx +0 -0
  1610. {Cython-3.0.6 → Cython-3.0.8}/tests/run/closure_in_derived_class_T2967.pyx +0 -0
  1611. {Cython-3.0.6 → Cython-3.0.8}/tests/run/closure_inlining.pyx +0 -0
  1612. {Cython-3.0.6 → Cython-3.0.8}/tests/run/closure_inside_cdef_T554.pyx +0 -0
  1613. {Cython-3.0.6 → Cython-3.0.8}/tests/run/closure_leak_1.pyx +0 -0
  1614. {Cython-3.0.6 → Cython-3.0.8}/tests/run/closure_name_mangling_T537.pyx +0 -0
  1615. {Cython-3.0.6 → Cython-3.0.8}/tests/run/closure_names.pyx +0 -0
  1616. {Cython-3.0.6 → Cython-3.0.8}/tests/run/closure_self.pyx +0 -0
  1617. {Cython-3.0.6 → Cython-3.0.8}/tests/run/closure_tests_1.pyx +0 -0
  1618. {Cython-3.0.6 → Cython-3.0.8}/tests/run/closure_tests_2.pyx +0 -0
  1619. {Cython-3.0.6 → Cython-3.0.8}/tests/run/closure_tests_3.pyx +0 -0
  1620. {Cython-3.0.6 → Cython-3.0.8}/tests/run/closure_tests_4.pyx +0 -0
  1621. {Cython-3.0.6 → Cython-3.0.8}/tests/run/closures_T82.pyx +0 -0
  1622. {Cython-3.0.6 → Cython-3.0.8}/tests/run/cmethod_inline_T474.pxd +0 -0
  1623. {Cython-3.0.6 → Cython-3.0.8}/tests/run/cmethod_inline_T474.pyx +0 -0
  1624. {Cython-3.0.6 → Cython-3.0.8}/tests/run/cmp.pyx +0 -0
  1625. {Cython-3.0.6 → Cython-3.0.8}/tests/run/code_object_cache.pyx +0 -0
  1626. {Cython-3.0.6 → Cython-3.0.8}/tests/run/coercearraytoptr.pyx +0 -0
  1627. {Cython-3.0.6 → Cython-3.0.8}/tests/run/common_utility_types.srctree +0 -0
  1628. {Cython-3.0.6 → Cython-3.0.8}/tests/run/compare_binary_pyversions.pyx +0 -0
  1629. {Cython-3.0.6 → Cython-3.0.8}/tests/run/compiledef.pyx +0 -0
  1630. {Cython-3.0.6 → Cython-3.0.8}/tests/run/complex_cast_T445.pyx +0 -0
  1631. {Cython-3.0.6 → Cython-3.0.8}/tests/run/complex_coercion_sideeffects_T693.pyx +0 -0
  1632. {Cython-3.0.6 → Cython-3.0.8}/tests/run/complex_extern_GH1433.pyx +0 -0
  1633. {Cython-3.0.6 → Cython-3.0.8}/tests/run/complex_int_T446.pyx +0 -0
  1634. {Cython-3.0.6 → Cython-3.0.8}/tests/run/complex_numbers_T305.pyx +0 -0
  1635. {Cython-3.0.6 → Cython-3.0.8}/tests/run/complex_numbers_T305_long_double.pyx +0 -0
  1636. {Cython-3.0.6 → Cython-3.0.8}/tests/run/complex_numbers_c89_T398.h +0 -0
  1637. {Cython-3.0.6 → Cython-3.0.8}/tests/run/complex_numbers_c89_T398.pyx +0 -0
  1638. {Cython-3.0.6 → Cython-3.0.8}/tests/run/complex_numbers_c89_T398_long_double.pyx +0 -0
  1639. {Cython-3.0.6 → Cython-3.0.8}/tests/run/complex_numbers_c99_T398.h +0 -0
  1640. {Cython-3.0.6 → Cython-3.0.8}/tests/run/complex_numbers_c99_T398.pyx +0 -0
  1641. {Cython-3.0.6 → Cython-3.0.8}/tests/run/complex_numbers_cmath_T2891.pyx +0 -0
  1642. {Cython-3.0.6 → Cython-3.0.8}/tests/run/complex_numbers_cpp.pyx +0 -0
  1643. {Cython-3.0.6 → Cython-3.0.8}/tests/run/complex_numbers_cxx_T398.h +0 -0
  1644. {Cython-3.0.6 → Cython-3.0.8}/tests/run/complex_numbers_cxx_T398.pyx +0 -0
  1645. {Cython-3.0.6 → Cython-3.0.8}/tests/run/concatcstrings.pyx +0 -0
  1646. {Cython-3.0.6 → Cython-3.0.8}/tests/run/constant_folding.py +0 -0
  1647. {Cython-3.0.6 → Cython-3.0.8}/tests/run/constant_folding_cy.pyx +0 -0
  1648. {Cython-3.0.6 → Cython-3.0.8}/tests/run/constants.pyx +0 -0
  1649. {Cython-3.0.6 → Cython-3.0.8}/tests/run/contains_T455.pyx +0 -0
  1650. {Cython-3.0.6 → Cython-3.0.8}/tests/run/control_flow_except_T725.pyx +0 -0
  1651. {Cython-3.0.6 → Cython-3.0.8}/tests/run/control_flow_loop.pyx +0 -0
  1652. {Cython-3.0.6 → Cython-3.0.8}/tests/run/control_flow_stack_allocation.pyx +0 -0
  1653. {Cython-3.0.6 → Cython-3.0.8}/tests/run/coroutines.py +0 -0
  1654. {Cython-3.0.6 → Cython-3.0.8}/tests/run/coverage_api.srctree +0 -0
  1655. {Cython-3.0.6 → Cython-3.0.8}/tests/run/coverage_cmd.srctree +0 -0
  1656. {Cython-3.0.6 → Cython-3.0.8}/tests/run/coverage_cmd_src_layout.srctree +0 -0
  1657. {Cython-3.0.6 → Cython-3.0.8}/tests/run/coverage_cmd_src_pkg_layout.srctree +0 -0
  1658. {Cython-3.0.6 → Cython-3.0.8}/tests/run/coverage_installed_pkg.srctree +0 -0
  1659. {Cython-3.0.6 → Cython-3.0.8}/tests/run/coverage_nogil.srctree +0 -0
  1660. {Cython-3.0.6 → Cython-3.0.8}/tests/run/cpdef_enums.pxd +0 -0
  1661. {Cython-3.0.6 → Cython-3.0.8}/tests/run/cpdef_enums.pyx +0 -0
  1662. {Cython-3.0.6 → Cython-3.0.8}/tests/run/cpdef_extern_func.pxd +0 -0
  1663. {Cython-3.0.6 → Cython-3.0.8}/tests/run/cpdef_extern_func.pyx +0 -0
  1664. {Cython-3.0.6 → Cython-3.0.8}/tests/run/cpdef_extern_func_in_py.pxd +0 -0
  1665. {Cython-3.0.6 → Cython-3.0.8}/tests/run/cpdef_extern_func_in_py.py +0 -0
  1666. {Cython-3.0.6 → Cython-3.0.8}/tests/run/cpdef_method_override.pyx +0 -0
  1667. {Cython-3.0.6 → Cython-3.0.8}/tests/run/cpdef_method_override_recursion.pyx +0 -0
  1668. {Cython-3.0.6 → Cython-3.0.8}/tests/run/cpdef_nogil.pyx +0 -0
  1669. {Cython-3.0.6 → Cython-3.0.8}/tests/run/cpdef_optargs.pyx +0 -0
  1670. {Cython-3.0.6 → Cython-3.0.8}/tests/run/cpdef_optargs_pure.pxd +0 -0
  1671. {Cython-3.0.6 → Cython-3.0.8}/tests/run/cpdef_optargs_pure.py +0 -0
  1672. {Cython-3.0.6 → Cython-3.0.8}/tests/run/cpdef_pickle.srctree +0 -0
  1673. {Cython-3.0.6 → Cython-3.0.8}/tests/run/cpdef_scoped_enums.pyx +0 -0
  1674. {Cython-3.0.6 → Cython-3.0.8}/tests/run/cpdef_scoped_enums_import.srctree +0 -0
  1675. {Cython-3.0.6 → Cython-3.0.8}/tests/run/cpdef_temps_T411.pyx +0 -0
  1676. {Cython-3.0.6 → Cython-3.0.8}/tests/run/cpdef_void_return.pyx +0 -0
  1677. {Cython-3.0.6 → Cython-3.0.8}/tests/run/cpow.pyx +0 -0
  1678. {Cython-3.0.6 → Cython-3.0.8}/tests/run/cpp_assignment_overload.srctree +0 -0
  1679. {Cython-3.0.6 → Cython-3.0.8}/tests/run/cpp_bool.pyx +0 -0
  1680. {Cython-3.0.6 → Cython-3.0.8}/tests/run/cpp_bool_template_return.pyx +0 -0
  1681. {Cython-3.0.6 → Cython-3.0.8}/tests/run/cpp_call_stack_allocated.srctree +0 -0
  1682. {Cython-3.0.6 → Cython-3.0.8}/tests/run/cpp_class_attrib.srctree +0 -0
  1683. {Cython-3.0.6 → Cython-3.0.8}/tests/run/cpp_class_redef.pxd +0 -0
  1684. {Cython-3.0.6 → Cython-3.0.8}/tests/run/cpp_class_redef.pyx +0 -0
  1685. {Cython-3.0.6 → Cython-3.0.8}/tests/run/cpp_classes.pyx +0 -0
  1686. {Cython-3.0.6 → Cython-3.0.8}/tests/run/cpp_classes_def.pyx +0 -0
  1687. {Cython-3.0.6 → Cython-3.0.8}/tests/run/cpp_const_method.pyx +0 -0
  1688. {Cython-3.0.6 → Cython-3.0.8}/tests/run/cpp_custom_string.srctree +0 -0
  1689. {Cython-3.0.6 → Cython-3.0.8}/tests/run/cpp_enums.pyx +0 -0
  1690. {Cython-3.0.6 → Cython-3.0.8}/tests/run/cpp_exceptions.pyx +0 -0
  1691. {Cython-3.0.6 → Cython-3.0.8}/tests/run/cpp_exceptions_helper.h +0 -0
  1692. {Cython-3.0.6 → Cython-3.0.8}/tests/run/cpp_exceptions_nogil.pyx +0 -0
  1693. {Cython-3.0.6 → Cython-3.0.8}/tests/run/cpp_exceptions_nogil_helper.h +0 -0
  1694. {Cython-3.0.6 → Cython-3.0.8}/tests/run/cpp_exceptions_utility_code.pyx +0 -0
  1695. {Cython-3.0.6 → Cython-3.0.8}/tests/run/cpp_extern.srctree +0 -0
  1696. {Cython-3.0.6 → Cython-3.0.8}/tests/run/cpp_forwarding_ref.pyx +0 -0
  1697. {Cython-3.0.6 → Cython-3.0.8}/tests/run/cpp_function_lib.cpp +0 -0
  1698. {Cython-3.0.6 → Cython-3.0.8}/tests/run/cpp_function_lib.h +0 -0
  1699. {Cython-3.0.6 → Cython-3.0.8}/tests/run/cpp_function_lib.pxd +0 -0
  1700. {Cython-3.0.6 → Cython-3.0.8}/tests/run/cpp_iterators.pyx +0 -0
  1701. {Cython-3.0.6 → Cython-3.0.8}/tests/run/cpp_iterators_over_attribute_of_rvalue_support.h +0 -0
  1702. {Cython-3.0.6 → Cython-3.0.8}/tests/run/cpp_iterators_simple.h +0 -0
  1703. {Cython-3.0.6 → Cython-3.0.8}/tests/run/cpp_locals_directive.pyx +0 -0
  1704. {Cython-3.0.6 → Cython-3.0.8}/tests/run/cpp_locals_directive_unused.pyx +0 -0
  1705. {Cython-3.0.6 → Cython-3.0.8}/tests/run/cpp_locals_parallel.pyx +0 -0
  1706. {Cython-3.0.6 → Cython-3.0.8}/tests/run/cpp_move.pyx +0 -0
  1707. {Cython-3.0.6 → Cython-3.0.8}/tests/run/cpp_namespaces.pyx +0 -0
  1708. {Cython-3.0.6 → Cython-3.0.8}/tests/run/cpp_namespaces_helper.h +0 -0
  1709. {Cython-3.0.6 → Cython-3.0.8}/tests/run/cpp_nested_classes.pyx +0 -0
  1710. {Cython-3.0.6 → Cython-3.0.8}/tests/run/cpp_nested_classes_support.h +0 -0
  1711. {Cython-3.0.6 → Cython-3.0.8}/tests/run/cpp_nested_names.pxd +0 -0
  1712. {Cython-3.0.6 → Cython-3.0.8}/tests/run/cpp_nested_names_helper.h +0 -0
  1713. {Cython-3.0.6 → Cython-3.0.8}/tests/run/cpp_nested_templates.pyx +0 -0
  1714. {Cython-3.0.6 → Cython-3.0.8}/tests/run/cpp_nonstdint.h +0 -0
  1715. {Cython-3.0.6 → Cython-3.0.8}/tests/run/cpp_nonstdint.pyx +0 -0
  1716. {Cython-3.0.6 → Cython-3.0.8}/tests/run/cpp_operator_exc_handling.pyx +0 -0
  1717. {Cython-3.0.6 → Cython-3.0.8}/tests/run/cpp_operator_exc_handling_helper.hpp +0 -0
  1718. {Cython-3.0.6 → Cython-3.0.8}/tests/run/cpp_operators.pyx +0 -0
  1719. {Cython-3.0.6 → Cython-3.0.8}/tests/run/cpp_operators_helper.h +0 -0
  1720. {Cython-3.0.6 → Cython-3.0.8}/tests/run/cpp_scoped_enums.pyx +0 -0
  1721. {Cython-3.0.6 → Cython-3.0.8}/tests/run/cpp_smart_ptr.pyx +0 -0
  1722. {Cython-3.0.6 → Cython-3.0.8}/tests/run/cpp_smart_ptr_helper.h +0 -0
  1723. {Cython-3.0.6 → Cython-3.0.8}/tests/run/cpp_static_method_overload.pyx +0 -0
  1724. {Cython-3.0.6 → Cython-3.0.8}/tests/run/cpp_stl.pyx +0 -0
  1725. {Cython-3.0.6 → Cython-3.0.8}/tests/run/cpp_stl_algo_comparison_ops.pyx +0 -0
  1726. {Cython-3.0.6 → Cython-3.0.8}/tests/run/cpp_stl_algo_execpolicies.pyx +0 -0
  1727. {Cython-3.0.6 → Cython-3.0.8}/tests/run/cpp_stl_algo_minmax_ops.pyx +0 -0
  1728. {Cython-3.0.6 → Cython-3.0.8}/tests/run/cpp_stl_algo_modifying_sequence_ops.pyx +0 -0
  1729. {Cython-3.0.6 → Cython-3.0.8}/tests/run/cpp_stl_algo_nonmodifying_sequence_ops.pyx +0 -0
  1730. {Cython-3.0.6 → Cython-3.0.8}/tests/run/cpp_stl_algo_partitioning_ops.pyx +0 -0
  1731. {Cython-3.0.6 → Cython-3.0.8}/tests/run/cpp_stl_algo_permutation_ops.pyx +0 -0
  1732. {Cython-3.0.6 → Cython-3.0.8}/tests/run/cpp_stl_algo_sample.pyx +0 -0
  1733. {Cython-3.0.6 → Cython-3.0.8}/tests/run/cpp_stl_algo_sorted_ranges_other_ops.pyx +0 -0
  1734. {Cython-3.0.6 → Cython-3.0.8}/tests/run/cpp_stl_algo_sorted_ranges_set_ops.pyx +0 -0
  1735. {Cython-3.0.6 → Cython-3.0.8}/tests/run/cpp_stl_algo_sorting_ops.pyx +0 -0
  1736. {Cython-3.0.6 → Cython-3.0.8}/tests/run/cpp_stl_any.pyx +0 -0
  1737. {Cython-3.0.6 → Cython-3.0.8}/tests/run/cpp_stl_associated_containers_contains_cpp20.pyx +0 -0
  1738. {Cython-3.0.6 → Cython-3.0.8}/tests/run/cpp_stl_atomic.pyx +0 -0
  1739. {Cython-3.0.6 → Cython-3.0.8}/tests/run/cpp_stl_bit_cpp20.pyx +0 -0
  1740. {Cython-3.0.6 → Cython-3.0.8}/tests/run/cpp_stl_cmath_cpp17.pyx +0 -0
  1741. {Cython-3.0.6 → Cython-3.0.8}/tests/run/cpp_stl_cmath_cpp20.pyx +0 -0
  1742. {Cython-3.0.6 → Cython-3.0.8}/tests/run/cpp_stl_conversion.pyx +0 -0
  1743. {Cython-3.0.6 → Cython-3.0.8}/tests/run/cpp_stl_cpp11.pyx +0 -0
  1744. {Cython-3.0.6 → Cython-3.0.8}/tests/run/cpp_stl_forward_list.pyx +0 -0
  1745. {Cython-3.0.6 → Cython-3.0.8}/tests/run/cpp_stl_function.pyx +0 -0
  1746. {Cython-3.0.6 → Cython-3.0.8}/tests/run/cpp_stl_list.pyx +0 -0
  1747. {Cython-3.0.6 → Cython-3.0.8}/tests/run/cpp_stl_list_cpp11.pyx +0 -0
  1748. {Cython-3.0.6 → Cython-3.0.8}/tests/run/cpp_stl_map.pyx +0 -0
  1749. {Cython-3.0.6 → Cython-3.0.8}/tests/run/cpp_stl_multimap.pyx +0 -0
  1750. {Cython-3.0.6 → Cython-3.0.8}/tests/run/cpp_stl_multiset.pyx +0 -0
  1751. {Cython-3.0.6 → Cython-3.0.8}/tests/run/cpp_stl_numbers.pyx +0 -0
  1752. {Cython-3.0.6 → Cython-3.0.8}/tests/run/cpp_stl_numeric_ops.pyx +0 -0
  1753. {Cython-3.0.6 → Cython-3.0.8}/tests/run/cpp_stl_numeric_ops_cpp17.pyx +0 -0
  1754. {Cython-3.0.6 → Cython-3.0.8}/tests/run/cpp_stl_numeric_ops_cpp20.pyx +0 -0
  1755. {Cython-3.0.6 → Cython-3.0.8}/tests/run/cpp_stl_optional.pyx +0 -0
  1756. {Cython-3.0.6 → Cython-3.0.8}/tests/run/cpp_stl_random.pyx +0 -0
  1757. {Cython-3.0.6 → Cython-3.0.8}/tests/run/cpp_stl_set.pyx +0 -0
  1758. {Cython-3.0.6 → Cython-3.0.8}/tests/run/cpp_stl_string.pyx +0 -0
  1759. {Cython-3.0.6 → Cython-3.0.8}/tests/run/cpp_stl_string_ascii_auto_encoding.pyx +0 -0
  1760. {Cython-3.0.6 → Cython-3.0.8}/tests/run/cpp_stl_string_ascii_auto_encoding_str.pyx +0 -0
  1761. {Cython-3.0.6 → Cython-3.0.8}/tests/run/cpp_stl_string_cpp11.pyx +0 -0
  1762. {Cython-3.0.6 → Cython-3.0.8}/tests/run/cpp_stl_string_cpp20.pyx +0 -0
  1763. {Cython-3.0.6 → Cython-3.0.8}/tests/run/cpp_stl_string_utf8_auto_encoding.pyx +0 -0
  1764. {Cython-3.0.6 → Cython-3.0.8}/tests/run/cpp_stl_vector.pyx +0 -0
  1765. {Cython-3.0.6 → Cython-3.0.8}/tests/run/cpp_stl_vector_cpp11.pyx +0 -0
  1766. {Cython-3.0.6 → Cython-3.0.8}/tests/run/cpp_template_functions.pyx +0 -0
  1767. {Cython-3.0.6 → Cython-3.0.8}/tests/run/cpp_template_functions_helper.h +0 -0
  1768. {Cython-3.0.6 → Cython-3.0.8}/tests/run/cpp_template_ref_args.h +0 -0
  1769. {Cython-3.0.6 → Cython-3.0.8}/tests/run/cpp_template_ref_args.pyx +0 -0
  1770. {Cython-3.0.6 → Cython-3.0.8}/tests/run/cpp_template_subclasses.pyx +0 -0
  1771. {Cython-3.0.6 → Cython-3.0.8}/tests/run/cpp_template_subclasses_helper.h +0 -0
  1772. {Cython-3.0.6 → Cython-3.0.8}/tests/run/cpp_templates.pyx +0 -0
  1773. {Cython-3.0.6 → Cython-3.0.8}/tests/run/cpp_templates_helper.h +0 -0
  1774. {Cython-3.0.6 → Cython-3.0.8}/tests/run/cpp_type_inference.pyx +0 -0
  1775. {Cython-3.0.6 → Cython-3.0.8}/tests/run/cpp_unordered_map_helper.h +0 -0
  1776. {Cython-3.0.6 → Cython-3.0.8}/tests/run/cpp_vector_in_generator.pyx +0 -0
  1777. {Cython-3.0.6 → Cython-3.0.8}/tests/run/cpython_capi.pyx +0 -0
  1778. {Cython-3.0.6 → Cython-3.0.8}/tests/run/cpython_capi_py35.pyx +0 -0
  1779. {Cython-3.0.6 → Cython-3.0.8}/tests/run/crashT245.h +0 -0
  1780. {Cython-3.0.6 → Cython-3.0.8}/tests/run/crashT245.pyx +0 -0
  1781. {Cython-3.0.6 → Cython-3.0.8}/tests/run/crashT245_pxd.pxd +0 -0
  1782. {Cython-3.0.6 → Cython-3.0.8}/tests/run/cross_closure_type_inference.pyx +0 -0
  1783. {Cython-3.0.6 → Cython-3.0.8}/tests/run/cstringmeth.pyx +0 -0
  1784. {Cython-3.0.6 → Cython-3.0.8}/tests/run/cstringmul.pyx +0 -0
  1785. {Cython-3.0.6 → Cython-3.0.8}/tests/run/cstruct.pyx +0 -0
  1786. {Cython-3.0.6 → Cython-3.0.8}/tests/run/ct_DEF.pyx +0 -0
  1787. {Cython-3.0.6 → Cython-3.0.8}/tests/run/ct_IF.pyx +0 -0
  1788. {Cython-3.0.6 → Cython-3.0.8}/tests/run/ctruthtests.pyx +0 -0
  1789. {Cython-3.0.6 → Cython-3.0.8}/tests/run/ctuple.pyx +0 -0
  1790. {Cython-3.0.6 → Cython-3.0.8}/tests/run/ctypedef_bint.pyx +0 -0
  1791. {Cython-3.0.6 → Cython-3.0.8}/tests/run/ctypedef_char_types.pyx +0 -0
  1792. {Cython-3.0.6 → Cython-3.0.8}/tests/run/ctypedef_delegation.pyx +0 -0
  1793. {Cython-3.0.6 → Cython-3.0.8}/tests/run/ctypedef_int_types_T333.pyx +0 -0
  1794. {Cython-3.0.6 → Cython-3.0.8}/tests/run/ctypedef_int_types_chdr_T333.h +0 -0
  1795. {Cython-3.0.6 → Cython-3.0.8}/tests/run/ctypedef_int_types_defs_T333.pxd +0 -0
  1796. {Cython-3.0.6 → Cython-3.0.8}/tests/run/cunion.pyx +0 -0
  1797. {Cython-3.0.6 → Cython-3.0.8}/tests/run/curiously_recurring_template_pattern_GH1458.pyx +0 -0
  1798. {Cython-3.0.6 → Cython-3.0.8}/tests/run/curiously_recurring_template_pattern_GH1458_suport.h +0 -0
  1799. {Cython-3.0.6 → Cython-3.0.8}/tests/run/cyclic_gc.pyx +0 -0
  1800. {Cython-3.0.6 → Cython-3.0.8}/tests/run/cyfunction.pyx +0 -0
  1801. {Cython-3.0.6 → Cython-3.0.8}/tests/run/cyfunction_METH_O_GH1728.pyx +0 -0
  1802. {Cython-3.0.6 → Cython-3.0.8}/tests/run/cyfunction_defaults.pyx +0 -0
  1803. {Cython-3.0.6 → Cython-3.0.8}/tests/run/cyfunction_defaults_cpp.pyx +0 -0
  1804. {Cython-3.0.6 → Cython-3.0.8}/tests/run/cython2_bytes.pyx +0 -0
  1805. {Cython-3.0.6 → Cython-3.0.8}/tests/run/cython3.pyx +0 -0
  1806. {Cython-3.0.6 → Cython-3.0.8}/tests/run/cython3_no_unicode_literals.pyx +0 -0
  1807. {Cython-3.0.6 → Cython-3.0.8}/tests/run/cython_includes.pyx +0 -0
  1808. {Cython-3.0.6 → Cython-3.0.8}/tests/run/cython_no_files.srctree +0 -0
  1809. {Cython-3.0.6 → Cython-3.0.8}/tests/run/cythonscope.pyx +0 -0
  1810. {Cython-3.0.6 → Cython-3.0.8}/tests/run/datetime_cimport.pyx +0 -0
  1811. {Cython-3.0.6 → Cython-3.0.8}/tests/run/datetime_members.pyx +0 -0
  1812. {Cython-3.0.6 → Cython-3.0.8}/tests/run/datetime_pxd.pyx +0 -0
  1813. {Cython-3.0.6 → Cython-3.0.8}/tests/run/decorator_lambda.pyx +0 -0
  1814. {Cython-3.0.6 → Cython-3.0.8}/tests/run/decorators.pyx +0 -0
  1815. {Cython-3.0.6 → Cython-3.0.8}/tests/run/decorators_T593.pyx +0 -0
  1816. {Cython-3.0.6 → Cython-3.0.8}/tests/run/decorators_py_T593.py +0 -0
  1817. {Cython-3.0.6 → Cython-3.0.8}/tests/run/default_args_T674.py +0 -0
  1818. {Cython-3.0.6 → Cython-3.0.8}/tests/run/default_optional_gh5643.py +0 -0
  1819. {Cython-3.0.6 → Cython-3.0.8}/tests/run/define_macro.pyx +0 -0
  1820. {Cython-3.0.6 → Cython-3.0.8}/tests/run/define_macro_helper.h +0 -0
  1821. {Cython-3.0.6 → Cython-3.0.8}/tests/run/defnode_err_val.pyx +0 -0
  1822. {Cython-3.0.6 → Cython-3.0.8}/tests/run/delete.pyx +0 -0
  1823. {Cython-3.0.6 → Cython-3.0.8}/tests/run/delslice.py +0 -0
  1824. {Cython-3.0.6 → Cython-3.0.8}/tests/run/dict.pyx +0 -0
  1825. {Cython-3.0.6 → Cython-3.0.8}/tests/run/dict_get.pyx +0 -0
  1826. {Cython-3.0.6 → Cython-3.0.8}/tests/run/dict_getitem.pyx +0 -0
  1827. {Cython-3.0.6 → Cython-3.0.8}/tests/run/dict_iter_unpack.pyx +0 -0
  1828. {Cython-3.0.6 → Cython-3.0.8}/tests/run/dict_pop.pyx +0 -0
  1829. {Cython-3.0.6 → Cython-3.0.8}/tests/run/dict_setdefault.py +0 -0
  1830. {Cython-3.0.6 → Cython-3.0.8}/tests/run/dict_values_in_expression.pyx +0 -0
  1831. {Cython-3.0.6 → Cython-3.0.8}/tests/run/dictcomp.pyx +0 -0
  1832. {Cython-3.0.6 → Cython-3.0.8}/tests/run/dictintindex.pyx +0 -0
  1833. {Cython-3.0.6 → Cython-3.0.8}/tests/run/dietachmayer1.pyx +0 -0
  1834. {Cython-3.0.6 → Cython-3.0.8}/tests/run/different_package_names.srctree +0 -0
  1835. {Cython-3.0.6 → Cython-3.0.8}/tests/run/directive_locals_in_pxd.pxd +0 -0
  1836. {Cython-3.0.6 → Cython-3.0.8}/tests/run/directive_locals_in_pxd.py +0 -0
  1837. {Cython-3.0.6 → Cython-3.0.8}/tests/run/division_T384.pyx +0 -0
  1838. {Cython-3.0.6 → Cython-3.0.8}/tests/run/dotted_filenames.srctree +0 -0
  1839. {Cython-3.0.6 → Cython-3.0.8}/tests/run/double_dealloc_T796.pyx +0 -0
  1840. {Cython-3.0.6 → Cython-3.0.8}/tests/run/duplicate_keyword_in_call.py +0 -0
  1841. {Cython-3.0.6 → Cython-3.0.8}/tests/run/duplicate_utilitycode_from_pyx.srctree +0 -0
  1842. {Cython-3.0.6 → Cython-3.0.8}/tests/run/dynamic_args.pyx +0 -0
  1843. {Cython-3.0.6 → Cython-3.0.8}/tests/run/dynamic_attributes.pxd +0 -0
  1844. {Cython-3.0.6 → Cython-3.0.8}/tests/run/dynamic_attributes.pyx +0 -0
  1845. {Cython-3.0.6 → Cython-3.0.8}/tests/run/ellipsis_T488.pyx +0 -0
  1846. {Cython-3.0.6 → Cython-3.0.8}/tests/run/embedsignatures.pyx +0 -0
  1847. {Cython-3.0.6 → Cython-3.0.8}/tests/run/embedsignatures_clinic.pyx +0 -0
  1848. {Cython-3.0.6 → Cython-3.0.8}/tests/run/embedsignatures_python.pyx +0 -0
  1849. {Cython-3.0.6 → Cython-3.0.8}/tests/run/empty_builtin_constructors.pyx +0 -0
  1850. {Cython-3.0.6 → Cython-3.0.8}/tests/run/empty_declarators.pyx +0 -0
  1851. {Cython-3.0.6 → Cython-3.0.8}/tests/run/empty_for_loop_T208.pyx +0 -0
  1852. {Cython-3.0.6 → Cython-3.0.8}/tests/run/enumboolctx.pyx +0 -0
  1853. {Cython-3.0.6 → Cython-3.0.8}/tests/run/enumerate_T316.pyx +0 -0
  1854. {Cython-3.0.6 → Cython-3.0.8}/tests/run/error_pos.srctree +0 -0
  1855. {Cython-3.0.6 → Cython-3.0.8}/tests/run/eval.pyx +0 -0
  1856. {Cython-3.0.6 → Cython-3.0.8}/tests/run/exarkun.pyx +0 -0
  1857. {Cython-3.0.6 → Cython-3.0.8}/tests/run/exceptionpropagation.pyx +0 -0
  1858. {Cython-3.0.6 → Cython-3.0.8}/tests/run/exceptionrefcount.pyx +0 -0
  1859. {Cython-3.0.6 → Cython-3.0.8}/tests/run/exceptions_nogil.pyx +0 -0
  1860. {Cython-3.0.6 → Cython-3.0.8}/tests/run/exec_noargs.pyx +0 -0
  1861. {Cython-3.0.6 → Cython-3.0.8}/tests/run/exectest.pyx +0 -0
  1862. {Cython-3.0.6 → Cython-3.0.8}/tests/run/existing_output_files.srctree +0 -0
  1863. {Cython-3.0.6 → Cython-3.0.8}/tests/run/ext_attr_assign.pyx +0 -0
  1864. {Cython-3.0.6 → Cython-3.0.8}/tests/run/ext_attr_getter.srctree +0 -0
  1865. {Cython-3.0.6 → Cython-3.0.8}/tests/run/ext_attribute_cache.pyx +0 -0
  1866. {Cython-3.0.6 → Cython-3.0.8}/tests/run/ext_auto_richcmp.py +0 -0
  1867. {Cython-3.0.6 → Cython-3.0.8}/tests/run/ext_instance_type_T232.pyx +0 -0
  1868. {Cython-3.0.6 → Cython-3.0.8}/tests/run/ext_type_none_arg.pyx +0 -0
  1869. {Cython-3.0.6 → Cython-3.0.8}/tests/run/extclassbody.pyx +0 -0
  1870. {Cython-3.0.6 → Cython-3.0.8}/tests/run/extclasspass.pyx +0 -0
  1871. {Cython-3.0.6 → Cython-3.0.8}/tests/run/extcmethod.pyx +0 -0
  1872. {Cython-3.0.6 → Cython-3.0.8}/tests/run/extended_unpacking_T235.pyx +0 -0
  1873. {Cython-3.0.6 → Cython-3.0.8}/tests/run/extended_unpacking_T409.pyx +0 -0
  1874. {Cython-3.0.6 → Cython-3.0.8}/tests/run/extern_builtins_T258.pyx +0 -0
  1875. {Cython-3.0.6 → Cython-3.0.8}/tests/run/extern_impl.srctree +0 -0
  1876. {Cython-3.0.6 → Cython-3.0.8}/tests/run/extern_impl_excvalue.srctree +0 -0
  1877. {Cython-3.0.6 → Cython-3.0.8}/tests/run/extern_include_order.srctree +0 -0
  1878. {Cython-3.0.6 → Cython-3.0.8}/tests/run/extern_varobject_extensions.srctree +0 -0
  1879. {Cython-3.0.6 → Cython-3.0.8}/tests/run/external_defs.h +0 -0
  1880. {Cython-3.0.6 → Cython-3.0.8}/tests/run/external_inline_declaration.srctree +0 -0
  1881. {Cython-3.0.6 → Cython-3.0.8}/tests/run/external_ref_reassignment.pyx +0 -0
  1882. {Cython-3.0.6 → Cython-3.0.8}/tests/run/extinherit.pyx +0 -0
  1883. {Cython-3.0.6 → Cython-3.0.8}/tests/run/extinstantiate.pyx +0 -0
  1884. {Cython-3.0.6 → Cython-3.0.8}/tests/run/extkwonlyargs.pyx +0 -0
  1885. {Cython-3.0.6 → Cython-3.0.8}/tests/run/extlen.pyx +0 -0
  1886. {Cython-3.0.6 → Cython-3.0.8}/tests/run/extmember.pxd +0 -0
  1887. {Cython-3.0.6 → Cython-3.0.8}/tests/run/extmember.pyx +0 -0
  1888. {Cython-3.0.6 → Cython-3.0.8}/tests/run/extpropertyref.pyx +0 -0
  1889. {Cython-3.0.6 → Cython-3.0.8}/tests/run/extra_walrus.py +0 -0
  1890. {Cython-3.0.6 → Cython-3.0.8}/tests/run/extstarargs.pyx +0 -0
  1891. {Cython-3.0.6 → Cython-3.0.8}/tests/run/exttype.pyx +0 -0
  1892. {Cython-3.0.6 → Cython-3.0.8}/tests/run/exttype_dealloc.pyx +0 -0
  1893. {Cython-3.0.6 → Cython-3.0.8}/tests/run/exttype_freelist.pyx +0 -0
  1894. {Cython-3.0.6 → Cython-3.0.8}/tests/run/exttype_gc.pyx +0 -0
  1895. {Cython-3.0.6 → Cython-3.0.8}/tests/run/exttype_total_ordering.pyx +0 -0
  1896. {Cython-3.0.6 → Cython-3.0.8}/tests/run/fastcall.pyx +0 -0
  1897. {Cython-3.0.6 → Cython-3.0.8}/tests/run/file_encoding_T740.py +0 -0
  1898. {Cython-3.0.6 → Cython-3.0.8}/tests/run/filenames.pxi +0 -0
  1899. {Cython-3.0.6 → Cython-3.0.8}/tests/run/filenames.pyx +0 -0
  1900. {Cython-3.0.6 → Cython-3.0.8}/tests/run/final_cdef_class.pyx +0 -0
  1901. {Cython-3.0.6 → Cython-3.0.8}/tests/run/final_in_pxd.srctree +0 -0
  1902. {Cython-3.0.6 → Cython-3.0.8}/tests/run/final_method_T586.pyx +0 -0
  1903. {Cython-3.0.6 → Cython-3.0.8}/tests/run/flatin.pyx +0 -0
  1904. {Cython-3.0.6 → Cython-3.0.8}/tests/run/float_division.pyx +0 -0
  1905. {Cython-3.0.6 → Cython-3.0.8}/tests/run/float_floor_division_T260.pyx +0 -0
  1906. {Cython-3.0.6 → Cython-3.0.8}/tests/run/float_len_T480.pyx +0 -0
  1907. {Cython-3.0.6 → Cython-3.0.8}/tests/run/fmod.pyx +0 -0
  1908. {Cython-3.0.6 → Cython-3.0.8}/tests/run/for_decrement.pyx +0 -0
  1909. {Cython-3.0.6 → Cython-3.0.8}/tests/run/for_from_float_T254.pyx +0 -0
  1910. {Cython-3.0.6 → Cython-3.0.8}/tests/run/for_from_pyvar_loop_T601.pyx +0 -0
  1911. {Cython-3.0.6 → Cython-3.0.8}/tests/run/for_in_break_continue_T533.pyx +0 -0
  1912. {Cython-3.0.6 → Cython-3.0.8}/tests/run/for_in_iter.py +0 -0
  1913. {Cython-3.0.6 → Cython-3.0.8}/tests/run/for_in_range_T372.pyx +0 -0
  1914. {Cython-3.0.6 → Cython-3.0.8}/tests/run/for_in_string.pyx +0 -0
  1915. {Cython-3.0.6 → Cython-3.0.8}/tests/run/forfrom.pyx +0 -0
  1916. {Cython-3.0.6 → Cython-3.0.8}/tests/run/fstring.pyx +0 -0
  1917. {Cython-3.0.6 → Cython-3.0.8}/tests/run/funcexc_iter_T228.pyx +0 -0
  1918. {Cython-3.0.6 → Cython-3.0.8}/tests/run/funcexcept.pyx +0 -0
  1919. {Cython-3.0.6 → Cython-3.0.8}/tests/run/funcexceptchained.pyx +0 -0
  1920. {Cython-3.0.6 → Cython-3.0.8}/tests/run/funcexceptcypy.pyx +0 -0
  1921. {Cython-3.0.6 → Cython-3.0.8}/tests/run/funcexceptraise.pyx +0 -0
  1922. {Cython-3.0.6 → Cython-3.0.8}/tests/run/funcexceptraisefrom.pyx +0 -0
  1923. {Cython-3.0.6 → Cython-3.0.8}/tests/run/funcexceptreplace.pyx +0 -0
  1924. {Cython-3.0.6 → Cython-3.0.8}/tests/run/funcexceptreraise.pyx +0 -0
  1925. {Cython-3.0.6 → Cython-3.0.8}/tests/run/funcexceptreturn.pyx +0 -0
  1926. {Cython-3.0.6 → Cython-3.0.8}/tests/run/function_as_method_T494.pyx +0 -0
  1927. {Cython-3.0.6 → Cython-3.0.8}/tests/run/function_as_method_py_T494.py +0 -0
  1928. {Cython-3.0.6 → Cython-3.0.8}/tests/run/function_binding_T494.pyx +0 -0
  1929. {Cython-3.0.6 → Cython-3.0.8}/tests/run/function_self.py +0 -0
  1930. {Cython-3.0.6 → Cython-3.0.8}/tests/run/fused_bound_functions.py +0 -0
  1931. {Cython-3.0.6 → Cython-3.0.8}/tests/run/fused_cmethods.srctree +0 -0
  1932. {Cython-3.0.6 → Cython-3.0.8}/tests/run/fused_cpp.pyx +0 -0
  1933. {Cython-3.0.6 → Cython-3.0.8}/tests/run/fused_def.pyx +0 -0
  1934. {Cython-3.0.6 → Cython-3.0.8}/tests/run/fused_types_complex.pyx +0 -0
  1935. {Cython-3.0.6 → Cython-3.0.8}/tests/run/future_division.pyx +0 -0
  1936. {Cython-3.0.6 → Cython-3.0.8}/tests/run/future_unicode_literals.pyx +0 -0
  1937. {Cython-3.0.6 → Cython-3.0.8}/tests/run/generator_expressions.pyx +0 -0
  1938. {Cython-3.0.6 → Cython-3.0.8}/tests/run/generator_expressions_and_locals.pyx +0 -0
  1939. {Cython-3.0.6 → Cython-3.0.8}/tests/run/generator_expressions_in_class.py +0 -0
  1940. {Cython-3.0.6 → Cython-3.0.8}/tests/run/generator_expressions_nested.pyx +0 -0
  1941. {Cython-3.0.6 → Cython-3.0.8}/tests/run/generator_frame_cycle.py +0 -0
  1942. {Cython-3.0.6 → Cython-3.0.8}/tests/run/generator_type_inference.pyx +0 -0
  1943. {Cython-3.0.6 → Cython-3.0.8}/tests/run/generators.pyx +0 -0
  1944. {Cython-3.0.6 → Cython-3.0.8}/tests/run/generators_GH1731.pyx +0 -0
  1945. {Cython-3.0.6 → Cython-3.0.8}/tests/run/generators_in_refcycles.pyx +0 -0
  1946. {Cython-3.0.6 → Cython-3.0.8}/tests/run/generators_pep479.pyx +0 -0
  1947. {Cython-3.0.6 → Cython-3.0.8}/tests/run/generators_py.py +0 -0
  1948. {Cython-3.0.6 → Cython-3.0.8}/tests/run/generators_py35.py +0 -0
  1949. {Cython-3.0.6 → Cython-3.0.8}/tests/run/genexpr_T491.pyx +0 -0
  1950. {Cython-3.0.6 → Cython-3.0.8}/tests/run/genexpr_T715.pyx +0 -0
  1951. {Cython-3.0.6 → Cython-3.0.8}/tests/run/genexpr_arg_order.py +0 -0
  1952. {Cython-3.0.6 → Cython-3.0.8}/tests/run/genexpr_iterable_lookup_T600.pyx +0 -0
  1953. {Cython-3.0.6 → Cython-3.0.8}/tests/run/getattr3call.pyx +0 -0
  1954. {Cython-3.0.6 → Cython-3.0.8}/tests/run/gil_in_var_initialization_tests.pyx +0 -0
  1955. {Cython-3.0.6 → Cython-3.0.8}/tests/run/hasattr.pyx +0 -0
  1956. {Cython-3.0.6 → Cython-3.0.8}/tests/run/hash_T326.pyx +0 -0
  1957. {Cython-3.0.6 → Cython-3.0.8}/tests/run/if.pyx +0 -0
  1958. {Cython-3.0.6 → Cython-3.0.8}/tests/run/if_and_or.pyx +0 -0
  1959. {Cython-3.0.6 → Cython-3.0.8}/tests/run/if_const.pyx +0 -0
  1960. {Cython-3.0.6 → Cython-3.0.8}/tests/run/if_else_expr.pyx +0 -0
  1961. {Cython-3.0.6 → Cython-3.0.8}/tests/run/if_else_expr_cpp.pyx +0 -0
  1962. {Cython-3.0.6 → Cython-3.0.8}/tests/run/if_else_expr_cpp_helper.h +0 -0
  1963. {Cython-3.0.6 → Cython-3.0.8}/tests/run/ifelseexpr_T267.pyx +0 -0
  1964. {Cython-3.0.6 → Cython-3.0.8}/tests/run/import_error_T734.py +0 -0
  1965. {Cython-3.0.6 → Cython-3.0.8}/tests/run/import_star.pyx +0 -0
  1966. {Cython-3.0.6 → Cython-3.0.8}/tests/run/importas.pyx +0 -0
  1967. {Cython-3.0.6 → Cython-3.0.8}/tests/run/importas_from_package.srctree +0 -0
  1968. {Cython-3.0.6 → Cython-3.0.8}/tests/run/importfrom.pyx +0 -0
  1969. {Cython-3.0.6 → Cython-3.0.8}/tests/run/in_list_with_side_effects_T544.pyx +0 -0
  1970. {Cython-3.0.6 → Cython-3.0.8}/tests/run/include.pyx +0 -0
  1971. {Cython-3.0.6 → Cython-3.0.8}/tests/run/include_multiple_modules.srctree +0 -0
  1972. {Cython-3.0.6 → Cython-3.0.8}/tests/run/includes/a.h +0 -0
  1973. {Cython-3.0.6 → Cython-3.0.8}/tests/run/includes/all.pyx +0 -0
  1974. {Cython-3.0.6 → Cython-3.0.8}/tests/run/includes/b.h +0 -0
  1975. {Cython-3.0.6 → Cython-3.0.8}/tests/run/includes/b.pxd +0 -0
  1976. {Cython-3.0.6 → Cython-3.0.8}/tests/run/includes/c.h +0 -0
  1977. {Cython-3.0.6 → Cython-3.0.8}/tests/run/includes/d.h +0 -0
  1978. {Cython-3.0.6 → Cython-3.0.8}/tests/run/includes/d.pxd +0 -0
  1979. {Cython-3.0.6 → Cython-3.0.8}/tests/run/includes/e.h +0 -0
  1980. {Cython-3.0.6 → Cython-3.0.8}/tests/run/includes/includefile.pxi +0 -0
  1981. {Cython-3.0.6 → Cython-3.0.8}/tests/run/includes/indirect_d.pxd +0 -0
  1982. {Cython-3.0.6 → Cython-3.0.8}/tests/run/index.pyx +0 -0
  1983. {Cython-3.0.6 → Cython-3.0.8}/tests/run/inhcmethcall.pyx +0 -0
  1984. {Cython-3.0.6 → Cython-3.0.8}/tests/run/inherited_final_method.pyx +0 -0
  1985. {Cython-3.0.6 → Cython-3.0.8}/tests/run/initial_file_path.srctree +0 -0
  1986. {Cython-3.0.6 → Cython-3.0.8}/tests/run/inline.pyx +0 -0
  1987. {Cython-3.0.6 → Cython-3.0.8}/tests/run/inlined_context_manager.pyx +0 -0
  1988. {Cython-3.0.6 → Cython-3.0.8}/tests/run/inlined_generator_expressions.pyx +0 -0
  1989. {Cython-3.0.6 → Cython-3.0.8}/tests/run/inlinepxd.pxd +0 -0
  1990. {Cython-3.0.6 → Cython-3.0.8}/tests/run/inlinepxd.pyx +0 -0
  1991. {Cython-3.0.6 → Cython-3.0.8}/tests/run/inlinepxd_support.pxd +0 -0
  1992. {Cython-3.0.6 → Cython-3.0.8}/tests/run/inop.pyx +0 -0
  1993. {Cython-3.0.6 → Cython-3.0.8}/tests/run/inplace.pyx +0 -0
  1994. {Cython-3.0.6 → Cython-3.0.8}/tests/run/int128.pyx +0 -0
  1995. {Cython-3.0.6 → Cython-3.0.8}/tests/run/int_float_builtins_as_casts_T400.pyx +0 -0
  1996. {Cython-3.0.6 → Cython-3.0.8}/tests/run/int_float_builtins_as_casts_T400_long_double.pyx +0 -0
  1997. {Cython-3.0.6 → Cython-3.0.8}/tests/run/int_literals.pyx +0 -0
  1998. {Cython-3.0.6 → Cython-3.0.8}/tests/run/intern_T431.pyx +0 -0
  1999. {Cython-3.0.6 → Cython-3.0.8}/tests/run/internal_cdef_class.pyx +0 -0
  2000. {Cython-3.0.6 → Cython-3.0.8}/tests/run/ipow_crash_T562.pyx +0 -0
  2001. {Cython-3.0.6 → Cython-3.0.8}/tests/run/ishimoto2.pyx +0 -0
  2002. {Cython-3.0.6 → Cython-3.0.8}/tests/run/ishimoto3.pyx +0 -0
  2003. {Cython-3.0.6 → Cython-3.0.8}/tests/run/isinstance.pyx +0 -0
  2004. {Cython-3.0.6 → Cython-3.0.8}/tests/run/isnonebool.pyx +0 -0
  2005. {Cython-3.0.6 → Cython-3.0.8}/tests/run/isnot.pyx +0 -0
  2006. {Cython-3.0.6 → Cython-3.0.8}/tests/run/isolated_limited_api_tests.srctree +0 -0
  2007. {Cython-3.0.6 → Cython-3.0.8}/tests/run/iter.pyx +0 -0
  2008. {Cython-3.0.6 → Cython-3.0.8}/tests/run/iteratorexception.pyx +0 -0
  2009. {Cython-3.0.6 → Cython-3.0.8}/tests/run/iterdict.pyx +0 -0
  2010. {Cython-3.0.6 → Cython-3.0.8}/tests/run/jarausch1.pyx +0 -0
  2011. {Cython-3.0.6 → Cython-3.0.8}/tests/run/king1.pyx +0 -0
  2012. {Cython-3.0.6 → Cython-3.0.8}/tests/run/knuth_man_or_boy_test.pyx +0 -0
  2013. {Cython-3.0.6 → Cython-3.0.8}/tests/run/kostyrka.pyx +0 -0
  2014. {Cython-3.0.6 → Cython-3.0.8}/tests/run/kostyrka2.pyx +0 -0
  2015. {Cython-3.0.6 → Cython-3.0.8}/tests/run/kwargproblems.pyx +0 -0
  2016. {Cython-3.0.6 → Cython-3.0.8}/tests/run/kwargs_passthrough.pyx +0 -0
  2017. {Cython-3.0.6 → Cython-3.0.8}/tests/run/kwonlyargs.pyx +0 -0
  2018. {Cython-3.0.6 → Cython-3.0.8}/tests/run/kwonlyargscall.pyx +0 -0
  2019. {Cython-3.0.6 → Cython-3.0.8}/tests/run/lambda_T195.pyx +0 -0
  2020. {Cython-3.0.6 → Cython-3.0.8}/tests/run/lambda_T723.pyx +0 -0
  2021. {Cython-3.0.6 → Cython-3.0.8}/tests/run/lambda_class_T605.pyx +0 -0
  2022. {Cython-3.0.6 → Cython-3.0.8}/tests/run/lambda_module_T603.pyx +0 -0
  2023. {Cython-3.0.6 → Cython-3.0.8}/tests/run/lambda_tests.pyx +0 -0
  2024. {Cython-3.0.6 → Cython-3.0.8}/tests/run/language_level.srctree +0 -0
  2025. {Cython-3.0.6 → Cython-3.0.8}/tests/run/large_consts_T237.pyx +0 -0
  2026. {Cython-3.0.6 → Cython-3.0.8}/tests/run/large_integer_T5290.py +0 -0
  2027. {Cython-3.0.6 → Cython-3.0.8}/tests/run/legacy_implicit_noexcept.pyx +0 -0
  2028. {Cython-3.0.6 → Cython-3.0.8}/tests/run/legacy_implicit_noexcept_build.srctree +0 -0
  2029. {Cython-3.0.6 → Cython-3.0.8}/tests/run/lepage_1.pyx +0 -0
  2030. {Cython-3.0.6 → Cython-3.0.8}/tests/run/letnode_T766.pyx +0 -0
  2031. {Cython-3.0.6 → Cython-3.0.8}/tests/run/libc_math.pyx +0 -0
  2032. {Cython-3.0.6 → Cython-3.0.8}/tests/run/libc_stdlib.pyx +0 -0
  2033. {Cython-3.0.6 → Cython-3.0.8}/tests/run/libc_time.pyx +0 -0
  2034. {Cython-3.0.6 → Cython-3.0.8}/tests/run/libcpp_algo.pyx +0 -0
  2035. {Cython-3.0.6 → Cython-3.0.8}/tests/run/libcpp_all.pyx +0 -0
  2036. {Cython-3.0.6 → Cython-3.0.8}/tests/run/line_profile_test.srctree +0 -0
  2037. {Cython-3.0.6 → Cython-3.0.8}/tests/run/line_trace.pyx +0 -0
  2038. {Cython-3.0.6 → Cython-3.0.8}/tests/run/list.pyx +0 -0
  2039. {Cython-3.0.6 → Cython-3.0.8}/tests/run/list_comp_in_closure_T598.pyx +0 -0
  2040. {Cython-3.0.6 → Cython-3.0.8}/tests/run/list_pop.pyx +0 -0
  2041. {Cython-3.0.6 → Cython-3.0.8}/tests/run/listcomp.pyx +0 -0
  2042. {Cython-3.0.6 → Cython-3.0.8}/tests/run/literal_lists.pyx +0 -0
  2043. {Cython-3.0.6 → Cython-3.0.8}/tests/run/literals.pyx +0 -0
  2044. {Cython-3.0.6 → Cython-3.0.8}/tests/run/literalslice.pyx +0 -0
  2045. {Cython-3.0.6 → Cython-3.0.8}/tests/run/locals.pyx +0 -0
  2046. {Cython-3.0.6 → Cython-3.0.8}/tests/run/locals_T732.pyx +0 -0
  2047. {Cython-3.0.6 → Cython-3.0.8}/tests/run/locals_expressions_T430.pyx +0 -0
  2048. {Cython-3.0.6 → Cython-3.0.8}/tests/run/locals_rebind_T429.pyx +0 -0
  2049. {Cython-3.0.6 → Cython-3.0.8}/tests/run/longintrepr.pyx +0 -0
  2050. {Cython-3.0.6 → Cython-3.0.8}/tests/run/longlongindex.pyx +0 -0
  2051. {Cython-3.0.6 → Cython-3.0.8}/tests/run/lvalue_refs.pyx +0 -0
  2052. {Cython-3.0.6 → Cython-3.0.8}/tests/run/mangle_c_keywords.pyx +0 -0
  2053. {Cython-3.0.6 → Cython-3.0.8}/tests/run/matrix_multiplier.pyx +0 -0
  2054. {Cython-3.0.6 → Cython-3.0.8}/tests/run/memoryview_namespace_T775.pyx +0 -0
  2055. {Cython-3.0.6 → Cython-3.0.8}/tests/run/memview_vector.pyx +0 -0
  2056. {Cython-3.0.6 → Cython-3.0.8}/tests/run/menten1.pyx +0 -0
  2057. {Cython-3.0.6 → Cython-3.0.8}/tests/run/metaclass.pyx +0 -0
  2058. {Cython-3.0.6 → Cython-3.0.8}/tests/run/method_module_name_T422.pyx +0 -0
  2059. {Cython-3.0.6 → Cython-3.0.8}/tests/run/methodmangling_T5.py +0 -0
  2060. {Cython-3.0.6 → Cython-3.0.8}/tests/run/methodmangling_cdef.pxd +0 -0
  2061. {Cython-3.0.6 → Cython-3.0.8}/tests/run/methodmangling_cdef.pyx +0 -0
  2062. {Cython-3.0.6 → Cython-3.0.8}/tests/run/methodmangling_pure.py +0 -0
  2063. {Cython-3.0.6 → Cython-3.0.8}/tests/run/methodmangling_unknown_names.py +0 -0
  2064. {Cython-3.0.6 → Cython-3.0.8}/tests/run/mod__name__.pyx +0 -0
  2065. {Cython-3.0.6 → Cython-3.0.8}/tests/run/mod__spec__.pyx +0 -0
  2066. {Cython-3.0.6 → Cython-3.0.8}/tests/run/modbody.pyx +0 -0
  2067. {Cython-3.0.6 → Cython-3.0.8}/tests/run/modop.pyx +0 -0
  2068. {Cython-3.0.6 → Cython-3.0.8}/tests/run/module_init_error.srctree +0 -0
  2069. {Cython-3.0.6 → Cython-3.0.8}/tests/run/moduletryexcept.pyx +0 -0
  2070. {Cython-3.0.6 → Cython-3.0.8}/tests/run/mulop.pyx +0 -0
  2071. {Cython-3.0.6 → Cython-3.0.8}/tests/run/multass.pyx +0 -0
  2072. {Cython-3.0.6 → Cython-3.0.8}/tests/run/new_as_nonkeyword.pyx +0 -0
  2073. {Cython-3.0.6 → Cython-3.0.8}/tests/run/new_style_exceptions.pyx +0 -0
  2074. {Cython-3.0.6 → Cython-3.0.8}/tests/run/no_gc.pyx +0 -0
  2075. {Cython-3.0.6 → Cython-3.0.8}/tests/run/no_gc_clear.pyx +0 -0
  2076. {Cython-3.0.6 → Cython-3.0.8}/tests/run/nogil.pxd +0 -0
  2077. {Cython-3.0.6 → Cython-3.0.8}/tests/run/nogil_conditional.pyx +0 -0
  2078. {Cython-3.0.6 → Cython-3.0.8}/tests/run/nogil_other.pxd +0 -0
  2079. {Cython-3.0.6 → Cython-3.0.8}/tests/run/non_const_as_const_arg.pyx +0 -0
  2080. {Cython-3.0.6 → Cython-3.0.8}/tests/run/non_dict_kwargs_T470.pyx +0 -0
  2081. {Cython-3.0.6 → Cython-3.0.8}/tests/run/non_future_division.pyx +0 -0
  2082. {Cython-3.0.6 → Cython-3.0.8}/tests/run/nonecheck.pyx +0 -0
  2083. {Cython-3.0.6 → Cython-3.0.8}/tests/run/nonlocal_T490.pyx +0 -0
  2084. {Cython-3.0.6 → Cython-3.0.8}/tests/run/nononetypecheck.pyx +0 -0
  2085. {Cython-3.0.6 → Cython-3.0.8}/tests/run/notinop.pyx +0 -0
  2086. {Cython-3.0.6 → Cython-3.0.8}/tests/run/numpy_ValueError_T172.pyx +0 -0
  2087. {Cython-3.0.6 → Cython-3.0.8}/tests/run/numpy_attributes.pyx +0 -0
  2088. {Cython-3.0.6 → Cython-3.0.8}/tests/run/numpy_bufacc_T155.pyx +0 -0
  2089. {Cython-3.0.6 → Cython-3.0.8}/tests/run/numpy_cimport.pyx +0 -0
  2090. {Cython-3.0.6 → Cython-3.0.8}/tests/run/numpy_cimport_1.pyx +0 -0
  2091. {Cython-3.0.6 → Cython-3.0.8}/tests/run/numpy_cimport_2.pyx +0 -0
  2092. {Cython-3.0.6 → Cython-3.0.8}/tests/run/numpy_cimport_3.pyx +0 -0
  2093. {Cython-3.0.6 → Cython-3.0.8}/tests/run/numpy_cimport_4.pyx +0 -0
  2094. {Cython-3.0.6 → Cython-3.0.8}/tests/run/numpy_cimport_5.pyx +0 -0
  2095. {Cython-3.0.6 → Cython-3.0.8}/tests/run/numpy_cimport_6.pyx +0 -0
  2096. {Cython-3.0.6 → Cython-3.0.8}/tests/run/numpy_import_array_error.srctree +0 -0
  2097. {Cython-3.0.6 → Cython-3.0.8}/tests/run/numpy_math.pyx +0 -0
  2098. {Cython-3.0.6 → Cython-3.0.8}/tests/run/numpy_parallel.pyx +0 -0
  2099. {Cython-3.0.6 → Cython-3.0.8}/tests/run/numpy_pythran.pyx +0 -0
  2100. {Cython-3.0.6 → Cython-3.0.8}/tests/run/numpy_pythran_unit.pyx +0 -0
  2101. {Cython-3.0.6 → Cython-3.0.8}/tests/run/numpy_subarray.pyx +0 -0
  2102. {Cython-3.0.6 → Cython-3.0.8}/tests/run/numpy_test.pyx +0 -0
  2103. {Cython-3.0.6 → Cython-3.0.8}/tests/run/onelinesuite.py +0 -0
  2104. {Cython-3.0.6 → Cython-3.0.8}/tests/run/ooo_base_classes.pyx +0 -0
  2105. {Cython-3.0.6 → Cython-3.0.8}/tests/run/or.pyx +0 -0
  2106. {Cython-3.0.6 → Cython-3.0.8}/tests/run/overflow_check.pxi +0 -0
  2107. {Cython-3.0.6 → Cython-3.0.8}/tests/run/overflow_check_int.pyx +0 -0
  2108. {Cython-3.0.6 → Cython-3.0.8}/tests/run/overflow_check_longlong.pyx +0 -0
  2109. {Cython-3.0.6 → Cython-3.0.8}/tests/run/overflow_check_uint.pyx +0 -0
  2110. {Cython-3.0.6 → Cython-3.0.8}/tests/run/overflow_check_ulonglong.pyx +0 -0
  2111. {Cython-3.0.6 → Cython-3.0.8}/tests/run/owned_arg_refs.pyx +0 -0
  2112. {Cython-3.0.6 → Cython-3.0.8}/tests/run/packedstruct_T290.pyx +0 -0
  2113. {Cython-3.0.6 → Cython-3.0.8}/tests/run/parallel.pyx +0 -0
  2114. {Cython-3.0.6 → Cython-3.0.8}/tests/run/parallel_swap_assign_T425.pyx +0 -0
  2115. {Cython-3.0.6 → Cython-3.0.8}/tests/run/partial_circular_import.srctree +0 -0
  2116. {Cython-3.0.6 → Cython-3.0.8}/tests/run/pass.pyx +0 -0
  2117. {Cython-3.0.6 → Cython-3.0.8}/tests/run/pep442_tp_finalize.pyx +0 -0
  2118. {Cython-3.0.6 → Cython-3.0.8}/tests/run/pep442_tp_finalize_cimport.srctree +0 -0
  2119. {Cython-3.0.6 → Cython-3.0.8}/tests/run/pep448_extended_unpacking.pyx +0 -0
  2120. {Cython-3.0.6 → Cython-3.0.8}/tests/run/pep448_test_extcall.pyx +0 -0
  2121. {Cython-3.0.6 → Cython-3.0.8}/tests/run/pep526_variable_annotations.py +0 -0
  2122. {Cython-3.0.6 → Cython-3.0.8}/tests/run/pep526_variable_annotations_cy.pyx +0 -0
  2123. {Cython-3.0.6 → Cython-3.0.8}/tests/run/pep557_dataclasses.py +0 -0
  2124. {Cython-3.0.6 → Cython-3.0.8}/tests/run/pep563_annotations.py +0 -0
  2125. {Cython-3.0.6 → Cython-3.0.8}/tests/run/pinard5.pyx +0 -0
  2126. {Cython-3.0.6 → Cython-3.0.8}/tests/run/pinard6.pyx +0 -0
  2127. {Cython-3.0.6 → Cython-3.0.8}/tests/run/pinard7.pyx +0 -0
  2128. {Cython-3.0.6 → Cython-3.0.8}/tests/run/pinard8.pyx +0 -0
  2129. {Cython-3.0.6 → Cython-3.0.8}/tests/run/pointers.pyx +0 -0
  2130. {Cython-3.0.6 → Cython-3.0.8}/tests/run/posix_resource.pyx +0 -0
  2131. {Cython-3.0.6 → Cython-3.0.8}/tests/run/posix_test.pyx +0 -0
  2132. {Cython-3.0.6 → Cython-3.0.8}/tests/run/posix_time.pyx +0 -0
  2133. {Cython-3.0.6 → Cython-3.0.8}/tests/run/posonly.py +0 -0
  2134. {Cython-3.0.6 → Cython-3.0.8}/tests/run/powop.pyx +0 -0
  2135. {Cython-3.0.6 → Cython-3.0.8}/tests/run/print.pyx +0 -0
  2136. {Cython-3.0.6 → Cython-3.0.8}/tests/run/print_function.pyx +0 -0
  2137. {Cython-3.0.6 → Cython-3.0.8}/tests/run/print_refcount.pyx +0 -0
  2138. {Cython-3.0.6 → Cython-3.0.8}/tests/run/property_decorator_T593.py +0 -0
  2139. {Cython-3.0.6 → Cython-3.0.8}/tests/run/pstats_profile_test.pyx +0 -0
  2140. {Cython-3.0.6 → Cython-3.0.8}/tests/run/pstats_profile_test_py.py +0 -0
  2141. {Cython-3.0.6 → Cython-3.0.8}/tests/run/pstats_profile_test_pycfunc.pyx +0 -0
  2142. {Cython-3.0.6 → Cython-3.0.8}/tests/run/ptr_warning_T714.pyx +0 -0
  2143. {Cython-3.0.6 → Cython-3.0.8}/tests/run/ptrdiff_t.pyx +0 -0
  2144. {Cython-3.0.6 → Cython-3.0.8}/tests/run/public_enum.pyx +0 -0
  2145. {Cython-3.0.6 → Cython-3.0.8}/tests/run/public_fused_types.srctree +0 -0
  2146. {Cython-3.0.6 → Cython-3.0.8}/tests/run/pure.pyx +0 -0
  2147. {Cython-3.0.6 → Cython-3.0.8}/tests/run/pure_cdef_class_dataclass.py +0 -0
  2148. {Cython-3.0.6 → Cython-3.0.8}/tests/run/pure_cdef_class_property_decorator_T264.pxd +0 -0
  2149. {Cython-3.0.6 → Cython-3.0.8}/tests/run/pure_cdef_class_property_decorator_T264.py +0 -0
  2150. {Cython-3.0.6 → Cython-3.0.8}/tests/run/pure_fused.pxd +0 -0
  2151. {Cython-3.0.6 → Cython-3.0.8}/tests/run/pure_fused.py +0 -0
  2152. {Cython-3.0.6 → Cython-3.0.8}/tests/run/pure_mode_cmethod_inheritance_T583.pxd +0 -0
  2153. {Cython-3.0.6 → Cython-3.0.8}/tests/run/pure_mode_cmethod_inheritance_T583.py +0 -0
  2154. {Cython-3.0.6 → Cython-3.0.8}/tests/run/pure_nogil_conditional.pyx +0 -0
  2155. {Cython-3.0.6 → Cython-3.0.8}/tests/run/pure_parallel.py +0 -0
  2156. {Cython-3.0.6 → Cython-3.0.8}/tests/run/pure_pxd.srctree +0 -0
  2157. {Cython-3.0.6 → Cython-3.0.8}/tests/run/pure_py.py +0 -0
  2158. {Cython-3.0.6 → Cython-3.0.8}/tests/run/pure_py3.py +0 -0
  2159. {Cython-3.0.6 → Cython-3.0.8}/tests/run/pure_py_cimports.py +0 -0
  2160. {Cython-3.0.6 → Cython-3.0.8}/tests/run/pure_pyx_cimports.pyx +0 -0
  2161. {Cython-3.0.6 → Cython-3.0.8}/tests/run/purecdef.py +0 -0
  2162. {Cython-3.0.6 → Cython-3.0.8}/tests/run/pxd_argument_names.srctree +0 -0
  2163. {Cython-3.0.6 → Cython-3.0.8}/tests/run/pxd_signature_excvalue.srctree +0 -0
  2164. {Cython-3.0.6 → Cython-3.0.8}/tests/run/pxd_syntax.srctree +0 -0
  2165. {Cython-3.0.6 → Cython-3.0.8}/tests/run/py2_super.pyx +0 -0
  2166. {Cython-3.0.6 → Cython-3.0.8}/tests/run/py34_signature.pyx +0 -0
  2167. {Cython-3.0.6 → Cython-3.0.8}/tests/run/py35_asyncio_async_def.srctree +0 -0
  2168. {Cython-3.0.6 → Cython-3.0.8}/tests/run/py35_pep492_interop.pyx +0 -0
  2169. {Cython-3.0.6 → Cython-3.0.8}/tests/run/py3k_super.pyx +0 -0
  2170. {Cython-3.0.6 → Cython-3.0.8}/tests/run/py_classbody.py +0 -0
  2171. {Cython-3.0.6 → Cython-3.0.8}/tests/run/py_hash_t.pyx +0 -0
  2172. {Cython-3.0.6 → Cython-3.0.8}/tests/run/py_ucs4_type.pyx +0 -0
  2173. {Cython-3.0.6 → Cython-3.0.8}/tests/run/py_unicode_strings.pyx +0 -0
  2174. {Cython-3.0.6 → Cython-3.0.8}/tests/run/py_unicode_type.pyx +0 -0
  2175. {Cython-3.0.6 → Cython-3.0.8}/tests/run/pyarray.pyx +0 -0
  2176. {Cython-3.0.6 → Cython-3.0.8}/tests/run/pycapsule.pyx +0 -0
  2177. {Cython-3.0.6 → Cython-3.0.8}/tests/run/pyclass_annotations_pep526.py +0 -0
  2178. {Cython-3.0.6 → Cython-3.0.8}/tests/run/pyclass_dynamic_bases.pyx +0 -0
  2179. {Cython-3.0.6 → Cython-3.0.8}/tests/run/pyclass_scope_T671.py +0 -0
  2180. {Cython-3.0.6 → Cython-3.0.8}/tests/run/pyclass_special_methods.pyx +0 -0
  2181. {Cython-3.0.6 → Cython-3.0.8}/tests/run/pycmp.pyx +0 -0
  2182. {Cython-3.0.6 → Cython-3.0.8}/tests/run/pycontextvar.pyx +0 -0
  2183. {Cython-3.0.6 → Cython-3.0.8}/tests/run/pyextattrref.pyx +0 -0
  2184. {Cython-3.0.6 → Cython-3.0.8}/tests/run/pyfunction_redefine_T489.pyx +0 -0
  2185. {Cython-3.0.6 → Cython-3.0.8}/tests/run/pyintop.pyx +0 -0
  2186. {Cython-3.0.6 → Cython-3.0.8}/tests/run/pylistsubtype.pyx +0 -0
  2187. {Cython-3.0.6 → Cython-3.0.8}/tests/run/pynumber_subtype_conversion.pyx +0 -0
  2188. {Cython-3.0.6 → Cython-3.0.8}/tests/run/pynumop.pyx +0 -0
  2189. {Cython-3.0.6 → Cython-3.0.8}/tests/run/pyobjcast_T313.pyx +0 -0
  2190. {Cython-3.0.6 → Cython-3.0.8}/tests/run/pyparam_nogil.pyx +0 -0
  2191. {Cython-3.0.6 → Cython-3.0.8}/tests/run/python_bool_type.pyx +0 -0
  2192. {Cython-3.0.6 → Cython-3.0.8}/tests/run/pytype.pyx +0 -0
  2193. {Cython-3.0.6 → Cython-3.0.8}/tests/run/qualname.py +0 -0
  2194. {Cython-3.0.6 → Cython-3.0.8}/tests/run/r_addint.pyx +0 -0
  2195. {Cython-3.0.6 → Cython-3.0.8}/tests/run/r_argdefault.pyx +0 -0
  2196. {Cython-3.0.6 → Cython-3.0.8}/tests/run/r_barbieri1.pyx +0 -0
  2197. {Cython-3.0.6 → Cython-3.0.8}/tests/run/r_bishop3.pyx +0 -0
  2198. {Cython-3.0.6 → Cython-3.0.8}/tests/run/r_bowden1.pyx +0 -0
  2199. {Cython-3.0.6 → Cython-3.0.8}/tests/run/r_delgado_1.pyx +0 -0
  2200. {Cython-3.0.6 → Cython-3.0.8}/tests/run/r_docstrings.pyx +0 -0
  2201. {Cython-3.0.6 → Cython-3.0.8}/tests/run/r_extcomplex2.pyx +0 -0
  2202. {Cython-3.0.6 → Cython-3.0.8}/tests/run/r_extstarargs.pyx +0 -0
  2203. {Cython-3.0.6 → Cython-3.0.8}/tests/run/r_forloop.pyx +0 -0
  2204. {Cython-3.0.6 → Cython-3.0.8}/tests/run/r_hordijk1.pyx +0 -0
  2205. {Cython-3.0.6 → Cython-3.0.8}/tests/run/r_huss3.pyx +0 -0
  2206. {Cython-3.0.6 → Cython-3.0.8}/tests/run/r_jeff_epler_1.pyx +0 -0
  2207. {Cython-3.0.6 → Cython-3.0.8}/tests/run/r_jiba1.pxd +0 -0
  2208. {Cython-3.0.6 → Cython-3.0.8}/tests/run/r_jiba1.pyx +0 -0
  2209. {Cython-3.0.6 → Cython-3.0.8}/tests/run/r_lepage_3.pyx +0 -0
  2210. {Cython-3.0.6 → Cython-3.0.8}/tests/run/r_mang1.pyx +0 -0
  2211. {Cython-3.0.6 → Cython-3.0.8}/tests/run/r_mcintyre1.pyx +0 -0
  2212. {Cython-3.0.6 → Cython-3.0.8}/tests/run/r_mitch_chapman_2.pyx +0 -0
  2213. {Cython-3.0.6 → Cython-3.0.8}/tests/run/r_primes.pyx +0 -0
  2214. {Cython-3.0.6 → Cython-3.0.8}/tests/run/r_print.pyx +0 -0
  2215. {Cython-3.0.6 → Cython-3.0.8}/tests/run/r_pyclass.pyx +0 -0
  2216. {Cython-3.0.6 → Cython-3.0.8}/tests/run/r_pyclassdefault.pyx +0 -0
  2217. {Cython-3.0.6 → Cython-3.0.8}/tests/run/r_pythonapi.pyx +0 -0
  2218. {Cython-3.0.6 → Cython-3.0.8}/tests/run/r_spamtype.pyx +0 -0
  2219. {Cython-3.0.6 → Cython-3.0.8}/tests/run/r_starargcall.pyx +0 -0
  2220. {Cython-3.0.6 → Cython-3.0.8}/tests/run/r_starargs.pyx +0 -0
  2221. {Cython-3.0.6 → Cython-3.0.8}/tests/run/r_starargsonly.pyx +0 -0
  2222. {Cython-3.0.6 → Cython-3.0.8}/tests/run/r_toofewargs.pyx +0 -0
  2223. {Cython-3.0.6 → Cython-3.0.8}/tests/run/r_typecast.pyx +0 -0
  2224. {Cython-3.0.6 → Cython-3.0.8}/tests/run/r_uintindex.pyx +0 -0
  2225. {Cython-3.0.6 → Cython-3.0.8}/tests/run/r_vree_1.pyx +0 -0
  2226. {Cython-3.0.6 → Cython-3.0.8}/tests/run/raise_memory_error_T650.pyx +0 -0
  2227. {Cython-3.0.6 → Cython-3.0.8}/tests/run/range_optimisation_T203.pyx +0 -0
  2228. {Cython-3.0.6 → Cython-3.0.8}/tests/run/reduce_pickle.pyx +0 -0
  2229. {Cython-3.0.6 → Cython-3.0.8}/tests/run/ref2global.py +0 -0
  2230. {Cython-3.0.6 → Cython-3.0.8}/tests/run/ref2local.pyx +0 -0
  2231. {Cython-3.0.6 → Cython-3.0.8}/tests/run/refcount_in_meth.pyx +0 -0
  2232. {Cython-3.0.6 → Cython-3.0.8}/tests/run/reimport.pyx +0 -0
  2233. {Cython-3.0.6 → Cython-3.0.8}/tests/run/reimport_failure.srctree +0 -0
  2234. {Cython-3.0.6 → Cython-3.0.8}/tests/run/reimport_from_package.srctree +0 -0
  2235. {Cython-3.0.6 → Cython-3.0.8}/tests/run/reimport_from_subinterpreter.srctree +0 -0
  2236. {Cython-3.0.6 → Cython-3.0.8}/tests/run/relative_cimport.srctree +0 -0
  2237. {Cython-3.0.6 → Cython-3.0.8}/tests/run/relative_cimport_compare.srctree +0 -0
  2238. {Cython-3.0.6 → Cython-3.0.8}/tests/run/relative_import_leak.srctree +0 -0
  2239. {Cython-3.0.6 → Cython-3.0.8}/tests/run/relativeimport_T542.srctree +0 -0
  2240. {Cython-3.0.6 → Cython-3.0.8}/tests/run/relativeimport_star_T542.pyx +0 -0
  2241. {Cython-3.0.6 → Cython-3.0.8}/tests/run/reload_ext_module.pyx +0 -0
  2242. {Cython-3.0.6 → Cython-3.0.8}/tests/run/reraise.py +0 -0
  2243. {Cython-3.0.6 → Cython-3.0.8}/tests/run/reraise_3args.pyx +0 -0
  2244. {Cython-3.0.6 → Cython-3.0.8}/tests/run/return.pyx +0 -0
  2245. {Cython-3.0.6 → Cython-3.0.8}/tests/run/reversed_iteration.pyx +0 -0
  2246. {Cython-3.0.6 → Cython-3.0.8}/tests/run/richcmp_str_equals.py +0 -0
  2247. {Cython-3.0.6 → Cython-3.0.8}/tests/run/rodriguez_1.pyx +0 -0
  2248. {Cython-3.0.6 → Cython-3.0.8}/tests/run/scanner_trace.srctree +0 -0
  2249. {Cython-3.0.6 → Cython-3.0.8}/tests/run/self_in_ext_type_closure.pyx +0 -0
  2250. {Cython-3.0.6 → Cython-3.0.8}/tests/run/seq_mul.py +0 -0
  2251. {Cython-3.0.6 → Cython-3.0.8}/tests/run/sequential_parallel.pyx +0 -0
  2252. {Cython-3.0.6 → Cython-3.0.8}/tests/run/set.pyx +0 -0
  2253. {Cython-3.0.6 → Cython-3.0.8}/tests/run/set_discard_remove.py +0 -0
  2254. {Cython-3.0.6 → Cython-3.0.8}/tests/run/set_item.pyx +0 -0
  2255. {Cython-3.0.6 → Cython-3.0.8}/tests/run/set_iter.pyx +0 -0
  2256. {Cython-3.0.6 → Cython-3.0.8}/tests/run/set_literals.py +0 -0
  2257. {Cython-3.0.6 → Cython-3.0.8}/tests/run/set_new.py +0 -0
  2258. {Cython-3.0.6 → Cython-3.0.8}/tests/run/setcomp.pyx +0 -0
  2259. {Cython-3.0.6 → Cython-3.0.8}/tests/run/setjmp.pyx +0 -0
  2260. {Cython-3.0.6 → Cython-3.0.8}/tests/run/shapes.h +0 -0
  2261. {Cython-3.0.6 → Cython-3.0.8}/tests/run/short_circuit_T404.pyx +0 -0
  2262. {Cython-3.0.6 → Cython-3.0.8}/tests/run/simpcall.pyx +0 -0
  2263. {Cython-3.0.6 → Cython-3.0.8}/tests/run/size_t.pyx +0 -0
  2264. {Cython-3.0.6 → Cython-3.0.8}/tests/run/sizeof.pyx +0 -0
  2265. {Cython-3.0.6 → Cython-3.0.8}/tests/run/slice2.pyx +0 -0
  2266. {Cython-3.0.6 → Cython-3.0.8}/tests/run/slice2_T636.py +0 -0
  2267. {Cython-3.0.6 → Cython-3.0.8}/tests/run/slice2b.pyx +0 -0
  2268. {Cython-3.0.6 → Cython-3.0.8}/tests/run/slice3.pyx +0 -0
  2269. {Cython-3.0.6 → Cython-3.0.8}/tests/run/slice_charptr.pyx +0 -0
  2270. {Cython-3.0.6 → Cython-3.0.8}/tests/run/slice_ptr.pyx +0 -0
  2271. {Cython-3.0.6 → Cython-3.0.8}/tests/run/special_method_docstrings.pyx +0 -0
  2272. {Cython-3.0.6 → Cython-3.0.8}/tests/run/special_methods_T561.pyx +0 -0
  2273. {Cython-3.0.6 → Cython-3.0.8}/tests/run/special_methods_T561_py2.pyx +0 -0
  2274. {Cython-3.0.6 → Cython-3.0.8}/tests/run/special_methods_T561_py3.pyx +0 -0
  2275. {Cython-3.0.6 → Cython-3.0.8}/tests/run/special_methods_T561_py38.pyx +0 -0
  2276. {Cython-3.0.6 → Cython-3.0.8}/tests/run/specialfloat.pyx +0 -0
  2277. {Cython-3.0.6 → Cython-3.0.8}/tests/run/ssize_t_T399.pyx +0 -0
  2278. {Cython-3.0.6 → Cython-3.0.8}/tests/run/starargs.pyx +0 -0
  2279. {Cython-3.0.6 → Cython-3.0.8}/tests/run/starimport_cimport.srctree +0 -0
  2280. {Cython-3.0.6 → Cython-3.0.8}/tests/run/starred_target_T664.pyx +0 -0
  2281. {Cython-3.0.6 → Cython-3.0.8}/tests/run/static_methods.pxd +0 -0
  2282. {Cython-3.0.6 → Cython-3.0.8}/tests/run/static_methods.pyx +0 -0
  2283. {Cython-3.0.6 → Cython-3.0.8}/tests/run/staticmethod.pyx +0 -0
  2284. {Cython-3.0.6 → Cython-3.0.8}/tests/run/str_ascii_auto_encoding.pyx +0 -0
  2285. {Cython-3.0.6 → Cython-3.0.8}/tests/run/str_char_coercion_T412.pyx +0 -0
  2286. {Cython-3.0.6 → Cython-3.0.8}/tests/run/str_default_auto_encoding.pyx +0 -0
  2287. {Cython-3.0.6 → Cython-3.0.8}/tests/run/str_encoding_latin1.pyx +0 -0
  2288. {Cython-3.0.6 → Cython-3.0.8}/tests/run/str_subclass_kwargs.pyx +0 -0
  2289. {Cython-3.0.6 → Cython-3.0.8}/tests/run/strconstinclass.pyx +0 -0
  2290. {Cython-3.0.6 → Cython-3.0.8}/tests/run/strescapes.pyx +0 -0
  2291. {Cython-3.0.6 → Cython-3.0.8}/tests/run/strfunction.pyx +0 -0
  2292. {Cython-3.0.6 → Cython-3.0.8}/tests/run/string_comparison.pyx +0 -0
  2293. {Cython-3.0.6 → Cython-3.0.8}/tests/run/strliterals.pyx +0 -0
  2294. {Cython-3.0.6 → Cython-3.0.8}/tests/run/strmethods.pyx +0 -0
  2295. {Cython-3.0.6 → Cython-3.0.8}/tests/run/struct_conversion.pyx +0 -0
  2296. {Cython-3.0.6 → Cython-3.0.8}/tests/run/struct_conversion_extern.pyx +0 -0
  2297. {Cython-3.0.6 → Cython-3.0.8}/tests/run/struct_conversion_extern_header.h +0 -0
  2298. {Cython-3.0.6 → Cython-3.0.8}/tests/run/subclasses.pyx +0 -0
  2299. {Cython-3.0.6 → Cython-3.0.8}/tests/run/subop.pyx +0 -0
  2300. {Cython-3.0.6 → Cython-3.0.8}/tests/run/switch.pyx +0 -0
  2301. {Cython-3.0.6 → Cython-3.0.8}/tests/run/switch_transform.pyx +0 -0
  2302. {Cython-3.0.6 → Cython-3.0.8}/tests/run/tandemstats.pyx +0 -0
  2303. {Cython-3.0.6 → Cython-3.0.8}/tests/run/temp_alloc_T409.pyx +0 -0
  2304. {Cython-3.0.6 → Cython-3.0.8}/tests/run/temp_sideeffects_T654.pyx +0 -0
  2305. {Cython-3.0.6 → Cython-3.0.8}/tests/run/temps_corner1.pyx +0 -0
  2306. {Cython-3.0.6 → Cython-3.0.8}/tests/run/test_asyncgen.py +0 -0
  2307. {Cython-3.0.6 → Cython-3.0.8}/tests/run/test_call.py +0 -0
  2308. {Cython-3.0.6 → Cython-3.0.8}/tests/run/test_coroutines_pep492.pyx +0 -0
  2309. {Cython-3.0.6 → Cython-3.0.8}/tests/run/test_dataclasses.pxi +0 -0
  2310. {Cython-3.0.6 → Cython-3.0.8}/tests/run/test_dataclasses.pyx +0 -0
  2311. {Cython-3.0.6 → Cython-3.0.8}/tests/run/test_dictviews.pyx +0 -0
  2312. {Cython-3.0.6 → Cython-3.0.8}/tests/run/test_exceptions.pyx +0 -0
  2313. {Cython-3.0.6 → Cython-3.0.8}/tests/run/test_fstring.pyx +0 -0
  2314. {Cython-3.0.6 → Cython-3.0.8}/tests/run/test_genericclass.py +0 -0
  2315. {Cython-3.0.6 → Cython-3.0.8}/tests/run/test_genericclass_exttype.pyx +0 -0
  2316. {Cython-3.0.6 → Cython-3.0.8}/tests/run/test_grammar.py +0 -0
  2317. {Cython-3.0.6 → Cython-3.0.8}/tests/run/test_named_expressions.py +0 -0
  2318. {Cython-3.0.6 → Cython-3.0.8}/tests/run/test_raisefrom.pyx +0 -0
  2319. {Cython-3.0.6 → Cython-3.0.8}/tests/run/test_shadow_error.py +0 -0
  2320. {Cython-3.0.6 → Cython-3.0.8}/tests/run/test_subclassinit.py +0 -0
  2321. {Cython-3.0.6 → Cython-3.0.8}/tests/run/test_unicode.pyx +0 -0
  2322. {Cython-3.0.6 → Cython-3.0.8}/tests/run/test_unicode_string_tests.pxi +0 -0
  2323. {Cython-3.0.6 → Cython-3.0.8}/tests/run/testinclude.pxi +0 -0
  2324. {Cython-3.0.6 → Cython-3.0.8}/tests/run/ticket_123.pyx +0 -0
  2325. {Cython-3.0.6 → Cython-3.0.8}/tests/run/ticket_124.pyx +0 -0
  2326. {Cython-3.0.6 → Cython-3.0.8}/tests/run/time_pxd.pyx +0 -0
  2327. {Cython-3.0.6 → Cython-3.0.8}/tests/run/tp_new.pyx +0 -0
  2328. {Cython-3.0.6 → Cython-3.0.8}/tests/run/tp_new_T454.pyx +0 -0
  2329. {Cython-3.0.6 → Cython-3.0.8}/tests/run/tp_new_cimport.srctree +0 -0
  2330. {Cython-3.0.6 → Cython-3.0.8}/tests/run/trace_nogil.pyx +0 -0
  2331. {Cython-3.0.6 → Cython-3.0.8}/tests/run/tracebacks.pyx +0 -0
  2332. {Cython-3.0.6 → Cython-3.0.8}/tests/run/trashcan.pyx +0 -0
  2333. {Cython-3.0.6 → Cython-3.0.8}/tests/run/trybreak.pyx +0 -0
  2334. {Cython-3.0.6 → Cython-3.0.8}/tests/run/tryexcept.pyx +0 -0
  2335. {Cython-3.0.6 → Cython-3.0.8}/tests/run/tryfinally.pyx +0 -0
  2336. {Cython-3.0.6 → Cython-3.0.8}/tests/run/tryfinallychaining.pyx +0 -0
  2337. {Cython-3.0.6 → Cython-3.0.8}/tests/run/tss.pyx +0 -0
  2338. {Cython-3.0.6 → Cython-3.0.8}/tests/run/tuple.pyx +0 -0
  2339. {Cython-3.0.6 → Cython-3.0.8}/tests/run/tuple_constants.pyx +0 -0
  2340. {Cython-3.0.6 → Cython-3.0.8}/tests/run/tuple_unpack_string.pyx +0 -0
  2341. {Cython-3.0.6 → Cython-3.0.8}/tests/run/tupleassign.pyx +0 -0
  2342. {Cython-3.0.6 → Cython-3.0.8}/tests/run/tuplereassign.pyx +0 -0
  2343. {Cython-3.0.6 → Cython-3.0.8}/tests/run/tupleunpack_T298.pyx +0 -0
  2344. {Cython-3.0.6 → Cython-3.0.8}/tests/run/tupleunpack_T712.pyx +0 -0
  2345. {Cython-3.0.6 → Cython-3.0.8}/tests/run/type_inference.pyx +0 -0
  2346. {Cython-3.0.6 → Cython-3.0.8}/tests/run/type_inference_T768.pyx +0 -0
  2347. {Cython-3.0.6 → Cython-3.0.8}/tests/run/type_inference_T768_cpp.pyx +0 -0
  2348. {Cython-3.0.6 → Cython-3.0.8}/tests/run/type_inference_new.pyx +0 -0
  2349. {Cython-3.0.6 → Cython-3.0.8}/tests/run/type_slots_int_long_T287.pyx +0 -0
  2350. {Cython-3.0.6 → Cython-3.0.8}/tests/run/type_slots_nonzero_bool.pyx +0 -0
  2351. {Cython-3.0.6 → Cython-3.0.8}/tests/run/typed_slice.pyx +0 -0
  2352. {Cython-3.0.6 → Cython-3.0.8}/tests/run/typeddefaultargT373.pyx +0 -0
  2353. {Cython-3.0.6 → Cython-3.0.8}/tests/run/typedfieldbug_T303.pyx +0 -0
  2354. {Cython-3.0.6 → Cython-3.0.8}/tests/run/typeof.pyx +0 -0
  2355. {Cython-3.0.6 → Cython-3.0.8}/tests/run/typeofexttype.pyx +0 -0
  2356. {Cython-3.0.6 → Cython-3.0.8}/tests/run/types.h +0 -0
  2357. {Cython-3.0.6 → Cython-3.0.8}/tests/run/typetest_T417.pyx +0 -0
  2358. {Cython-3.0.6 → Cython-3.0.8}/tests/run/typing_module.py +0 -0
  2359. {Cython-3.0.6 → Cython-3.0.8}/tests/run/typing_module_cy.pyx +0 -0
  2360. {Cython-3.0.6 → Cython-3.0.8}/tests/run/ufunc.pyx +0 -0
  2361. {Cython-3.0.6 → Cython-3.0.8}/tests/run/unbound_builtin_methods.pyx +0 -0
  2362. {Cython-3.0.6 → Cython-3.0.8}/tests/run/unbound_special_methods.pyx +0 -0
  2363. {Cython-3.0.6 → Cython-3.0.8}/tests/run/unicode_ascii_auto_encoding.pyx +0 -0
  2364. {Cython-3.0.6 → Cython-3.0.8}/tests/run/unicode_default_auto_encoding.pyx +0 -0
  2365. {Cython-3.0.6 → Cython-3.0.8}/tests/run/unicode_formatting.pyx +0 -0
  2366. {Cython-3.0.6 → Cython-3.0.8}/tests/run/unicode_identifiers.pxd +0 -0
  2367. {Cython-3.0.6 → Cython-3.0.8}/tests/run/unicode_identifiers.pyx +0 -0
  2368. {Cython-3.0.6 → Cython-3.0.8}/tests/run/unicode_identifiers_import.pyx +0 -0
  2369. {Cython-3.0.6 → Cython-3.0.8}/tests/run/unicode_identifiers_normalization.srctree +0 -0
  2370. {Cython-3.0.6 → Cython-3.0.8}/tests/run/unicode_imports.srctree +0 -0
  2371. {Cython-3.0.6 → Cython-3.0.8}/tests/run/unicode_indexing.pyx +0 -0
  2372. {Cython-3.0.6 → Cython-3.0.8}/tests/run/unicode_kwargs.pyx +0 -0
  2373. {Cython-3.0.6 → Cython-3.0.8}/tests/run/unicode_slicing.pyx +0 -0
  2374. {Cython-3.0.6 → Cython-3.0.8}/tests/run/unicodeencode.pyx +0 -0
  2375. {Cython-3.0.6 → Cython-3.0.8}/tests/run/unicodefunction.pyx +0 -0
  2376. {Cython-3.0.6 → Cython-3.0.8}/tests/run/unicodeliterals.pyx +0 -0
  2377. {Cython-3.0.6 → Cython-3.0.8}/tests/run/unicodeliteralsdefault.pyx +0 -0
  2378. {Cython-3.0.6 → Cython-3.0.8}/tests/run/unicodeliteralslatin1.pyx +0 -0
  2379. {Cython-3.0.6 → Cython-3.0.8}/tests/run/unicodemethods.pyx +0 -0
  2380. {Cython-3.0.6 → Cython-3.0.8}/tests/run/uninitialized.py +0 -0
  2381. {Cython-3.0.6 → Cython-3.0.8}/tests/run/unop.pyx +0 -0
  2382. {Cython-3.0.6 → Cython-3.0.8}/tests/run/unop_extras.pyx +0 -0
  2383. {Cython-3.0.6 → Cython-3.0.8}/tests/run/unpack.pyx +0 -0
  2384. {Cython-3.0.6 → Cython-3.0.8}/tests/run/unpack_fused.pyx +0 -0
  2385. {Cython-3.0.6 → Cython-3.0.8}/tests/run/unpacklistcomp.pyx +0 -0
  2386. {Cython-3.0.6 → Cython-3.0.8}/tests/run/unreachable.pyx +0 -0
  2387. {Cython-3.0.6 → Cython-3.0.8}/tests/run/unsigned.pyx +0 -0
  2388. {Cython-3.0.6 → Cython-3.0.8}/tests/run/unsigned_char_ptr_bytes_conversion_T359.pyx +0 -0
  2389. {Cython-3.0.6 → Cython-3.0.8}/tests/run/unsignedbehaviour_T184.pyx +0 -0
  2390. {Cython-3.0.6 → Cython-3.0.8}/tests/run/unused.pyx +0 -0
  2391. {Cython-3.0.6 → Cython-3.0.8}/tests/run/unused_args.pyx +0 -0
  2392. {Cython-3.0.6 → Cython-3.0.8}/tests/run/varargcall.pyx +0 -0
  2393. {Cython-3.0.6 → Cython-3.0.8}/tests/run/varargdecl.pyx +0 -0
  2394. {Cython-3.0.6 → Cython-3.0.8}/tests/run/verbatiminclude.h +0 -0
  2395. {Cython-3.0.6 → Cython-3.0.8}/tests/run/verbatiminclude.pyx +0 -0
  2396. {Cython-3.0.6 → Cython-3.0.8}/tests/run/versioned_pxds.srctree +0 -0
  2397. {Cython-3.0.6 → Cython-3.0.8}/tests/run/voidstarcast.pyx +0 -0
  2398. {Cython-3.0.6 → Cython-3.0.8}/tests/run/watts1.pyx +0 -0
  2399. {Cython-3.0.6 → Cython-3.0.8}/tests/run/weakfail.pyx +0 -0
  2400. {Cython-3.0.6 → Cython-3.0.8}/tests/run/with_gil.pyx +0 -0
  2401. {Cython-3.0.6 → Cython-3.0.8}/tests/run/with_gil_automatic.pyx +0 -0
  2402. {Cython-3.0.6 → Cython-3.0.8}/tests/run/with_statement_module_level_T536.pyx +0 -0
  2403. {Cython-3.0.6 → Cython-3.0.8}/tests/run/withnogil.pyx +0 -0
  2404. {Cython-3.0.6 → Cython-3.0.8}/tests/run/withstat.pyx +0 -0
  2405. {Cython-3.0.6 → Cython-3.0.8}/tests/run/withstat_py.py +0 -0
  2406. {Cython-3.0.6 → Cython-3.0.8}/tests/run/withstat_py27.py +0 -0
  2407. {Cython-3.0.6 → Cython-3.0.8}/tests/run/wundram1.pyx +0 -0
  2408. {Cython-3.0.6 → Cython-3.0.8}/tests/run/yield_from_pep380.pyx +0 -0
  2409. {Cython-3.0.6 → Cython-3.0.8}/tests/run/yield_from_py33.pyx +0 -0
  2410. {Cython-3.0.6 → Cython-3.0.8}/tests/run/yield_inside_lambda.py +0 -0
  2411. {Cython-3.0.6 → Cython-3.0.8}/tests/testsupport/cythonarrayutil.pxi +0 -0
  2412. {Cython-3.0.6 → Cython-3.0.8}/tests/windows_bugs.txt +0 -0
  2413. {Cython-3.0.6 → Cython-3.0.8}/tests/wrappers/cpp_overload_wrapper.pyx +0 -0
  2414. {Cython-3.0.6 → Cython-3.0.8}/tests/wrappers/cpp_overload_wrapper_lib.cpp +0 -0
  2415. {Cython-3.0.6 → Cython-3.0.8}/tests/wrappers/cpp_overload_wrapper_lib.h +0 -0
  2416. {Cython-3.0.6 → Cython-3.0.8}/tests/wrappers/cpp_overload_wrapper_lib.pxd +0 -0
  2417. {Cython-3.0.6 → Cython-3.0.8}/tests/wrappers/cpp_references.pyx +0 -0
  2418. {Cython-3.0.6 → Cython-3.0.8}/tests/wrappers/cpp_references_helper.h +0 -0
  2419. {Cython-3.0.6 → Cython-3.0.8}/tests/wrappers/cppwrap.pyx +0 -0
  2420. {Cython-3.0.6 → Cython-3.0.8}/tests/wrappers/cppwrap_lib.cpp +0 -0
  2421. {Cython-3.0.6 → Cython-3.0.8}/tests/wrappers/cppwrap_lib.h +0 -0
  2422. {Cython-3.0.6 → Cython-3.0.8}/tests/wrappers/cppwrap_lib.pxd +0 -0
  2423. {Cython-3.0.6 → Cython-3.0.8}/tox.ini +0 -0
Cython-3.0.8/.gitrev ADDED
@@ -0,0 +1 @@
1
+ a1b79a6bc5326406ad73af73f5b41e3bb5f8da6e
@@ -2,6 +2,51 @@
2
2
  Cython Changelog
3
3
  ================
4
4
 
5
+ 3.0.8 (2024-01-10)
6
+ ==================
7
+
8
+ Bugs fixed
9
+ ----------
10
+
11
+ * Using ``const`` together with defined fused types could fail to compile.
12
+ (Github issue :issue:`5230`)
13
+
14
+ * A "use after free" bug was fixed in parallel sections.
15
+ (Github issue :issue:`5922`)
16
+
17
+ * Several types were not available as ``cython.*`` types in pure Python code.
18
+
19
+ * The generated code is now correct C89 again, removing some C++ style ``//`` comments
20
+ and C99-style declaration-after-code code ordering. This is still relevant for some
21
+ ols C compilers, specifically ones that match old Python 2.7 installations.
22
+
23
+
24
+ 3.0.7 (2023-12-19)
25
+ ==================
26
+
27
+ Bugs fixed
28
+ ----------
29
+
30
+ * In the iterator of generator expressions, ``await`` and ``yield`` were not correctly analysed.
31
+ (Github issue :issue:`5851`)
32
+
33
+ * ``cpdef`` enums with the same name cimported from different modules could lead to
34
+ invalid C code.
35
+ (Github issue :issue:`5887`)
36
+
37
+ * Some declarations in ``cpython.unicode`` were fixed and extended.
38
+ (Github issue :issue:`5902`)
39
+
40
+ * Compiling fused types used in pxd files could crash Cython in Python 3.11+.
41
+ (Github issues :issue:`5894`, :issue:`5588`)
42
+
43
+ * Source files with non-ASCII file names could crash Cython.
44
+ (Github issue :issue:`5873`)
45
+
46
+ * Includes all bug-fixes and features from the 0.29 maintenance branch
47
+ up to the :ref:`0.29.37` release.
48
+
49
+
5
50
  3.0.6 (2023-11-26)
6
51
  ==================
7
52
 
@@ -14,7 +59,7 @@ Features added
14
59
  (Github issue :issue:`5836`)
15
60
 
16
61
  * The Python "nogil" fork is now also detected with the new ``Py_GIL_DISABLED`` macro.
17
- Patch by Hugo van Kemenade (Github issue :issue:`583652`)
62
+ Patch by Hugo van Kemenade. (Github issue :issue:`5852`)
18
63
 
19
64
  Bugs fixed
20
65
  ----------
@@ -3319,6 +3364,27 @@ Other changes
3319
3364
  .. _`PEP-479`: https://www.python.org/dev/peps/pep-0479
3320
3365
 
3321
3366
 
3367
+ .. _0.29.37:
3368
+
3369
+ 0.29.37 (2023-12-18)
3370
+ ====================
3371
+
3372
+ Bugs fixed
3373
+ ----------
3374
+
3375
+ * Fix a potential crash while cleaning up subtypes of externally imported extension
3376
+ types when terminating Python. This was introduced in Cython 0.29.35.
3377
+
3378
+ * Fix a ``complex`` related compile error on Windows.
3379
+ (Github issue :issue:`5512`)
3380
+
3381
+ * Compiling fused types used in pxd files could crash Cython in Python 3.11+.
3382
+ (Github issues :issue:`5894`, :issue:`5588`)
3383
+
3384
+ * ``cythonize`` failed to consider the ``CYTHON_FORCE_REGEN`` env variable.
3385
+ Patch by Harmen Stoppels. (Github issue :issue:`5712`)
3386
+
3387
+
3322
3388
  .. _0.29.36:
3323
3389
 
3324
3390
  0.29.36 (2023-07-04)
@@ -249,7 +249,7 @@ def warn_once(position, message, level=0):
249
249
  echo_file = threadlocal.cython_errors_echo_file
250
250
  if echo_file:
251
251
  _write_file_encode(echo_file, line)
252
- warn_once_seen[message] = True
252
+ warn_once_seen.add(message)
253
253
  return warn
254
254
 
255
255
 
@@ -6482,9 +6482,11 @@ class SimpleCallNode(CallNode):
6482
6482
  if exc_check:
6483
6483
  if nogil:
6484
6484
  if not exc_checks:
6485
+ perf_hint_entry = getattr(self.function, "entry", None)
6485
6486
  PyrexTypes.write_noexcept_performance_hint(
6486
6487
  self.pos, code.funcstate.scope,
6487
- function_name=None, void_return=self.type.is_void)
6488
+ function_name=perf_hint_entry.name if perf_hint_entry else None,
6489
+ void_return=self.type.is_void, is_call=True)
6488
6490
  code.globalstate.use_utility_code(
6489
6491
  UtilityCode.load_cached("ErrOccurredWithGIL", "Exceptions.c"))
6490
6492
  exc_checks.append("__Pyx_ErrOccurredWithGIL()")
@@ -3,7 +3,8 @@ from __future__ import absolute_import
3
3
  import copy
4
4
 
5
5
  from . import (ExprNodes, PyrexTypes, MemoryView,
6
- ParseTreeTransforms, StringEncoding, Errors)
6
+ ParseTreeTransforms, StringEncoding, Errors,
7
+ Naming)
7
8
  from .ExprNodes import CloneNode, ProxyNode, TupleNode
8
9
  from .Nodes import FuncDefNode, CFuncDefNode, StatListNode, DefNode
9
10
  from ..Utils import OrderedSet
@@ -198,12 +199,11 @@ class FusedCFuncDefNode(StatListNode):
198
199
  break
199
200
 
200
201
  # replace old entry with new entries
201
- try:
202
+ if self.node.entry in env.cfunc_entries:
202
203
  cindex = env.cfunc_entries.index(self.node.entry)
203
- except ValueError:
204
- env.cfunc_entries.extend(new_cfunc_entries)
205
- else:
206
204
  env.cfunc_entries[cindex:cindex+1] = new_cfunc_entries
205
+ else:
206
+ env.cfunc_entries.extend(new_cfunc_entries)
207
207
 
208
208
  if orig_py_func:
209
209
  self.py_func = self.make_fused_cpdef(orig_py_func, env,
@@ -308,9 +308,10 @@ class FusedCFuncDefNode(StatListNode):
308
308
  """)
309
309
 
310
310
  def _dtype_name(self, dtype):
311
+ name = str(dtype).replace('_', '__').replace(' ', '_')
311
312
  if dtype.is_typedef:
312
- return '___pyx_%s' % dtype
313
- return str(dtype).replace(' ', '_')
313
+ name = Naming.fused_dtype_prefix + name
314
+ return name
314
315
 
315
316
  def _dtype_type(self, dtype):
316
317
  if dtype.is_typedef:
@@ -3592,7 +3592,7 @@ class ModuleNode(Nodes.Node, Nodes.BlockNode):
3592
3592
  code.putln("int add_module_result = PyState_AddModule(%s, &%s);" % (
3593
3593
  module_temp, Naming.pymoduledef_cname))
3594
3594
  code.putln("%s = 0; /* transfer ownership from %s to %s pseudovariable */" % (
3595
- module_temp, module_temp, env.module_name
3595
+ module_temp, module_temp, env.module_name.as_c_string_literal()
3596
3596
  ))
3597
3597
  # At this stage the module likely has a refcount of 2 - one owned by the list
3598
3598
  # inside PyState_AddModule and one owned by "__pyx_m" (and returned from this
@@ -132,6 +132,7 @@ frame_code_cname = pyrex_prefix + "frame_code"
132
132
  error_without_exception_cname = pyrex_prefix + "error_without_exception"
133
133
  binding_cfunc = pyrex_prefix + "binding_PyCFunctionType"
134
134
  fused_func_prefix = pyrex_prefix + 'fuse_'
135
+ fused_dtype_prefix = pyrex_prefix + 'fused_dtype_'
135
136
  quick_temp_cname = pyrex_prefix + "temp" # temp variable for quick'n'dirty temping
136
137
  tp_dict_version_temp = pyrex_prefix + "tp_dict_version"
137
138
  obj_dict_version_temp = pyrex_prefix + "obj_dict_version"
@@ -8610,6 +8610,8 @@ class TryFinallyStatNode(StatNode):
8610
8610
 
8611
8611
  if self.is_try_finally_in_nogil:
8612
8612
  code.put_ensure_gil(declare_gilstate=False)
8613
+ # although the thread state is already assigned, that can't be trusted after releasing the GIL
8614
+ code.putln("__Pyx_PyThreadState_assign")
8613
8615
 
8614
8616
  # not using preprocessor here to avoid warnings about
8615
8617
  # unused utility functions and/or temps
@@ -8636,6 +8638,8 @@ class TryFinallyStatNode(StatNode):
8636
8638
  code.globalstate.use_utility_code(reset_exception_utility_code)
8637
8639
  if self.is_try_finally_in_nogil:
8638
8640
  code.put_ensure_gil(declare_gilstate=False)
8641
+ # although the thread state is already assigned, that can't be trusted after releasing the GIL
8642
+ code.putln("__Pyx_PyThreadState_assign")
8639
8643
 
8640
8644
  # not using preprocessor here to avoid warnings about
8641
8645
  # unused utility functions and/or temps
@@ -54,10 +54,12 @@ cdef class YieldNodeCollector(TreeVisitor):
54
54
  cdef public bint has_return_value
55
55
  cdef public bint has_yield
56
56
  cdef public bint has_await
57
+ cdef list excludes
57
58
 
58
59
  @cython.final
59
60
  cdef class MarkClosureVisitor(CythonTransform):
60
61
  cdef bint needs_closure
62
+ cdef list excludes
61
63
 
62
64
  @cython.final
63
65
  cdef class CreateClosureClasses(CythonTransform):
@@ -215,7 +215,7 @@ class PostParse(ScopeTrackingTransform):
215
215
  def visit_GeneratorExpressionNode(self, node):
216
216
  # unpack a generator expression into the corresponding DefNode
217
217
  collector = YieldNodeCollector()
218
- collector.visitchildren(node.loop)
218
+ collector.visitchildren(node.loop, attrs=None, exclude=["iterator"])
219
219
  node.def_node = Nodes.DefNode(
220
220
  node.pos, name=node.name, doc=None,
221
221
  args=[], star_arg=None, starstar_arg=None,
@@ -3155,7 +3155,7 @@ class RemoveUnreachableCode(CythonTransform):
3155
3155
 
3156
3156
  class YieldNodeCollector(TreeVisitor):
3157
3157
 
3158
- def __init__(self):
3158
+ def __init__(self, excludes=[]):
3159
3159
  super(YieldNodeCollector, self).__init__()
3160
3160
  self.yields = []
3161
3161
  self.returns = []
@@ -3164,9 +3164,11 @@ class YieldNodeCollector(TreeVisitor):
3164
3164
  self.has_return_value = False
3165
3165
  self.has_yield = False
3166
3166
  self.has_await = False
3167
+ self.excludes = excludes
3167
3168
 
3168
3169
  def visit_Node(self, node):
3169
- self.visitchildren(node)
3170
+ if node not in self.excludes:
3171
+ self.visitchildren(node)
3170
3172
 
3171
3173
  def visit_YieldExprNode(self, node):
3172
3174
  self.yields.append(node)
@@ -3202,7 +3204,11 @@ class YieldNodeCollector(TreeVisitor):
3202
3204
  pass
3203
3205
 
3204
3206
  def visit_GeneratorExpressionNode(self, node):
3205
- pass
3207
+ # node.loop iterator is evaluated outside the generator expression
3208
+ if isinstance(node.loop, Nodes._ForInStatNode):
3209
+ # Possibly should handle ForFromStatNode
3210
+ # but for now do nothing
3211
+ self.visit(node.loop.iterator)
3206
3212
 
3207
3213
  def visit_CArgDeclNode(self, node):
3208
3214
  # do not look into annotations
@@ -3216,6 +3222,7 @@ class MarkClosureVisitor(CythonTransform):
3216
3222
 
3217
3223
  def visit_ModuleNode(self, node):
3218
3224
  self.needs_closure = False
3225
+ self.excludes = []
3219
3226
  self.visitchildren(node)
3220
3227
  return node
3221
3228
 
@@ -3225,7 +3232,7 @@ class MarkClosureVisitor(CythonTransform):
3225
3232
  node.needs_closure = self.needs_closure
3226
3233
  self.needs_closure = True
3227
3234
 
3228
- collector = YieldNodeCollector()
3235
+ collector = YieldNodeCollector(self.excludes)
3229
3236
  collector.visitchildren(node)
3230
3237
 
3231
3238
  if node.is_async_def:
@@ -3284,7 +3291,11 @@ class MarkClosureVisitor(CythonTransform):
3284
3291
  return node
3285
3292
 
3286
3293
  def visit_GeneratorExpressionNode(self, node):
3294
+ excludes = self.excludes
3295
+ if isinstance(node.loop, Nodes._ForInStatNode):
3296
+ self.excludes = [node.loop.iterator]
3287
3297
  node = self.visit_LambdaNode(node)
3298
+ self.excludes = excludes
3288
3299
  if not isinstance(node.loop, Nodes._ForInStatNode):
3289
3300
  # Possibly should handle ForFromStatNode
3290
3301
  # but for now do nothing
@@ -3301,7 +3301,12 @@ class CFuncType(CType):
3301
3301
  if self.is_overridable:
3302
3302
  arg_decl_list.append("int %s" % Naming.skip_dispatch_cname)
3303
3303
  if self.optional_arg_count:
3304
- arg_decl_list.append(self.op_arg_struct.declaration_code(Naming.optional_args_cname))
3304
+ if self.op_arg_struct:
3305
+ arg_decl_list.append(self.op_arg_struct.declaration_code(Naming.optional_args_cname))
3306
+ else:
3307
+ # op_arg_struct may not be initialized at this point if this class is being used
3308
+ # to prepare a Python error message or similar. In this case, just omit the args.
3309
+ assert for_display
3305
3310
  if self.has_varargs:
3306
3311
  arg_decl_list.append("...")
3307
3312
  arg_decl_code = ", ".join(arg_decl_list)
@@ -4305,7 +4310,7 @@ class EnumMixin(object):
4305
4310
 
4306
4311
  def create_enum_to_py_utility_code(self, env):
4307
4312
  from .UtilityCode import CythonUtilityCode
4308
- self.to_py_function = "__Pyx_Enum_%s_to_py" % self.name
4313
+ self.to_py_function = "__Pyx_Enum_%s_to_py" % type_identifier(self)
4309
4314
  if self.entry.scope != env.global_scope():
4310
4315
  module_name = self.entry.scope.qualified_name
4311
4316
  else:
@@ -5316,6 +5321,8 @@ def parse_basic_type(name):
5316
5321
  signed = 2
5317
5322
  elif name == 'size_t':
5318
5323
  signed = 0
5324
+ elif name == 'ptrdiff_t':
5325
+ signed = 2
5319
5326
  else:
5320
5327
  if name.startswith('u'):
5321
5328
  name = name[1:]
@@ -5438,16 +5445,29 @@ def cap_length(s, max_prefix=63, max_len=1024):
5438
5445
  hash_prefix = hashlib.sha256(s.encode('ascii')).hexdigest()[:6]
5439
5446
  return '%s__%s__etc' % (hash_prefix, s[:max_len-17])
5440
5447
 
5441
- def write_noexcept_performance_hint(pos, env, function_name=None, void_return=False):
5442
- on_what = "on '%s' " % function_name if function_name else ""
5448
+ def write_noexcept_performance_hint(pos, env, function_name=None, void_return=False, is_call=False):
5449
+ if function_name:
5450
+ # we need it escaped everywhere we use it
5451
+ function_name = "'%s'" % function_name
5452
+ if is_call:
5453
+ on_what = "after calling %s " % (function_name or 'function')
5454
+ elif function_name:
5455
+ on_what = "on %s " % function_name
5456
+ else:
5457
+ on_what =''
5443
5458
  msg = (
5444
5459
  "Exception check %swill always require the GIL to be acquired."
5445
5460
  ) % on_what
5446
- solutions = ["Declare the function as 'noexcept' if you control the definition and "
5447
- "you're sure you don't want the function to raise exceptions."]
5461
+ the_function = function_name if function_name else "the function"
5462
+ if is_call and not function_name:
5463
+ the_function = the_function + " you are calling"
5464
+ solutions = ["Declare %s as 'noexcept' if you control the definition and "
5465
+ "you're sure you don't want the function to raise exceptions."
5466
+ % the_function]
5448
5467
  if void_return:
5449
5468
  solutions.append(
5450
- "Use an 'int' return type on the function to allow an error code to be returned.")
5469
+ "Use an 'int' return type on %s to allow an error code to be returned." %
5470
+ the_function)
5451
5471
  if len(solutions) == 1:
5452
5472
  msg = "%s %s" % (msg, solutions[0])
5453
5473
  else:
@@ -194,7 +194,7 @@ cdef extern from *:
194
194
  # string is null-terminated in case this is required by the application.
195
195
  # Also, note that the wchar_t* string might contain null characters,
196
196
  # which would cause the string to be truncated when used with most C functions.
197
- Py_ssize_t PyUnicode_AsWideChar(object o, wchar_t *w, Py_ssize_t size)
197
+ Py_ssize_t PyUnicode_AsWideChar(object o, wchar_t *w, Py_ssize_t size) except -1
198
198
 
199
199
  # Convert the Unicode object to a wide character string. The output
200
200
  # string always ends with a null character. If size is not NULL,
@@ -207,7 +207,7 @@ cdef extern from *:
207
207
  # Returns a buffer allocated by PyMem_New (use PyMem_Free() to free it)
208
208
  # on success. On error, returns NULL and *size is undefined. Raises a
209
209
  # MemoryError if memory allocation is failed.
210
- wchar_t *PyUnicode_AsWideCharString(object o, Py_ssize_t *size)
210
+ wchar_t *PyUnicode_AsWideCharString(object o, Py_ssize_t *size) except NULL
211
211
 
212
212
  # Unicode Methods
213
213
 
@@ -394,7 +394,11 @@ cdef extern from *:
394
394
  # This caches the UTF-8 representation of the string in the Unicode
395
395
  # object, and subsequent calls will return a pointer to the same buffer.
396
396
  # The caller is not responsible for deallocating the buffer
397
- const char* PyUnicode_AsUTF8AndSize(object unicode, Py_ssize_t *size)
397
+ const char* PyUnicode_AsUTF8AndSize(object unicode, Py_ssize_t *size) except NULL
398
+
399
+
400
+ # As PyUnicode_AsUTF8AndSize(), but does not store the size.
401
+ const char *PyUnicode_AsUTF8(object unicode) except NULL
398
402
 
399
403
  # These are the UTF-16 codec APIs:
400
404
 
@@ -2,7 +2,7 @@
2
2
  from __future__ import absolute_import
3
3
 
4
4
  # Possible version formats: "3.1.0", "3.1.0a1", "3.1.0a1.dev0"
5
- __version__ = "3.0.6"
5
+ __version__ = "3.0.8"
6
6
 
7
7
  try:
8
8
  from __builtin__ import basestring
@@ -451,6 +451,8 @@ int_types = [
451
451
  'Py_hash_t',
452
452
  'Py_ssize_t',
453
453
  'size_t',
454
+ 'ssize_t',
455
+ 'ptrdiff_t',
454
456
  ]
455
457
  float_types = [
456
458
  'longdouble',
@@ -491,7 +493,7 @@ del builtins
491
493
  for name in int_types:
492
494
  reprname = to_repr(name, name)
493
495
  gs[name] = typedef(py_int, reprname)
494
- if name not in ('Py_UNICODE', 'Py_UCS4') and not name.endswith('size_t'):
496
+ if name not in ('Py_UNICODE', 'Py_UCS4', 'Py_hash_t', 'ptrdiff_t') and not name.endswith('size_t'):
495
497
  gs['u'+name] = typedef(py_int, "unsigned " + reprname)
496
498
  gs['s'+name] = typedef(py_int, "signed " + reprname)
497
499
 
@@ -505,9 +507,18 @@ bint = typedef(bool, "bint")
505
507
  void = typedef(None, "void")
506
508
  Py_tss_t = typedef(None, "Py_tss_t")
507
509
 
508
- for t in int_types + float_types + complex_types + other_types:
510
+ for t in int_types:
509
511
  for i in range(1, 4):
510
512
  gs["%s_%s" % ('p'*i, t)] = gs[t]._pointer(i)
513
+ if 'u'+t in gs:
514
+ gs["%s_u%s" % ('p'*i, t)] = gs['u'+t]._pointer(i)
515
+ gs["%s_s%s" % ('p'*i, t)] = gs['s'+t]._pointer(i)
516
+
517
+ for t in float_types + complex_types + other_types:
518
+ for i in range(1, 4):
519
+ gs["%s_%s" % ('p'*i, t)] = gs[t]._pointer(i)
520
+
521
+ del t, i
511
522
 
512
523
  NULL = gs['p_void'](0)
513
524
 
@@ -0,0 +1,79 @@
1
+ import unittest
2
+
3
+ from Cython import Shadow
4
+ from Cython.Compiler import Options, CythonScope, PyrexTypes, Errors
5
+
6
+ class TestShadow(unittest.TestCase):
7
+ def test_all_types_in_shadow(self):
8
+ cython_scope = CythonScope.create_cython_scope(None)
9
+ # Not doing load_cythonscope at this stage because it requires a proper context and
10
+ # Errors.py to be set up
11
+
12
+ missing_types = []
13
+ for key in cython_scope.entries.keys():
14
+ if key.startswith('__') and key.endswith('__'):
15
+ continue
16
+ if key in ('PyTypeObject', 'PyObject_TypeCheck'):
17
+ # These are declared in Shadow.py for reasons that look to
18
+ # be an implementation detail, but it isn't our intention for
19
+ # users to access them from Pure Python mode.
20
+ continue
21
+ if not hasattr(Shadow, key):
22
+ missing_types.append(key)
23
+ self.assertEqual(missing_types, [])
24
+
25
+ def test_int_types_in_shadow(self):
26
+ missing_types = []
27
+ for int_name in Shadow.int_types:
28
+ for sign in ['', 'u', 's']:
29
+ name = sign + int_name
30
+
31
+ if sign and (
32
+ int_name in ['Py_UNICODE', 'Py_UCS4', 'Py_ssize_t',
33
+ 'ssize_t', 'ptrdiff_t', 'Py_hash_t'] or
34
+ name == "usize_t"):
35
+ # size_t is special-cased here a little since ssize_t legitimate
36
+ # but usize_t isn't
37
+ self.assertNotIn(name, dir(Shadow))
38
+ self.assertNotIn('p_' + name, dir(Shadow))
39
+ continue
40
+
41
+ if not hasattr(Shadow, name):
42
+ missing_types.append(name)
43
+
44
+ for ptr in range(1, 4):
45
+ ptr_name = 'p' * ptr + '_' + name
46
+ if not hasattr(Shadow, ptr_name):
47
+ missing_types.append(ptr_name)
48
+ self.assertEqual(missing_types, [])
49
+
50
+ def test_most_types(self):
51
+ # TODO it's unfortunately hard to get a definite list of types to confirm that they're
52
+ # present (because they're obtained by on-the-fly string parsing in `cython_scope.lookup_type`)
53
+
54
+ cython_scope = CythonScope.create_cython_scope(None)
55
+ # Set up just enough of "Context" and "Errors" that CythonScope.lookup_type can fail
56
+ class Context:
57
+ cpp = False
58
+ language_level = 3
59
+ future_directives = []
60
+ cython_scope.context = Context
61
+ Errors.init_thread()
62
+
63
+ missing_types = []
64
+ missing_lookups = []
65
+ for (signed, longness, name), type_ in PyrexTypes.modifiers_and_name_to_type.items():
66
+ if name == 'object':
67
+ continue # This probably shouldn't be in Shadow
68
+ if not hasattr(Shadow, name):
69
+ missing_types.append(name)
70
+ if not cython_scope.lookup_type(name):
71
+ missing_lookups.append(name)
72
+ for ptr in range(1, 4):
73
+ ptr_name = 'p' * ptr + '_' + name
74
+ if not hasattr(Shadow, ptr_name):
75
+ missing_types.append(ptr_name)
76
+ if not cython_scope.lookup_type(ptr_name):
77
+ missing_lookups.append(ptr_name)
78
+ self.assertEqual(missing_types, [])
79
+ self.assertEqual(missing_lookups, [])
@@ -58,7 +58,7 @@ typedef struct {
58
58
  // Dynamic default args and annotations
59
59
  void *defaults;
60
60
  int defaults_pyobjects;
61
- size_t defaults_size; // used by FusedFunction for copying defaults
61
+ size_t defaults_size; /* used by FusedFunction for copying defaults */
62
62
  int flags;
63
63
 
64
64
  // Defaults info
@@ -39,7 +39,7 @@ static PyObject* __Pyx_LoadInternalModule(const char* name, const char* fallback
39
39
  if (!module) {
40
40
  PyObject *localDict, *runValue, *builtins, *modulename;
41
41
  if (!PyErr_ExceptionMatches(PyExc_ImportError)) goto bad;
42
- PyErr_Clear(); // this is reasonably likely (especially on older versions of Python)
42
+ PyErr_Clear(); /* this is reasonably likely (especially on older versions of Python) */
43
43
  #if PY_MAJOR_VERSION < 3
44
44
  modulename = PyBytes_FromFormat("_cython_" CYTHON_ABI ".%s", name);
45
45
  #else
@@ -47,17 +47,17 @@ static PyObject* __Pyx_LoadInternalModule(const char* name, const char* fallback
47
47
  #endif
48
48
  if (!modulename) goto bad;
49
49
  #if PY_MAJOR_VERSION >= 3 && CYTHON_COMPILING_IN_CPYTHON
50
- module = PyImport_AddModuleObject(modulename); // borrowed
50
+ module = PyImport_AddModuleObject(modulename); /* borrowed */
51
51
  #else
52
- module = PyImport_AddModule(PyBytes_AsString(modulename)); // borrowed
52
+ module = PyImport_AddModule(PyBytes_AsString(modulename)); /* borrowed */
53
53
  #endif
54
54
  Py_DECREF(modulename);
55
55
  if (!module) goto bad;
56
56
  Py_INCREF(module);
57
57
  if (PyObject_SetAttrString(shared_abi_module, name, module) < 0) goto bad;
58
- localDict = PyModule_GetDict(module); // borrowed
58
+ localDict = PyModule_GetDict(module); /* borrowed */
59
59
  if (!localDict) goto bad;
60
- builtins = PyEval_GetBuiltins(); // borrowed
60
+ builtins = PyEval_GetBuiltins(); /* borrowed */
61
61
  if (!builtins) goto bad;
62
62
  if (PyDict_SetItemString(localDict, "__builtins__", builtins) <0) goto bad;
63
63
 
@@ -1083,7 +1083,7 @@ static PyCodeObject* __Pyx_CreateCodeObjectForTraceback(
1083
1083
  #else
1084
1084
  py_code = PyCode_NewEmpty(filename, funcname, py_line);
1085
1085
  #endif
1086
- Py_XDECREF(py_funcname); // XDECREF since it's only set on Py3 if cline
1086
+ Py_XDECREF(py_funcname); /* XDECREF since it's only set on Py3 if cline */
1087
1087
  return py_code;
1088
1088
  bad:
1089
1089
  Py_XDECREF(py_funcname);
@@ -301,7 +301,7 @@ static int __Pyx_ParseOptionalKeywords(
301
301
  if (*name) {
302
302
  values[name-argnames] = value;
303
303
  #if CYTHON_AVOID_BORROWED_REFS
304
- Py_INCREF(value); // transfer ownership of value to values
304
+ Py_INCREF(value); /* transfer ownership of value to values */
305
305
  Py_DECREF(key);
306
306
  #endif
307
307
  key = NULL;
@@ -323,7 +323,7 @@ static int __Pyx_ParseOptionalKeywords(
323
323
  && _PyString_Eq(**name, key)) {
324
324
  values[name-argnames] = value;
325
325
  #if CYTHON_AVOID_BORROWED_REFS
326
- value = NULL; // ownership transferred to values
326
+ value = NULL; /* ownership transferred to values */
327
327
  #endif
328
328
  break;
329
329
  }
@@ -357,7 +357,7 @@ static int __Pyx_ParseOptionalKeywords(
357
357
  if (cmp == 0) {
358
358
  values[name-argnames] = value;
359
359
  #if CYTHON_AVOID_BORROWED_REFS
360
- value = NULL; // ownership transferred to values
360
+ value = NULL; /* ownership transferred to values */
361
361
  #endif
362
362
  break;
363
363
  }
@@ -492,8 +492,8 @@ bad:
492
492
  #define __Pyx_Arg_NewRef_VARARGS(arg) __Pyx_NewRef(arg)
493
493
  #define __Pyx_Arg_XDECREF_VARARGS(arg) Py_XDECREF(arg)
494
494
  #else
495
- #define __Pyx_Arg_NewRef_VARARGS(arg) arg // no-op
496
- #define __Pyx_Arg_XDECREF_VARARGS(arg) // no-op - arg is borrowed
495
+ #define __Pyx_Arg_NewRef_VARARGS(arg) arg /* no-op */
496
+ #define __Pyx_Arg_XDECREF_VARARGS(arg) /* no-op - arg is borrowed */
497
497
  #endif
498
498
  #define __Pyx_NumKwargs_VARARGS(kwds) PyDict_Size(kwds)
499
499
  #define __Pyx_KwValues_VARARGS(args, nargs) NULL
@@ -509,9 +509,9 @@ bad:
509
509
  #else
510
510
  #define __Pyx_KwargsAsDict_FASTCALL(kw, kwvalues) _PyStack_AsDict(kwvalues, kw)
511
511
  #endif
512
- #define __Pyx_Arg_NewRef_FASTCALL(arg) arg // no-op, __Pyx_Arg_FASTCALL is direct and this needs
513
- // to have the same reference counting
514
- #define __Pyx_Arg_XDECREF_FASTCALL(arg) // no-op - arg was returned from array
512
+ #define __Pyx_Arg_NewRef_FASTCALL(arg) arg /* no-op, __Pyx_Arg_FASTCALL is direct and this needs
513
+ to have the same reference counting */
514
+ #define __Pyx_Arg_XDECREF_FASTCALL(arg) /* no-op - arg was returned from array */
515
515
  #else
516
516
  #define __Pyx_Arg_FASTCALL __Pyx_Arg_VARARGS
517
517
  #define __Pyx_NumKwargs_FASTCALL __Pyx_NumKwargs_VARARGS
@@ -555,11 +555,11 @@ static CYTHON_INLINE PyObject * __Pyx_GetKwValue_FASTCALL(PyObject *kwnames, PyO
555
555
  {
556
556
  int eq = __Pyx_PyUnicode_Equals(s, PyTuple_GET_ITEM(kwnames, i), Py_EQ);
557
557
  if (unlikely(eq != 0)) {
558
- if (unlikely(eq < 0)) return NULL; // error
558
+ if (unlikely(eq < 0)) return NULL; /* error */
559
559
  return kwvalues[i];
560
560
  }
561
561
  }
562
- return NULL; // not found (no exception set)
562
+ return NULL; /* not found (no exception set) */
563
563
  }
564
564
 
565
565
  #if CYTHON_COMPILING_IN_CPYTHON && PY_VERSION_HEX >= 0x030d0000
@@ -680,7 +680,7 @@ class __Pyx_FakeReference {
680
680
  PyObject *exception_table = NULL;
681
681
  PyObject *types_module=NULL, *code_type=NULL, *result=NULL;
682
682
  #if __PYX_LIMITED_VERSION_HEX < 0x030B0000
683
- PyObject *version_info; // borrowed
683
+ PyObject *version_info; /* borrowed */
684
684
  PyObject *py_minor_version = NULL;
685
685
  #endif
686
686
  long minor_version = 0;
@@ -690,8 +690,9 @@ class __Pyx_FakeReference {
690
690
  PyErr_Fetch(&type, &value, &traceback);
691
691
 
692
692
  #if __PYX_LIMITED_VERSION_HEX >= 0x030B0000
693
- minor_version = 11; // we don't yet need to distinguish between versions > 11
694
- // Note that from 3.13, when we do we can use Py_Version
693
+ minor_version = 11;
694
+ // we don't yet need to distinguish between versions > 11
695
+ // Note that from 3.13, when we do, we can use Py_Version
695
696
  #else
696
697
  if (!(version_info = PySys_GetObject("version_info"))) goto end;
697
698
  if (!(py_minor_version = PySequence_GetItem(version_info, 1))) goto end;
@@ -772,7 +773,7 @@ class __Pyx_FakeReference {
772
773
  // 1. pass an empty bytes string as exception_table
773
774
  // 2. pass name as qualname (TODO this might implementing properly in future)
774
775
  PyCodeObject *result;
775
- PyObject *empty_bytes = PyBytes_FromStringAndSize("", 0); // we don't have access to __pyx_empty_bytes here
776
+ PyObject *empty_bytes = PyBytes_FromStringAndSize("", 0); /* we don't have access to __pyx_empty_bytes here */
776
777
  if (!empty_bytes) return NULL;
777
778
  result =
778
779
  #if PY_VERSION_HEX >= 0x030C0000