Cython 3.0.10__tar.gz → 3.0.12__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.
- cython-3.0.12/.gitrev +1 -0
- {Cython-3.0.10 → cython-3.0.12}/CHANGES.rst +115 -43
- {Cython-3.0.10 → cython-3.0.12}/Cython/Build/Inline.py +5 -0
- {Cython-3.0.10 → cython-3.0.12}/Cython/Build/IpythonMagic.py +1 -1
- {Cython-3.0.10 → cython-3.0.12}/Cython/Compiler/Code.py +24 -17
- {Cython-3.0.10 → cython-3.0.12}/Cython/Compiler/ExprNodes.py +18 -11
- {Cython-3.0.10 → cython-3.0.12}/Cython/Compiler/FlowControl.py +42 -0
- {Cython-3.0.10 → cython-3.0.12}/Cython/Compiler/ModuleNode.py +2 -2
- {Cython-3.0.10 → cython-3.0.12}/Cython/Compiler/Nodes.py +5 -0
- {Cython-3.0.10 → cython-3.0.12}/Cython/Compiler/Optimize.py +5 -1
- {Cython-3.0.10 → cython-3.0.12}/Cython/Compiler/PyrexTypes.py +15 -3
- {Cython-3.0.10 → cython-3.0.12}/Cython/Compiler/TypeInference.py +1 -4
- {Cython-3.0.10 → cython-3.0.12}/Cython/Compiler/TypeSlots.py +1 -0
- {Cython-3.0.10 → cython-3.0.12}/Cython/Compiler/Visitor.py +2 -1
- {Cython-3.0.10 → cython-3.0.12}/Cython/Debugger/libpython.py +1 -1
- cython-3.0.12/Cython/Includes/cpython/time.pxd +79 -0
- {Cython-3.0.10 → cython-3.0.12}/Cython/Includes/libcpp/deque.pxd +2 -0
- {Cython-3.0.10 → cython-3.0.12}/Cython/Includes/libcpp/numeric.pxd +1 -1
- {Cython-3.0.10 → cython-3.0.12}/Cython/Includes/libcpp/optional.pxd +1 -1
- {Cython-3.0.10 → cython-3.0.12}/Cython/Shadow.py +1 -1
- {Cython-3.0.10 → cython-3.0.12}/Cython/Utility/AsyncGen.c +12 -0
- {Cython-3.0.10 → cython-3.0.12}/Cython/Utility/Builtins.c +0 -6
- {Cython-3.0.10 → cython-3.0.12}/Cython/Utility/Coroutine.c +13 -1
- {Cython-3.0.10 → cython-3.0.12}/Cython/Utility/CythonFunction.c +6 -0
- {Cython-3.0.10 → cython-3.0.12}/Cython/Utility/Exceptions.c +2 -2
- {Cython-3.0.10 → cython-3.0.12}/Cython/Utility/MemoryView.pyx +1 -1
- {Cython-3.0.10 → cython-3.0.12}/Cython/Utility/ObjectHandling.c +1 -1
- {Cython-3.0.10 → cython-3.0.12}/Cython/Utility/Overflow.c +1 -1
- {Cython-3.0.10 → cython-3.0.12}/Cython/Utility/Profile.c +1 -1
- {Cython-3.0.10 → cython-3.0.12}/Cython/Utility/StringTools.c +1 -1
- {Cython-3.0.10 → cython-3.0.12}/Cython/Utility/TypeConversion.c +198 -192
- {Cython-3.0.10 → cython-3.0.12}/PKG-INFO +4 -1
- {Cython-3.0.10 → cython-3.0.12}/Tools/dataclass_test_data/test_dataclasses.py +5 -3
- {Cython-3.0.10 → cython-3.0.12}/docs/conf.py +1 -1
- {Cython-3.0.10 → cython-3.0.12}/pyximport/_pyximport3.py +6 -2
- {Cython-3.0.10 → cython-3.0.12}/runtests.py +28 -8
- {Cython-3.0.10 → cython-3.0.12}/setup.py +3 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/errors/fused_types.pyx +10 -0
- cython-3.0.12/tests/errors/w_noexcept.pxd +2 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/errors/w_noexcept.pyx +15 -5
- cython-3.0.12/tests/errors/w_noexcept_pure.pxd +7 -0
- cython-3.0.12/tests/errors/w_noexcept_pure.py +48 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/memoryview/memoryview.pyx +18 -1
- {Cython-3.0.10 → cython-3.0.12}/tests/pypy2_bugs.txt +2 -1
- cython-3.0.12/tests/pyximport/pyximport_pythonpath.srctree +47 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/bytesmethods.pyx +8 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/cpp_stl_cpp11.pyx +5 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/cpp_stl_optional.pyx +6 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/cstruct.pyx +22 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/ctuple.pyx +18 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/cython3.pyx +28 -0
- cython-3.0.12/tests/run/dealloc_raise.srctree +45 -0
- cython-3.0.12/tests/run/extra_walrus.py +310 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/if_else_expr.pyx +1 -1
- cython-3.0.12/tests/run/legacy_implicit_noexcept_build.srctree +411 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/modop.pyx +1 -1
- {Cython-3.0.10 → cython-3.0.12}/tests/run/pyintop.pyx +17 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/r_docstrings.pyx +17 -17
- {Cython-3.0.10 → cython-3.0.12}/tests/run/test_dataclasses.pyx +3 -3
- {Cython-3.0.10 → cython-3.0.12}/tests/run/test_exceptions.pyx +1 -1
- {Cython-3.0.10 → cython-3.0.12}/tests/run/test_unicode_string_tests.pxi +7 -7
- {Cython-3.0.10 → cython-3.0.12}/tests/run/ufunc.pyx +17 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/unicodemethods.pyx +19 -0
- Cython-3.0.10/.gitrev +0 -1
- Cython-3.0.10/Cython/Includes/cpython/time.pxd +0 -51
- Cython-3.0.10/tests/run/extra_walrus.py +0 -146
- Cython-3.0.10/tests/run/legacy_implicit_noexcept_build.srctree +0 -33
- {Cython-3.0.10 → cython-3.0.12}/COPYING.txt +0 -0
- {Cython-3.0.10 → cython-3.0.12}/Cython/Build/BuildExecutable.py +0 -0
- {Cython-3.0.10 → cython-3.0.12}/Cython/Build/Cythonize.py +0 -0
- {Cython-3.0.10 → cython-3.0.12}/Cython/Build/Dependencies.py +0 -0
- {Cython-3.0.10 → cython-3.0.12}/Cython/Build/Distutils.py +0 -0
- {Cython-3.0.10 → cython-3.0.12}/Cython/Build/Tests/TestCyCache.py +0 -0
- {Cython-3.0.10 → cython-3.0.12}/Cython/Build/Tests/TestCythonizeArgsParser.py +0 -0
- {Cython-3.0.10 → cython-3.0.12}/Cython/Build/Tests/TestDependencies.py +0 -0
- {Cython-3.0.10 → cython-3.0.12}/Cython/Build/Tests/TestInline.py +0 -0
- {Cython-3.0.10 → cython-3.0.12}/Cython/Build/Tests/TestIpythonMagic.py +0 -0
- {Cython-3.0.10 → cython-3.0.12}/Cython/Build/Tests/TestRecythonize.py +0 -0
- {Cython-3.0.10 → cython-3.0.12}/Cython/Build/Tests/TestStripLiterals.py +0 -0
- {Cython-3.0.10 → cython-3.0.12}/Cython/Build/Tests/__init__.py +0 -0
- {Cython-3.0.10 → cython-3.0.12}/Cython/Build/__init__.py +0 -0
- {Cython-3.0.10 → cython-3.0.12}/Cython/CodeWriter.py +0 -0
- {Cython-3.0.10 → cython-3.0.12}/Cython/Compiler/AnalysedTreeTransforms.py +0 -0
- {Cython-3.0.10 → cython-3.0.12}/Cython/Compiler/Annotate.py +0 -0
- {Cython-3.0.10 → cython-3.0.12}/Cython/Compiler/AutoDocTransforms.py +0 -0
- {Cython-3.0.10 → cython-3.0.12}/Cython/Compiler/Buffer.py +0 -0
- {Cython-3.0.10 → cython-3.0.12}/Cython/Compiler/Builtin.py +0 -0
- {Cython-3.0.10 → cython-3.0.12}/Cython/Compiler/CmdLine.py +0 -0
- {Cython-3.0.10 → cython-3.0.12}/Cython/Compiler/Code.pxd +0 -0
- {Cython-3.0.10 → cython-3.0.12}/Cython/Compiler/CodeGeneration.py +0 -0
- {Cython-3.0.10 → cython-3.0.12}/Cython/Compiler/CythonScope.py +0 -0
- {Cython-3.0.10 → cython-3.0.12}/Cython/Compiler/Dataclass.py +0 -0
- {Cython-3.0.10 → cython-3.0.12}/Cython/Compiler/DebugFlags.py +0 -0
- {Cython-3.0.10 → cython-3.0.12}/Cython/Compiler/Errors.py +0 -0
- {Cython-3.0.10 → cython-3.0.12}/Cython/Compiler/FlowControl.pxd +0 -0
- {Cython-3.0.10 → cython-3.0.12}/Cython/Compiler/FusedNode.py +0 -0
- {Cython-3.0.10 → cython-3.0.12}/Cython/Compiler/Future.py +0 -0
- {Cython-3.0.10 → cython-3.0.12}/Cython/Compiler/Interpreter.py +0 -0
- {Cython-3.0.10 → cython-3.0.12}/Cython/Compiler/Lexicon.py +0 -0
- {Cython-3.0.10 → cython-3.0.12}/Cython/Compiler/Main.py +0 -0
- {Cython-3.0.10 → cython-3.0.12}/Cython/Compiler/MemoryView.py +0 -0
- {Cython-3.0.10 → cython-3.0.12}/Cython/Compiler/Naming.py +0 -0
- {Cython-3.0.10 → cython-3.0.12}/Cython/Compiler/Options.py +0 -0
- {Cython-3.0.10 → cython-3.0.12}/Cython/Compiler/ParseTreeTransforms.pxd +0 -0
- {Cython-3.0.10 → cython-3.0.12}/Cython/Compiler/ParseTreeTransforms.py +0 -0
- {Cython-3.0.10 → cython-3.0.12}/Cython/Compiler/Parsing.pxd +0 -0
- {Cython-3.0.10 → cython-3.0.12}/Cython/Compiler/Parsing.py +0 -0
- {Cython-3.0.10 → cython-3.0.12}/Cython/Compiler/Pipeline.py +0 -0
- {Cython-3.0.10 → cython-3.0.12}/Cython/Compiler/Pythran.py +0 -0
- {Cython-3.0.10 → cython-3.0.12}/Cython/Compiler/Scanning.pxd +0 -0
- {Cython-3.0.10 → cython-3.0.12}/Cython/Compiler/Scanning.py +0 -0
- {Cython-3.0.10 → cython-3.0.12}/Cython/Compiler/StringEncoding.py +0 -0
- {Cython-3.0.10 → cython-3.0.12}/Cython/Compiler/Symtab.py +0 -0
- {Cython-3.0.10 → cython-3.0.12}/Cython/Compiler/Tests/TestBuffer.py +0 -0
- {Cython-3.0.10 → cython-3.0.12}/Cython/Compiler/Tests/TestCmdLine.py +0 -0
- {Cython-3.0.10 → cython-3.0.12}/Cython/Compiler/Tests/TestFlowControl.py +0 -0
- {Cython-3.0.10 → cython-3.0.12}/Cython/Compiler/Tests/TestGrammar.py +0 -0
- {Cython-3.0.10 → cython-3.0.12}/Cython/Compiler/Tests/TestMemView.py +0 -0
- {Cython-3.0.10 → cython-3.0.12}/Cython/Compiler/Tests/TestParseTreeTransforms.py +0 -0
- {Cython-3.0.10 → cython-3.0.12}/Cython/Compiler/Tests/TestScanning.py +0 -0
- {Cython-3.0.10 → cython-3.0.12}/Cython/Compiler/Tests/TestSignatureMatching.py +0 -0
- {Cython-3.0.10 → cython-3.0.12}/Cython/Compiler/Tests/TestStringEncoding.py +0 -0
- {Cython-3.0.10 → cython-3.0.12}/Cython/Compiler/Tests/TestTreeFragment.py +0 -0
- {Cython-3.0.10 → cython-3.0.12}/Cython/Compiler/Tests/TestTreePath.py +0 -0
- {Cython-3.0.10 → cython-3.0.12}/Cython/Compiler/Tests/TestTypes.py +0 -0
- {Cython-3.0.10 → cython-3.0.12}/Cython/Compiler/Tests/TestUtilityLoad.py +0 -0
- {Cython-3.0.10 → cython-3.0.12}/Cython/Compiler/Tests/TestVisitor.py +0 -0
- {Cython-3.0.10 → cython-3.0.12}/Cython/Compiler/Tests/Utils.py +0 -0
- {Cython-3.0.10 → cython-3.0.12}/Cython/Compiler/Tests/__init__.py +0 -0
- {Cython-3.0.10 → cython-3.0.12}/Cython/Compiler/TreeFragment.py +0 -0
- {Cython-3.0.10 → cython-3.0.12}/Cython/Compiler/TreePath.py +0 -0
- {Cython-3.0.10 → cython-3.0.12}/Cython/Compiler/UFuncs.py +0 -0
- {Cython-3.0.10 → cython-3.0.12}/Cython/Compiler/UtilNodes.py +0 -0
- {Cython-3.0.10 → cython-3.0.12}/Cython/Compiler/UtilityCode.py +0 -0
- {Cython-3.0.10 → cython-3.0.12}/Cython/Compiler/Version.py +0 -0
- {Cython-3.0.10 → cython-3.0.12}/Cython/Compiler/Visitor.pxd +0 -0
- {Cython-3.0.10 → cython-3.0.12}/Cython/Compiler/__init__.py +0 -0
- {Cython-3.0.10 → cython-3.0.12}/Cython/Coverage.py +0 -0
- {Cython-3.0.10 → cython-3.0.12}/Cython/Debugger/Cygdb.py +0 -0
- {Cython-3.0.10 → cython-3.0.12}/Cython/Debugger/DebugWriter.py +0 -0
- {Cython-3.0.10 → cython-3.0.12}/Cython/Debugger/Tests/TestLibCython.py +0 -0
- {Cython-3.0.10 → cython-3.0.12}/Cython/Debugger/Tests/__init__.py +0 -0
- {Cython-3.0.10 → cython-3.0.12}/Cython/Debugger/Tests/cfuncs.c +0 -0
- {Cython-3.0.10 → cython-3.0.12}/Cython/Debugger/Tests/cfuncs.h +0 -0
- {Cython-3.0.10 → cython-3.0.12}/Cython/Debugger/Tests/codefile +0 -0
- {Cython-3.0.10 → cython-3.0.12}/Cython/Debugger/Tests/test_libcython_in_gdb.py +0 -0
- {Cython-3.0.10 → cython-3.0.12}/Cython/Debugger/Tests/test_libpython_in_gdb.py +0 -0
- {Cython-3.0.10 → cython-3.0.12}/Cython/Debugger/__init__.py +0 -0
- {Cython-3.0.10 → cython-3.0.12}/Cython/Debugger/libcython.py +0 -0
- {Cython-3.0.10 → cython-3.0.12}/Cython/Debugging.py +0 -0
- {Cython-3.0.10 → cython-3.0.12}/Cython/Distutils/__init__.py +0 -0
- {Cython-3.0.10 → cython-3.0.12}/Cython/Distutils/build_ext.py +0 -0
- {Cython-3.0.10 → cython-3.0.12}/Cython/Distutils/extension.py +0 -0
- {Cython-3.0.10 → cython-3.0.12}/Cython/Distutils/old_build_ext.py +0 -0
- {Cython-3.0.10 → cython-3.0.12}/Cython/Includes/cpython/__init__.pxd +0 -0
- {Cython-3.0.10 → cython-3.0.12}/Cython/Includes/cpython/array.pxd +0 -0
- {Cython-3.0.10 → cython-3.0.12}/Cython/Includes/cpython/bool.pxd +0 -0
- {Cython-3.0.10 → cython-3.0.12}/Cython/Includes/cpython/buffer.pxd +0 -0
- {Cython-3.0.10 → cython-3.0.12}/Cython/Includes/cpython/bytearray.pxd +0 -0
- {Cython-3.0.10 → cython-3.0.12}/Cython/Includes/cpython/bytes.pxd +0 -0
- {Cython-3.0.10 → cython-3.0.12}/Cython/Includes/cpython/cellobject.pxd +0 -0
- {Cython-3.0.10 → cython-3.0.12}/Cython/Includes/cpython/ceval.pxd +0 -0
- {Cython-3.0.10 → cython-3.0.12}/Cython/Includes/cpython/cobject.pxd +0 -0
- {Cython-3.0.10 → cython-3.0.12}/Cython/Includes/cpython/codecs.pxd +0 -0
- {Cython-3.0.10 → cython-3.0.12}/Cython/Includes/cpython/complex.pxd +0 -0
- {Cython-3.0.10 → cython-3.0.12}/Cython/Includes/cpython/contextvars.pxd +0 -0
- {Cython-3.0.10 → cython-3.0.12}/Cython/Includes/cpython/conversion.pxd +0 -0
- {Cython-3.0.10 → cython-3.0.12}/Cython/Includes/cpython/datetime.pxd +0 -0
- {Cython-3.0.10 → cython-3.0.12}/Cython/Includes/cpython/descr.pxd +0 -0
- {Cython-3.0.10 → cython-3.0.12}/Cython/Includes/cpython/dict.pxd +0 -0
- {Cython-3.0.10 → cython-3.0.12}/Cython/Includes/cpython/exc.pxd +0 -0
- {Cython-3.0.10 → cython-3.0.12}/Cython/Includes/cpython/fileobject.pxd +0 -0
- {Cython-3.0.10 → cython-3.0.12}/Cython/Includes/cpython/float.pxd +0 -0
- {Cython-3.0.10 → cython-3.0.12}/Cython/Includes/cpython/function.pxd +0 -0
- {Cython-3.0.10 → cython-3.0.12}/Cython/Includes/cpython/genobject.pxd +0 -0
- {Cython-3.0.10 → cython-3.0.12}/Cython/Includes/cpython/getargs.pxd +0 -0
- {Cython-3.0.10 → cython-3.0.12}/Cython/Includes/cpython/instance.pxd +0 -0
- {Cython-3.0.10 → cython-3.0.12}/Cython/Includes/cpython/int.pxd +0 -0
- {Cython-3.0.10 → cython-3.0.12}/Cython/Includes/cpython/iterator.pxd +0 -0
- {Cython-3.0.10 → cython-3.0.12}/Cython/Includes/cpython/iterobject.pxd +0 -0
- {Cython-3.0.10 → cython-3.0.12}/Cython/Includes/cpython/list.pxd +0 -0
- {Cython-3.0.10 → cython-3.0.12}/Cython/Includes/cpython/long.pxd +0 -0
- {Cython-3.0.10 → cython-3.0.12}/Cython/Includes/cpython/longintrepr.pxd +0 -0
- {Cython-3.0.10 → cython-3.0.12}/Cython/Includes/cpython/mapping.pxd +0 -0
- {Cython-3.0.10 → cython-3.0.12}/Cython/Includes/cpython/marshal.pxd +0 -0
- {Cython-3.0.10 → cython-3.0.12}/Cython/Includes/cpython/mem.pxd +0 -0
- {Cython-3.0.10 → cython-3.0.12}/Cython/Includes/cpython/memoryview.pxd +0 -0
- {Cython-3.0.10 → cython-3.0.12}/Cython/Includes/cpython/method.pxd +0 -0
- {Cython-3.0.10 → cython-3.0.12}/Cython/Includes/cpython/module.pxd +0 -0
- {Cython-3.0.10 → cython-3.0.12}/Cython/Includes/cpython/number.pxd +0 -0
- {Cython-3.0.10 → cython-3.0.12}/Cython/Includes/cpython/object.pxd +0 -0
- {Cython-3.0.10 → cython-3.0.12}/Cython/Includes/cpython/oldbuffer.pxd +0 -0
- {Cython-3.0.10 → cython-3.0.12}/Cython/Includes/cpython/pycapsule.pxd +0 -0
- {Cython-3.0.10 → cython-3.0.12}/Cython/Includes/cpython/pylifecycle.pxd +0 -0
- {Cython-3.0.10 → cython-3.0.12}/Cython/Includes/cpython/pyport.pxd +0 -0
- {Cython-3.0.10 → cython-3.0.12}/Cython/Includes/cpython/pystate.pxd +0 -0
- {Cython-3.0.10 → cython-3.0.12}/Cython/Includes/cpython/pythread.pxd +0 -0
- {Cython-3.0.10 → cython-3.0.12}/Cython/Includes/cpython/ref.pxd +0 -0
- {Cython-3.0.10 → cython-3.0.12}/Cython/Includes/cpython/sequence.pxd +0 -0
- {Cython-3.0.10 → cython-3.0.12}/Cython/Includes/cpython/set.pxd +0 -0
- {Cython-3.0.10 → cython-3.0.12}/Cython/Includes/cpython/slice.pxd +0 -0
- {Cython-3.0.10 → cython-3.0.12}/Cython/Includes/cpython/string.pxd +0 -0
- {Cython-3.0.10 → cython-3.0.12}/Cython/Includes/cpython/tuple.pxd +0 -0
- {Cython-3.0.10 → cython-3.0.12}/Cython/Includes/cpython/type.pxd +0 -0
- {Cython-3.0.10 → cython-3.0.12}/Cython/Includes/cpython/unicode.pxd +0 -0
- {Cython-3.0.10 → cython-3.0.12}/Cython/Includes/cpython/version.pxd +0 -0
- {Cython-3.0.10 → cython-3.0.12}/Cython/Includes/cpython/weakref.pxd +0 -0
- {Cython-3.0.10 → cython-3.0.12}/Cython/Includes/libc/__init__.pxd +0 -0
- {Cython-3.0.10 → cython-3.0.12}/Cython/Includes/libc/complex.pxd +0 -0
- {Cython-3.0.10 → cython-3.0.12}/Cython/Includes/libc/errno.pxd +0 -0
- {Cython-3.0.10 → cython-3.0.12}/Cython/Includes/libc/float.pxd +0 -0
- {Cython-3.0.10 → cython-3.0.12}/Cython/Includes/libc/limits.pxd +0 -0
- {Cython-3.0.10 → cython-3.0.12}/Cython/Includes/libc/locale.pxd +0 -0
- {Cython-3.0.10 → cython-3.0.12}/Cython/Includes/libc/math.pxd +0 -0
- {Cython-3.0.10 → cython-3.0.12}/Cython/Includes/libc/setjmp.pxd +0 -0
- {Cython-3.0.10 → cython-3.0.12}/Cython/Includes/libc/signal.pxd +0 -0
- {Cython-3.0.10 → cython-3.0.12}/Cython/Includes/libc/stddef.pxd +0 -0
- {Cython-3.0.10 → cython-3.0.12}/Cython/Includes/libc/stdint.pxd +0 -0
- {Cython-3.0.10 → cython-3.0.12}/Cython/Includes/libc/stdio.pxd +0 -0
- {Cython-3.0.10 → cython-3.0.12}/Cython/Includes/libc/stdlib.pxd +0 -0
- {Cython-3.0.10 → cython-3.0.12}/Cython/Includes/libc/string.pxd +0 -0
- {Cython-3.0.10 → cython-3.0.12}/Cython/Includes/libc/time.pxd +0 -0
- {Cython-3.0.10 → cython-3.0.12}/Cython/Includes/libcpp/__init__.pxd +0 -0
- {Cython-3.0.10 → cython-3.0.12}/Cython/Includes/libcpp/algorithm.pxd +0 -0
- {Cython-3.0.10 → cython-3.0.12}/Cython/Includes/libcpp/any.pxd +0 -0
- {Cython-3.0.10 → cython-3.0.12}/Cython/Includes/libcpp/atomic.pxd +0 -0
- {Cython-3.0.10 → cython-3.0.12}/Cython/Includes/libcpp/bit.pxd +0 -0
- {Cython-3.0.10 → cython-3.0.12}/Cython/Includes/libcpp/cast.pxd +0 -0
- {Cython-3.0.10 → cython-3.0.12}/Cython/Includes/libcpp/cmath.pxd +0 -0
- {Cython-3.0.10 → cython-3.0.12}/Cython/Includes/libcpp/complex.pxd +0 -0
- {Cython-3.0.10 → cython-3.0.12}/Cython/Includes/libcpp/execution.pxd +0 -0
- {Cython-3.0.10 → cython-3.0.12}/Cython/Includes/libcpp/forward_list.pxd +0 -0
- {Cython-3.0.10 → cython-3.0.12}/Cython/Includes/libcpp/functional.pxd +0 -0
- {Cython-3.0.10 → cython-3.0.12}/Cython/Includes/libcpp/iterator.pxd +0 -0
- {Cython-3.0.10 → cython-3.0.12}/Cython/Includes/libcpp/limits.pxd +0 -0
- {Cython-3.0.10 → cython-3.0.12}/Cython/Includes/libcpp/list.pxd +0 -0
- {Cython-3.0.10 → cython-3.0.12}/Cython/Includes/libcpp/map.pxd +0 -0
- {Cython-3.0.10 → cython-3.0.12}/Cython/Includes/libcpp/memory.pxd +0 -0
- {Cython-3.0.10 → cython-3.0.12}/Cython/Includes/libcpp/numbers.pxd +0 -0
- {Cython-3.0.10 → cython-3.0.12}/Cython/Includes/libcpp/pair.pxd +0 -0
- {Cython-3.0.10 → cython-3.0.12}/Cython/Includes/libcpp/queue.pxd +0 -0
- {Cython-3.0.10 → cython-3.0.12}/Cython/Includes/libcpp/random.pxd +0 -0
- {Cython-3.0.10 → cython-3.0.12}/Cython/Includes/libcpp/set.pxd +0 -0
- {Cython-3.0.10 → cython-3.0.12}/Cython/Includes/libcpp/stack.pxd +0 -0
- {Cython-3.0.10 → cython-3.0.12}/Cython/Includes/libcpp/string.pxd +0 -0
- {Cython-3.0.10 → cython-3.0.12}/Cython/Includes/libcpp/typeindex.pxd +0 -0
- {Cython-3.0.10 → cython-3.0.12}/Cython/Includes/libcpp/typeinfo.pxd +0 -0
- {Cython-3.0.10 → cython-3.0.12}/Cython/Includes/libcpp/unordered_map.pxd +0 -0
- {Cython-3.0.10 → cython-3.0.12}/Cython/Includes/libcpp/unordered_set.pxd +0 -0
- {Cython-3.0.10 → cython-3.0.12}/Cython/Includes/libcpp/utility.pxd +0 -0
- {Cython-3.0.10 → cython-3.0.12}/Cython/Includes/libcpp/vector.pxd +0 -0
- {Cython-3.0.10 → cython-3.0.12}/Cython/Includes/numpy/__init__.pxd +0 -0
- {Cython-3.0.10 → cython-3.0.12}/Cython/Includes/numpy/math.pxd +0 -0
- {Cython-3.0.10 → cython-3.0.12}/Cython/Includes/openmp.pxd +0 -0
- {Cython-3.0.10 → cython-3.0.12}/Cython/Includes/posix/__init__.pxd +0 -0
- {Cython-3.0.10 → cython-3.0.12}/Cython/Includes/posix/dlfcn.pxd +0 -0
- {Cython-3.0.10 → cython-3.0.12}/Cython/Includes/posix/fcntl.pxd +0 -0
- {Cython-3.0.10 → cython-3.0.12}/Cython/Includes/posix/ioctl.pxd +0 -0
- {Cython-3.0.10 → cython-3.0.12}/Cython/Includes/posix/mman.pxd +0 -0
- {Cython-3.0.10 → cython-3.0.12}/Cython/Includes/posix/resource.pxd +0 -0
- {Cython-3.0.10 → cython-3.0.12}/Cython/Includes/posix/select.pxd +0 -0
- {Cython-3.0.10 → cython-3.0.12}/Cython/Includes/posix/signal.pxd +0 -0
- {Cython-3.0.10 → cython-3.0.12}/Cython/Includes/posix/stat.pxd +0 -0
- {Cython-3.0.10 → cython-3.0.12}/Cython/Includes/posix/stdio.pxd +0 -0
- {Cython-3.0.10 → cython-3.0.12}/Cython/Includes/posix/stdlib.pxd +0 -0
- {Cython-3.0.10 → cython-3.0.12}/Cython/Includes/posix/strings.pxd +0 -0
- {Cython-3.0.10 → cython-3.0.12}/Cython/Includes/posix/time.pxd +0 -0
- {Cython-3.0.10 → cython-3.0.12}/Cython/Includes/posix/types.pxd +0 -0
- {Cython-3.0.10 → cython-3.0.12}/Cython/Includes/posix/uio.pxd +0 -0
- {Cython-3.0.10 → cython-3.0.12}/Cython/Includes/posix/unistd.pxd +0 -0
- {Cython-3.0.10 → cython-3.0.12}/Cython/Includes/posix/wait.pxd +0 -0
- {Cython-3.0.10 → cython-3.0.12}/Cython/Parser/ConcreteSyntaxTree.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/Cython/Parser/Grammar +0 -0
- {Cython-3.0.10 → cython-3.0.12}/Cython/Parser/__init__.py +0 -0
- {Cython-3.0.10 → cython-3.0.12}/Cython/Plex/Actions.pxd +0 -0
- {Cython-3.0.10 → cython-3.0.12}/Cython/Plex/Actions.py +0 -0
- {Cython-3.0.10 → cython-3.0.12}/Cython/Plex/DFA.pxd +0 -0
- {Cython-3.0.10 → cython-3.0.12}/Cython/Plex/DFA.py +0 -0
- {Cython-3.0.10 → cython-3.0.12}/Cython/Plex/Errors.py +0 -0
- {Cython-3.0.10 → cython-3.0.12}/Cython/Plex/Lexicons.py +0 -0
- {Cython-3.0.10 → cython-3.0.12}/Cython/Plex/Machines.pxd +0 -0
- {Cython-3.0.10 → cython-3.0.12}/Cython/Plex/Machines.py +0 -0
- {Cython-3.0.10 → cython-3.0.12}/Cython/Plex/Regexps.py +0 -0
- {Cython-3.0.10 → cython-3.0.12}/Cython/Plex/Scanners.pxd +0 -0
- {Cython-3.0.10 → cython-3.0.12}/Cython/Plex/Scanners.py +0 -0
- {Cython-3.0.10 → cython-3.0.12}/Cython/Plex/Transitions.pxd +0 -0
- {Cython-3.0.10 → cython-3.0.12}/Cython/Plex/Transitions.py +0 -0
- {Cython-3.0.10 → cython-3.0.12}/Cython/Plex/__init__.py +0 -0
- {Cython-3.0.10 → cython-3.0.12}/Cython/Runtime/__init__.py +0 -0
- {Cython-3.0.10 → cython-3.0.12}/Cython/Runtime/refnanny.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/Cython/Shadow.pyi +0 -0
- {Cython-3.0.10 → cython-3.0.12}/Cython/StringIOTree.pxd +0 -0
- {Cython-3.0.10 → cython-3.0.12}/Cython/StringIOTree.py +0 -0
- {Cython-3.0.10 → cython-3.0.12}/Cython/Tempita/__init__.py +0 -0
- {Cython-3.0.10 → cython-3.0.12}/Cython/Tempita/_looper.py +0 -0
- {Cython-3.0.10 → cython-3.0.12}/Cython/Tempita/_tempita.py +0 -0
- {Cython-3.0.10 → cython-3.0.12}/Cython/Tempita/compat3.py +0 -0
- {Cython-3.0.10 → cython-3.0.12}/Cython/TestUtils.py +0 -0
- {Cython-3.0.10 → cython-3.0.12}/Cython/Tests/TestCodeWriter.py +0 -0
- {Cython-3.0.10 → cython-3.0.12}/Cython/Tests/TestCythonUtils.py +0 -0
- {Cython-3.0.10 → cython-3.0.12}/Cython/Tests/TestJediTyper.py +0 -0
- {Cython-3.0.10 → cython-3.0.12}/Cython/Tests/TestShadow.py +0 -0
- {Cython-3.0.10 → cython-3.0.12}/Cython/Tests/TestStringIOTree.py +0 -0
- {Cython-3.0.10 → cython-3.0.12}/Cython/Tests/TestTestUtils.py +0 -0
- {Cython-3.0.10 → cython-3.0.12}/Cython/Tests/__init__.py +0 -0
- {Cython-3.0.10 → cython-3.0.12}/Cython/Tests/xmlrunner.py +0 -0
- {Cython-3.0.10 → cython-3.0.12}/Cython/Utility/Buffer.c +0 -0
- {Cython-3.0.10 → cython-3.0.12}/Cython/Utility/CConvert.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/Cython/Utility/CMath.c +0 -0
- {Cython-3.0.10 → cython-3.0.12}/Cython/Utility/CommonStructures.c +0 -0
- {Cython-3.0.10 → cython-3.0.12}/Cython/Utility/Complex.c +0 -0
- {Cython-3.0.10 → cython-3.0.12}/Cython/Utility/CpdefEnums.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/Cython/Utility/CppConvert.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/Cython/Utility/CppSupport.cpp +0 -0
- {Cython-3.0.10 → cython-3.0.12}/Cython/Utility/Dataclasses.c +0 -0
- {Cython-3.0.10 → cython-3.0.12}/Cython/Utility/Dataclasses.py +0 -0
- {Cython-3.0.10 → cython-3.0.12}/Cython/Utility/Embed.c +0 -0
- {Cython-3.0.10 → cython-3.0.12}/Cython/Utility/ExtensionTypes.c +0 -0
- {Cython-3.0.10 → cython-3.0.12}/Cython/Utility/FunctionArguments.c +0 -0
- {Cython-3.0.10 → cython-3.0.12}/Cython/Utility/ImportExport.c +0 -0
- {Cython-3.0.10 → cython-3.0.12}/Cython/Utility/MemoryView_C.c +0 -0
- {Cython-3.0.10 → cython-3.0.12}/Cython/Utility/ModuleSetupCode.c +0 -0
- {Cython-3.0.10 → cython-3.0.12}/Cython/Utility/NumpyImportArray.c +0 -0
- {Cython-3.0.10 → cython-3.0.12}/Cython/Utility/Optimize.c +9 -9
- {Cython-3.0.10 → cython-3.0.12}/Cython/Utility/Printing.c +0 -0
- {Cython-3.0.10 → cython-3.0.12}/Cython/Utility/TestCyUtilityLoader.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/Cython/Utility/TestCythonScope.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/Cython/Utility/TestUtilityLoader.c +0 -0
- {Cython-3.0.10 → cython-3.0.12}/Cython/Utility/UFuncs.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/Cython/Utility/UFuncs_C.c +0 -0
- {Cython-3.0.10 → cython-3.0.12}/Cython/Utility/__init__.py +0 -0
- {Cython-3.0.10 → cython-3.0.12}/Cython/Utility/arrayarray.h +0 -0
- {Cython-3.0.10 → cython-3.0.12}/Cython/Utils.pxd +0 -0
- {Cython-3.0.10 → cython-3.0.12}/Cython/Utils.py +0 -0
- {Cython-3.0.10 → cython-3.0.12}/Cython/__init__.py +0 -0
- {Cython-3.0.10 → cython-3.0.12}/Demos/Makefile +0 -0
- {Cython-3.0.10 → cython-3.0.12}/Demos/Makefile.nodistutils +0 -0
- {Cython-3.0.10 → cython-3.0.12}/Demos/benchmarks/bpnn3.pxd +0 -0
- {Cython-3.0.10 → cython-3.0.12}/Demos/benchmarks/bpnn3.py +0 -0
- {Cython-3.0.10 → cython-3.0.12}/Demos/benchmarks/chaos.pxd +0 -0
- {Cython-3.0.10 → cython-3.0.12}/Demos/benchmarks/chaos.py +0 -0
- {Cython-3.0.10 → cython-3.0.12}/Demos/benchmarks/coroutines.py +0 -0
- {Cython-3.0.10 → cython-3.0.12}/Demos/benchmarks/fstrings.py +0 -0
- {Cython-3.0.10 → cython-3.0.12}/Demos/benchmarks/generators.py +0 -0
- {Cython-3.0.10 → cython-3.0.12}/Demos/benchmarks/hexiom2.pxd +0 -0
- {Cython-3.0.10 → cython-3.0.12}/Demos/benchmarks/hexiom2.py +0 -0
- {Cython-3.0.10 → cython-3.0.12}/Demos/benchmarks/meteor_contest.pxd +0 -0
- {Cython-3.0.10 → cython-3.0.12}/Demos/benchmarks/meteor_contest.py +0 -0
- {Cython-3.0.10 → cython-3.0.12}/Demos/benchmarks/nbody.pxd +0 -0
- {Cython-3.0.10 → cython-3.0.12}/Demos/benchmarks/nbody.py +0 -0
- {Cython-3.0.10 → cython-3.0.12}/Demos/benchmarks/nqueens.py +0 -0
- {Cython-3.0.10 → cython-3.0.12}/Demos/benchmarks/richards.pxd +0 -0
- {Cython-3.0.10 → cython-3.0.12}/Demos/benchmarks/richards.py +0 -0
- {Cython-3.0.10 → cython-3.0.12}/Demos/benchmarks/setup.py +0 -0
- {Cython-3.0.10 → cython-3.0.12}/Demos/benchmarks/spectralnorm.pxd +0 -0
- {Cython-3.0.10 → cython-3.0.12}/Demos/benchmarks/spectralnorm.py +0 -0
- {Cython-3.0.10 → cython-3.0.12}/Demos/benchmarks/util.py +0 -0
- {Cython-3.0.10 → cython-3.0.12}/Demos/callback/Makefile +0 -0
- {Cython-3.0.10 → cython-3.0.12}/Demos/callback/Makefile.nodistutils +0 -0
- {Cython-3.0.10 → cython-3.0.12}/Demos/callback/README.rst +0 -0
- {Cython-3.0.10 → cython-3.0.12}/Demos/callback/Setup.py +0 -0
- {Cython-3.0.10 → cython-3.0.12}/Demos/callback/cheese.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/Demos/callback/cheesefinder.c +0 -0
- {Cython-3.0.10 → cython-3.0.12}/Demos/callback/cheesefinder.h +0 -0
- {Cython-3.0.10 → cython-3.0.12}/Demos/callback/run_cheese.py +0 -0
- {Cython-3.0.10 → cython-3.0.12}/Demos/embed/Makefile +0 -0
- {Cython-3.0.10 → cython-3.0.12}/Demos/embed/Makefile.msc +0 -0
- {Cython-3.0.10 → cython-3.0.12}/Demos/embed/Makefile.msc.static +0 -0
- {Cython-3.0.10 → cython-3.0.12}/Demos/embed/Makefile.unix +0 -0
- {Cython-3.0.10 → cython-3.0.12}/Demos/embed/README.rst +0 -0
- {Cython-3.0.10 → cython-3.0.12}/Demos/embed/assert_equal.py +0 -0
- {Cython-3.0.10 → cython-3.0.12}/Demos/embed/embedded.output +0 -0
- {Cython-3.0.10 → cython-3.0.12}/Demos/embed/embedded.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/Demos/freeze/Makefile +0 -0
- {Cython-3.0.10 → cython-3.0.12}/Demos/freeze/README.rst +0 -0
- {Cython-3.0.10 → cython-3.0.12}/Demos/freeze/combinatorics.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/Demos/freeze/lcmath.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/Demos/integrate0.py +0 -0
- {Cython-3.0.10 → cython-3.0.12}/Demos/integrate1.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/Demos/integrate2.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/Demos/integrate_timing.py +0 -0
- {Cython-3.0.10 → cython-3.0.12}/Demos/libraries/call_mymath.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/Demos/libraries/mymath.c +0 -0
- {Cython-3.0.10 → cython-3.0.12}/Demos/libraries/mymath.h +0 -0
- {Cython-3.0.10 → cython-3.0.12}/Demos/libraries/setup.py +0 -0
- {Cython-3.0.10 → cython-3.0.12}/Demos/numpy_demo.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/Demos/overflow_perf.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/Demos/overflow_perf_run.py +0 -0
- {Cython-3.0.10 → cython-3.0.12}/Demos/primes.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/Demos/pyprimes.py +0 -0
- {Cython-3.0.10 → cython-3.0.12}/Demos/run_numeric_demo.py +0 -0
- {Cython-3.0.10 → cython-3.0.12}/Demos/run_primes.py +0 -0
- {Cython-3.0.10 → cython-3.0.12}/Demos/run_spam.py +0 -0
- {Cython-3.0.10 → cython-3.0.12}/Demos/setup.py +0 -0
- {Cython-3.0.10 → cython-3.0.12}/Demos/spam.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/INSTALL.txt +0 -0
- {Cython-3.0.10 → cython-3.0.12}/LICENSE.txt +0 -0
- {Cython-3.0.10 → cython-3.0.12}/MANIFEST.in +0 -0
- {Cython-3.0.10 → cython-3.0.12}/Makefile +0 -0
- {Cython-3.0.10 → cython-3.0.12}/README.rst +0 -0
- {Cython-3.0.10 → cython-3.0.12}/ToDo.txt +0 -0
- {Cython-3.0.10 → cython-3.0.12}/Tools/BUILD.bazel +0 -0
- {Cython-3.0.10 → cython-3.0.12}/Tools/cevaltrace.py +0 -0
- {Cython-3.0.10 → cython-3.0.12}/Tools/ci-run.sh +0 -0
- {Cython-3.0.10 → cython-3.0.12}/Tools/cystdlib.py +0 -0
- {Cython-3.0.10 → cython-3.0.12}/Tools/cython-epydoc.py +0 -0
- {Cython-3.0.10 → cython-3.0.12}/Tools/cython-numpy-mode-kate.xml +0 -0
- {Cython-3.0.10 → cython-3.0.12}/Tools/cython.st +0 -0
- {Cython-3.0.10 → cython-3.0.12}/Tools/dump_github_issues.py +0 -0
- {Cython-3.0.10 → cython-3.0.12}/Tools/gen_tests_for_posix_pxds.py +0 -0
- {Cython-3.0.10 → cython-3.0.12}/Tools/jedityper.py +0 -0
- {Cython-3.0.10 → cython-3.0.12}/Tools/kate.diff +0 -0
- {Cython-3.0.10 → cython-3.0.12}/Tools/make_dataclass_tests.py +0 -0
- {Cython-3.0.10 → cython-3.0.12}/Tools/rules.bzl +0 -0
- {Cython-3.0.10 → cython-3.0.12}/Tools/site_scons/site_tools/cython.py +0 -0
- {Cython-3.0.10 → cython-3.0.12}/Tools/site_scons/site_tools/pyext.py +0 -0
- {Cython-3.0.10 → cython-3.0.12}/USAGE.txt +0 -0
- {Cython-3.0.10 → cython-3.0.12}/bin/cygdb +0 -0
- {Cython-3.0.10 → cython-3.0.12}/bin/cython +0 -0
- {Cython-3.0.10 → cython-3.0.12}/bin/cython-generate-lexicon.py +0 -0
- {Cython-3.0.10 → cython-3.0.12}/bin/cython.bat +0 -0
- {Cython-3.0.10 → cython-3.0.12}/bin/cython_freeze +0 -0
- {Cython-3.0.10 → cython-3.0.12}/bin/cythonize +0 -0
- {Cython-3.0.10 → cython-3.0.12}/bin/cythonrun +0 -0
- {Cython-3.0.10 → cython-3.0.12}/bin/move-declarators.sed +0 -0
- {Cython-3.0.10 → cython-3.0.12}/bin/pcython +0 -0
- {Cython-3.0.10 → cython-3.0.12}/cygdb.py +0 -0
- {Cython-3.0.10 → cython-3.0.12}/cython.py +0 -0
- {Cython-3.0.10 → cython-3.0.12}/cythonize.py +0 -0
- {Cython-3.0.10 → cython-3.0.12}/doc-requirements.txt +0 -0
- {Cython-3.0.10 → cython-3.0.12}/docs/.hgignore +0 -0
- {Cython-3.0.10 → cython-3.0.12}/docs/CONTRIBUTING.rst +0 -0
- {Cython-3.0.10 → cython-3.0.12}/docs/Makefile +0 -0
- {Cython-3.0.10 → cython-3.0.12}/docs/README.md +0 -0
- {Cython-3.0.10 → cython-3.0.12}/docs/TODO +0 -0
- {Cython-3.0.10 → cython-3.0.12}/docs/_static/css/tabs.css +0 -0
- {Cython-3.0.10 → cython-3.0.12}/docs/_static/cython-logo-C.svg +0 -0
- {Cython-3.0.10 → cython-3.0.12}/docs/_static/cython-logo-light.png +0 -0
- {Cython-3.0.10 → cython-3.0.12}/docs/_static/cython-logo.svg +0 -0
- {Cython-3.0.10 → cython-3.0.12}/docs/_static/cythonlogo.png +0 -0
- {Cython-3.0.10 → cython-3.0.12}/docs/_static/favicon.ico +0 -0
- {Cython-3.0.10 → cython-3.0.12}/docs/_templates/layout.html +0 -0
- {Cython-3.0.10 → cython-3.0.12}/docs/examples/Cython Magics.ipynb +0 -0
- {Cython-3.0.10 → cython-3.0.12}/docs/examples/README.rst +0 -0
- {Cython-3.0.10 → cython-3.0.12}/docs/examples/not_in_docs/great_circle/c1.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/docs/examples/not_in_docs/great_circle/c2.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/docs/examples/not_in_docs/great_circle/p1.py +0 -0
- {Cython-3.0.10 → cython-3.0.12}/docs/examples/quickstart/build/hello.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/docs/examples/quickstart/build/setup.py +0 -0
- {Cython-3.0.10 → cython-3.0.12}/docs/examples/quickstart/cythonize/cdef_keyword.py +0 -0
- {Cython-3.0.10 → cython-3.0.12}/docs/examples/quickstart/cythonize/cdef_keyword.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/docs/examples/quickstart/cythonize/integrate.py +0 -0
- {Cython-3.0.10 → cython-3.0.12}/docs/examples/quickstart/cythonize/integrate_cy.py +0 -0
- {Cython-3.0.10 → cython-3.0.12}/docs/examples/quickstart/cythonize/integrate_cy.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/docs/examples/tutorial/array/clone.py +0 -0
- {Cython-3.0.10 → cython-3.0.12}/docs/examples/tutorial/array/clone.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/docs/examples/tutorial/array/overhead.py +0 -0
- {Cython-3.0.10 → cython-3.0.12}/docs/examples/tutorial/array/overhead.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/docs/examples/tutorial/array/resize.py +0 -0
- {Cython-3.0.10 → cython-3.0.12}/docs/examples/tutorial/array/resize.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/docs/examples/tutorial/array/safe_usage.py +0 -0
- {Cython-3.0.10 → cython-3.0.12}/docs/examples/tutorial/array/safe_usage.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/docs/examples/tutorial/array/unsafe_usage.py +0 -0
- {Cython-3.0.10 → cython-3.0.12}/docs/examples/tutorial/array/unsafe_usage.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/docs/examples/tutorial/cdef_classes/integrate.py +0 -0
- {Cython-3.0.10 → cython-3.0.12}/docs/examples/tutorial/cdef_classes/integrate.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/docs/examples/tutorial/cdef_classes/math_function.py +0 -0
- {Cython-3.0.10 → cython-3.0.12}/docs/examples/tutorial/cdef_classes/math_function_2.py +0 -0
- {Cython-3.0.10 → cython-3.0.12}/docs/examples/tutorial/cdef_classes/math_function_2.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/docs/examples/tutorial/cdef_classes/nonecheck.py +0 -0
- {Cython-3.0.10 → cython-3.0.12}/docs/examples/tutorial/cdef_classes/nonecheck.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/docs/examples/tutorial/cdef_classes/sin_of_square.pxd +0 -0
- {Cython-3.0.10 → cython-3.0.12}/docs/examples/tutorial/cdef_classes/sin_of_square.py +0 -0
- {Cython-3.0.10 → cython-3.0.12}/docs/examples/tutorial/cdef_classes/sin_of_square.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/docs/examples/tutorial/cdef_classes/wave_function.py +0 -0
- {Cython-3.0.10 → cython-3.0.12}/docs/examples/tutorial/cdef_classes/wave_function.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/docs/examples/tutorial/clibraries/c-algorithms/src/queue.h +0 -0
- {Cython-3.0.10 → cython-3.0.12}/docs/examples/tutorial/clibraries/cqueue.pxd +0 -0
- {Cython-3.0.10 → cython-3.0.12}/docs/examples/tutorial/clibraries/queue.py +0 -0
- {Cython-3.0.10 → cython-3.0.12}/docs/examples/tutorial/clibraries/queue.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/docs/examples/tutorial/clibraries/queue2.py +0 -0
- {Cython-3.0.10 → cython-3.0.12}/docs/examples/tutorial/clibraries/queue2.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/docs/examples/tutorial/clibraries/queue3.py +0 -0
- {Cython-3.0.10 → cython-3.0.12}/docs/examples/tutorial/clibraries/queue3.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/docs/examples/tutorial/clibraries/test_queue.py +0 -0
- {Cython-3.0.10 → cython-3.0.12}/docs/examples/tutorial/cython_tutorial/fib.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/docs/examples/tutorial/cython_tutorial/primes.py +0 -0
- {Cython-3.0.10 → cython-3.0.12}/docs/examples/tutorial/cython_tutorial/primes.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/docs/examples/tutorial/cython_tutorial/primes_cpp.py +0 -0
- {Cython-3.0.10 → cython-3.0.12}/docs/examples/tutorial/cython_tutorial/primes_cpp.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/docs/examples/tutorial/cython_tutorial/primes_python.py +0 -0
- {Cython-3.0.10 → cython-3.0.12}/docs/examples/tutorial/embedding/embedded.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/docs/examples/tutorial/embedding/embedded_main.c +0 -0
- {Cython-3.0.10 → cython-3.0.12}/docs/examples/tutorial/external/atoi.py +0 -0
- {Cython-3.0.10 → cython-3.0.12}/docs/examples/tutorial/external/atoi.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/docs/examples/tutorial/external/cpdef_sin.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/docs/examples/tutorial/external/keyword_args.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/docs/examples/tutorial/external/keyword_args_call.py +0 -0
- {Cython-3.0.10 → cython-3.0.12}/docs/examples/tutorial/external/keyword_args_call.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/docs/examples/tutorial/external/libc_sin.py +0 -0
- {Cython-3.0.10 → cython-3.0.12}/docs/examples/tutorial/external/libc_sin.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/docs/examples/tutorial/external/py_version_hex.py +0 -0
- {Cython-3.0.10 → cython-3.0.12}/docs/examples/tutorial/external/py_version_hex.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/docs/examples/tutorial/external/setup.py +0 -0
- {Cython-3.0.10 → cython-3.0.12}/docs/examples/tutorial/external/strstr.pxd +0 -0
- {Cython-3.0.10 → cython-3.0.12}/docs/examples/tutorial/memory_allocation/malloc.py +0 -0
- {Cython-3.0.10 → cython-3.0.12}/docs/examples/tutorial/memory_allocation/malloc.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/docs/examples/tutorial/memory_allocation/some_memory.py +0 -0
- {Cython-3.0.10 → cython-3.0.12}/docs/examples/tutorial/memory_allocation/some_memory.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/docs/examples/tutorial/numpy/convolve2.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/docs/examples/tutorial/numpy/convolve_py.py +0 -0
- {Cython-3.0.10 → cython-3.0.12}/docs/examples/tutorial/parallelization/manual_work.py +0 -0
- {Cython-3.0.10 → cython-3.0.12}/docs/examples/tutorial/parallelization/manual_work.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/docs/examples/tutorial/parallelization/median.py +0 -0
- {Cython-3.0.10 → cython-3.0.12}/docs/examples/tutorial/parallelization/median.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/docs/examples/tutorial/parallelization/norm.py +0 -0
- {Cython-3.0.10 → cython-3.0.12}/docs/examples/tutorial/parallelization/norm.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/docs/examples/tutorial/parallelization/normalize.py +0 -0
- {Cython-3.0.10 → cython-3.0.12}/docs/examples/tutorial/parallelization/normalize.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/docs/examples/tutorial/parallelization/parallel_sin.py +0 -0
- {Cython-3.0.10 → cython-3.0.12}/docs/examples/tutorial/parallelization/parallel_sin.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/docs/examples/tutorial/parallelization/setup.py +0 -0
- {Cython-3.0.10 → cython-3.0.12}/docs/examples/tutorial/profiling_tutorial/calc_pi.py +0 -0
- {Cython-3.0.10 → cython-3.0.12}/docs/examples/tutorial/profiling_tutorial/calc_pi_2.py +0 -0
- {Cython-3.0.10 → cython-3.0.12}/docs/examples/tutorial/profiling_tutorial/calc_pi_2.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/docs/examples/tutorial/profiling_tutorial/calc_pi_3.py +0 -0
- {Cython-3.0.10 → cython-3.0.12}/docs/examples/tutorial/profiling_tutorial/calc_pi_3.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/docs/examples/tutorial/profiling_tutorial/calc_pi_4.py +0 -0
- {Cython-3.0.10 → cython-3.0.12}/docs/examples/tutorial/profiling_tutorial/calc_pi_4.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/docs/examples/tutorial/profiling_tutorial/often_called.py +0 -0
- {Cython-3.0.10 → cython-3.0.12}/docs/examples/tutorial/profiling_tutorial/often_called.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/docs/examples/tutorial/profiling_tutorial/profile.py +0 -0
- {Cython-3.0.10 → cython-3.0.12}/docs/examples/tutorial/profiling_tutorial/profile_2.py +0 -0
- {Cython-3.0.10 → cython-3.0.12}/docs/examples/tutorial/pure/A.pxd +0 -0
- {Cython-3.0.10 → cython-3.0.12}/docs/examples/tutorial/pure/A.py +0 -0
- {Cython-3.0.10 → cython-3.0.12}/docs/examples/tutorial/pure/A_equivalent.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/docs/examples/tutorial/pure/annotations.py +0 -0
- {Cython-3.0.10 → cython-3.0.12}/docs/examples/tutorial/pure/c_arrays.py +0 -0
- {Cython-3.0.10 → cython-3.0.12}/docs/examples/tutorial/pure/cclass.py +0 -0
- {Cython-3.0.10 → cython-3.0.12}/docs/examples/tutorial/pure/compiled_switch.py +0 -0
- {Cython-3.0.10 → cython-3.0.12}/docs/examples/tutorial/pure/cython_declare.py +0 -0
- {Cython-3.0.10 → cython-3.0.12}/docs/examples/tutorial/pure/cython_declare2.py +0 -0
- {Cython-3.0.10 → cython-3.0.12}/docs/examples/tutorial/pure/disabled_annotations.py +0 -0
- {Cython-3.0.10 → cython-3.0.12}/docs/examples/tutorial/pure/dostuff.pxd +0 -0
- {Cython-3.0.10 → cython-3.0.12}/docs/examples/tutorial/pure/dostuff.py +0 -0
- {Cython-3.0.10 → cython-3.0.12}/docs/examples/tutorial/pure/exceptval.py +0 -0
- {Cython-3.0.10 → cython-3.0.12}/docs/examples/tutorial/pure/locals.py +0 -0
- {Cython-3.0.10 → cython-3.0.12}/docs/examples/tutorial/pure/mymodule.pxd +0 -0
- {Cython-3.0.10 → cython-3.0.12}/docs/examples/tutorial/pure/mymodule.py +0 -0
- {Cython-3.0.10 → cython-3.0.12}/docs/examples/tutorial/pure/pep_526.py +0 -0
- {Cython-3.0.10 → cython-3.0.12}/docs/examples/tutorial/pure/py_cimport.py +0 -0
- {Cython-3.0.10 → cython-3.0.12}/docs/examples/tutorial/pxd_files/cmath.pxd +0 -0
- {Cython-3.0.10 → cython-3.0.12}/docs/examples/tutorial/pxd_files/inline.pxd +0 -0
- {Cython-3.0.10 → cython-3.0.12}/docs/examples/tutorial/pxd_files/integrate.py +0 -0
- {Cython-3.0.10 → cython-3.0.12}/docs/examples/tutorial/pxd_files/integrate.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/docs/examples/tutorial/string/api_func.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/docs/examples/tutorial/string/arg_memview.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/docs/examples/tutorial/string/auto_conversion_1.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/docs/examples/tutorial/string/auto_conversion_2.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/docs/examples/tutorial/string/auto_conversion_3.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/docs/examples/tutorial/string/c_func.pxd +0 -0
- {Cython-3.0.10 → cython-3.0.12}/docs/examples/tutorial/string/c_func.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/docs/examples/tutorial/string/const.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/docs/examples/tutorial/string/cpp_string.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/docs/examples/tutorial/string/decode.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/docs/examples/tutorial/string/decode_cpp_string.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/docs/examples/tutorial/string/for_bytes.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/docs/examples/tutorial/string/for_char.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/docs/examples/tutorial/string/for_unicode.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/docs/examples/tutorial/string/if_char_in.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/docs/examples/tutorial/string/naive_decode.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/docs/examples/tutorial/string/return_memview.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/docs/examples/tutorial/string/slicing_c_string.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/docs/examples/tutorial/string/someheader.h +0 -0
- {Cython-3.0.10 → cython-3.0.12}/docs/examples/tutorial/string/to_char.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/docs/examples/tutorial/string/to_unicode.pxd +0 -0
- {Cython-3.0.10 → cython-3.0.12}/docs/examples/tutorial/string/to_unicode.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/docs/examples/tutorial/string/try_finally.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/docs/examples/tutorial/string/utf_eight.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/docs/examples/userguide/buffer/matrix.py +0 -0
- {Cython-3.0.10 → cython-3.0.12}/docs/examples/userguide/buffer/matrix.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/docs/examples/userguide/buffer/matrix_with_buffer.py +0 -0
- {Cython-3.0.10 → cython-3.0.12}/docs/examples/userguide/buffer/matrix_with_buffer.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/docs/examples/userguide/buffer/view_count.py +0 -0
- {Cython-3.0.10 → cython-3.0.12}/docs/examples/userguide/buffer/view_count.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/docs/examples/userguide/early_binding_for_speed/rectangle.py +0 -0
- {Cython-3.0.10 → cython-3.0.12}/docs/examples/userguide/early_binding_for_speed/rectangle.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/docs/examples/userguide/early_binding_for_speed/rectangle_cdef.py +0 -0
- {Cython-3.0.10 → cython-3.0.12}/docs/examples/userguide/early_binding_for_speed/rectangle_cdef.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/docs/examples/userguide/early_binding_for_speed/rectangle_cpdef.py +0 -0
- {Cython-3.0.10 → cython-3.0.12}/docs/examples/userguide/early_binding_for_speed/rectangle_cpdef.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/docs/examples/userguide/extension_types/c_property.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/docs/examples/userguide/extension_types/cheesy.py +0 -0
- {Cython-3.0.10 → cython-3.0.12}/docs/examples/userguide/extension_types/cheesy.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/docs/examples/userguide/extension_types/dataclass.py +0 -0
- {Cython-3.0.10 → cython-3.0.12}/docs/examples/userguide/extension_types/dataclass.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/docs/examples/userguide/extension_types/dict_animal.py +0 -0
- {Cython-3.0.10 → cython-3.0.12}/docs/examples/userguide/extension_types/dict_animal.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/docs/examples/userguide/extension_types/extendable_animal.py +0 -0
- {Cython-3.0.10 → cython-3.0.12}/docs/examples/userguide/extension_types/extendable_animal.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/docs/examples/userguide/extension_types/my_module.pxd +0 -0
- {Cython-3.0.10 → cython-3.0.12}/docs/examples/userguide/extension_types/my_module.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/docs/examples/userguide/extension_types/owned_pointer.py +0 -0
- {Cython-3.0.10 → cython-3.0.12}/docs/examples/userguide/extension_types/owned_pointer.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/docs/examples/userguide/extension_types/penguin.py +0 -0
- {Cython-3.0.10 → cython-3.0.12}/docs/examples/userguide/extension_types/penguin.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/docs/examples/userguide/extension_types/penguin2.py +0 -0
- {Cython-3.0.10 → cython-3.0.12}/docs/examples/userguide/extension_types/penguin2.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/docs/examples/userguide/extension_types/pets.py +0 -0
- {Cython-3.0.10 → cython-3.0.12}/docs/examples/userguide/extension_types/pets.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/docs/examples/userguide/extension_types/python_access.py +0 -0
- {Cython-3.0.10 → cython-3.0.12}/docs/examples/userguide/extension_types/python_access.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/docs/examples/userguide/extension_types/shrubbery.py +0 -0
- {Cython-3.0.10 → cython-3.0.12}/docs/examples/userguide/extension_types/shrubbery.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/docs/examples/userguide/extension_types/shrubbery_2.py +0 -0
- {Cython-3.0.10 → cython-3.0.12}/docs/examples/userguide/extension_types/shrubbery_2.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/docs/examples/userguide/extension_types/widen_shrubbery.py +0 -0
- {Cython-3.0.10 → cython-3.0.12}/docs/examples/userguide/extension_types/widen_shrubbery.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/docs/examples/userguide/extension_types/wrapper_class.py +0 -0
- {Cython-3.0.10 → cython-3.0.12}/docs/examples/userguide/extension_types/wrapper_class.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/docs/examples/userguide/external_C_code/delorean.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/docs/examples/userguide/external_C_code/marty.c +0 -0
- {Cython-3.0.10 → cython-3.0.12}/docs/examples/userguide/external_C_code/platform_adaptation.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/docs/examples/userguide/external_C_code/struct_field_adaptation.h +0 -0
- {Cython-3.0.10 → cython-3.0.12}/docs/examples/userguide/external_C_code/struct_field_adaptation.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/docs/examples/userguide/external_C_code/verbatim_c_code.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/docs/examples/userguide/fusedtypes/char_or_float.py +0 -0
- {Cython-3.0.10 → cython-3.0.12}/docs/examples/userguide/fusedtypes/char_or_float.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/docs/examples/userguide/fusedtypes/conditional_gil.py +0 -0
- {Cython-3.0.10 → cython-3.0.12}/docs/examples/userguide/fusedtypes/conditional_gil.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/docs/examples/userguide/fusedtypes/indexing.py +0 -0
- {Cython-3.0.10 → cython-3.0.12}/docs/examples/userguide/fusedtypes/indexing.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/docs/examples/userguide/fusedtypes/pointer.py +0 -0
- {Cython-3.0.10 → cython-3.0.12}/docs/examples/userguide/fusedtypes/pointer.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/docs/examples/userguide/fusedtypes/type_checking.py +0 -0
- {Cython-3.0.10 → cython-3.0.12}/docs/examples/userguide/fusedtypes/type_checking.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/docs/examples/userguide/language_basics/casting_python.pxd +0 -0
- {Cython-3.0.10 → cython-3.0.12}/docs/examples/userguide/language_basics/casting_python.py +0 -0
- {Cython-3.0.10 → cython-3.0.12}/docs/examples/userguide/language_basics/casting_python.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/docs/examples/userguide/language_basics/cdef_block.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/docs/examples/userguide/language_basics/compile_time.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/docs/examples/userguide/language_basics/enum.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/docs/examples/userguide/language_basics/function_pointer.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/docs/examples/userguide/language_basics/function_pointer_struct.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/docs/examples/userguide/language_basics/kwargs_1.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/docs/examples/userguide/language_basics/kwargs_2.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/docs/examples/userguide/language_basics/open_file.py +0 -0
- {Cython-3.0.10 → cython-3.0.12}/docs/examples/userguide/language_basics/open_file.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/docs/examples/userguide/language_basics/optional_subclassing.pxd +0 -0
- {Cython-3.0.10 → cython-3.0.12}/docs/examples/userguide/language_basics/optional_subclassing.py +0 -0
- {Cython-3.0.10 → cython-3.0.12}/docs/examples/userguide/language_basics/optional_subclassing.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/docs/examples/userguide/language_basics/override.py +0 -0
- {Cython-3.0.10 → cython-3.0.12}/docs/examples/userguide/language_basics/override.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/docs/examples/userguide/language_basics/parameter_refcount.py +0 -0
- {Cython-3.0.10 → cython-3.0.12}/docs/examples/userguide/language_basics/parameter_refcount.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/docs/examples/userguide/language_basics/struct.py +0 -0
- {Cython-3.0.10 → cython-3.0.12}/docs/examples/userguide/language_basics/struct.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/docs/examples/userguide/language_basics/union.py +0 -0
- {Cython-3.0.10 → cython-3.0.12}/docs/examples/userguide/language_basics/union.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/docs/examples/userguide/memoryviews/C_func_file.c +0 -0
- {Cython-3.0.10 → cython-3.0.12}/docs/examples/userguide/memoryviews/C_func_file.h +0 -0
- {Cython-3.0.10 → cython-3.0.12}/docs/examples/userguide/memoryviews/add_one.py +0 -0
- {Cython-3.0.10 → cython-3.0.12}/docs/examples/userguide/memoryviews/add_one.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/docs/examples/userguide/memoryviews/copy.py +0 -0
- {Cython-3.0.10 → cython-3.0.12}/docs/examples/userguide/memoryviews/copy.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/docs/examples/userguide/memoryviews/cpython_array.py +0 -0
- {Cython-3.0.10 → cython-3.0.12}/docs/examples/userguide/memoryviews/cpython_array.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/docs/examples/userguide/memoryviews/custom_dtype.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/docs/examples/userguide/memoryviews/cython_array.py +0 -0
- {Cython-3.0.10 → cython-3.0.12}/docs/examples/userguide/memoryviews/cython_array.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/docs/examples/userguide/memoryviews/memory_layout.py +0 -0
- {Cython-3.0.10 → cython-3.0.12}/docs/examples/userguide/memoryviews/memory_layout.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/docs/examples/userguide/memoryviews/memory_layout_2.py +0 -0
- {Cython-3.0.10 → cython-3.0.12}/docs/examples/userguide/memoryviews/memory_layout_2.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/docs/examples/userguide/memoryviews/memview_to_c.pxd +0 -0
- {Cython-3.0.10 → cython-3.0.12}/docs/examples/userguide/memoryviews/memview_to_c.py +0 -0
- {Cython-3.0.10 → cython-3.0.12}/docs/examples/userguide/memoryviews/memview_to_c.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/docs/examples/userguide/memoryviews/not_none.py +0 -0
- {Cython-3.0.10 → cython-3.0.12}/docs/examples/userguide/memoryviews/not_none.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/docs/examples/userguide/memoryviews/np_flag_const.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/docs/examples/userguide/memoryviews/old_sum3d.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/docs/examples/userguide/memoryviews/quickstart.py +0 -0
- {Cython-3.0.10 → cython-3.0.12}/docs/examples/userguide/memoryviews/quickstart.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/docs/examples/userguide/memoryviews/slicing.py +0 -0
- {Cython-3.0.10 → cython-3.0.12}/docs/examples/userguide/memoryviews/slicing.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/docs/examples/userguide/memoryviews/transpose.py +0 -0
- {Cython-3.0.10 → cython-3.0.12}/docs/examples/userguide/memoryviews/transpose.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/docs/examples/userguide/memoryviews/view_string.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/docs/examples/userguide/numpy_tutorial/compute_fused_types.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/docs/examples/userguide/numpy_tutorial/compute_infer_types.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/docs/examples/userguide/numpy_tutorial/compute_memview.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/docs/examples/userguide/numpy_tutorial/compute_prange.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/docs/examples/userguide/numpy_tutorial/compute_py.py +0 -0
- {Cython-3.0.10 → cython-3.0.12}/docs/examples/userguide/numpy_tutorial/compute_typed.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/docs/examples/userguide/numpy_tutorial/numpy_and_cython.ipynb +0 -0
- {Cython-3.0.10 → cython-3.0.12}/docs/examples/userguide/numpy_ufuncs/ufunc.py +0 -0
- {Cython-3.0.10 → cython-3.0.12}/docs/examples/userguide/numpy_ufuncs/ufunc.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/docs/examples/userguide/numpy_ufuncs/ufunc_ctuple.py +0 -0
- {Cython-3.0.10 → cython-3.0.12}/docs/examples/userguide/numpy_ufuncs/ufunc_ctuple.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/docs/examples/userguide/numpy_ufuncs/ufunc_fused.py +0 -0
- {Cython-3.0.10 → cython-3.0.12}/docs/examples/userguide/numpy_ufuncs/ufunc_fused.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/docs/examples/userguide/parallelism/breaking_loop.py +0 -0
- {Cython-3.0.10 → cython-3.0.12}/docs/examples/userguide/parallelism/breaking_loop.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/docs/examples/userguide/parallelism/cimport_openmp.py +0 -0
- {Cython-3.0.10 → cython-3.0.12}/docs/examples/userguide/parallelism/cimport_openmp.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/docs/examples/userguide/parallelism/memoryview_sum.py +0 -0
- {Cython-3.0.10 → cython-3.0.12}/docs/examples/userguide/parallelism/memoryview_sum.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/docs/examples/userguide/parallelism/parallel.py +0 -0
- {Cython-3.0.10 → cython-3.0.12}/docs/examples/userguide/parallelism/parallel.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/docs/examples/userguide/parallelism/setup_py.py +0 -0
- {Cython-3.0.10 → cython-3.0.12}/docs/examples/userguide/parallelism/setup_pyx.py +0 -0
- {Cython-3.0.10 → cython-3.0.12}/docs/examples/userguide/parallelism/simple_sum.py +0 -0
- {Cython-3.0.10 → cython-3.0.12}/docs/examples/userguide/parallelism/simple_sum.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/docs/examples/userguide/sharing_declarations/c_lunch.pxd +0 -0
- {Cython-3.0.10 → cython-3.0.12}/docs/examples/userguide/sharing_declarations/dishes.pxd +0 -0
- {Cython-3.0.10 → cython-3.0.12}/docs/examples/userguide/sharing_declarations/landscaping.py +0 -0
- {Cython-3.0.10 → cython-3.0.12}/docs/examples/userguide/sharing_declarations/landscaping.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/docs/examples/userguide/sharing_declarations/lunch.h +0 -0
- {Cython-3.0.10 → cython-3.0.12}/docs/examples/userguide/sharing_declarations/lunch.py +0 -0
- {Cython-3.0.10 → cython-3.0.12}/docs/examples/userguide/sharing_declarations/lunch.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/docs/examples/userguide/sharing_declarations/restaurant.py +0 -0
- {Cython-3.0.10 → cython-3.0.12}/docs/examples/userguide/sharing_declarations/restaurant.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/docs/examples/userguide/sharing_declarations/setup_py.py +0 -0
- {Cython-3.0.10 → cython-3.0.12}/docs/examples/userguide/sharing_declarations/setup_pyx.py +0 -0
- {Cython-3.0.10 → cython-3.0.12}/docs/examples/userguide/sharing_declarations/shrubbing.pxd +0 -0
- {Cython-3.0.10 → cython-3.0.12}/docs/examples/userguide/sharing_declarations/shrubbing.py +0 -0
- {Cython-3.0.10 → cython-3.0.12}/docs/examples/userguide/sharing_declarations/shrubbing.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/docs/examples/userguide/sharing_declarations/spammery.py +0 -0
- {Cython-3.0.10 → cython-3.0.12}/docs/examples/userguide/sharing_declarations/spammery.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/docs/examples/userguide/sharing_declarations/volume.pxd +0 -0
- {Cython-3.0.10 → cython-3.0.12}/docs/examples/userguide/sharing_declarations/volume.py +0 -0
- {Cython-3.0.10 → cython-3.0.12}/docs/examples/userguide/sharing_declarations/volume.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/docs/examples/userguide/special_methods/total_ordering.py +0 -0
- {Cython-3.0.10 → cython-3.0.12}/docs/examples/userguide/special_methods/total_ordering.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/docs/examples/userguide/wrapping_CPlusPlus/Rectangle.cpp +0 -0
- {Cython-3.0.10 → cython-3.0.12}/docs/examples/userguide/wrapping_CPlusPlus/Rectangle.h +0 -0
- {Cython-3.0.10 → cython-3.0.12}/docs/examples/userguide/wrapping_CPlusPlus/Rectangle.pxd +0 -0
- {Cython-3.0.10 → cython-3.0.12}/docs/examples/userguide/wrapping_CPlusPlus/cython_usage.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/docs/examples/userguide/wrapping_CPlusPlus/function_templates.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/docs/examples/userguide/wrapping_CPlusPlus/iterate.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/docs/examples/userguide/wrapping_CPlusPlus/nested_class.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/docs/examples/userguide/wrapping_CPlusPlus/python_to_cpp.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/docs/examples/userguide/wrapping_CPlusPlus/rect.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/docs/examples/userguide/wrapping_CPlusPlus/rect_ptr.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/docs/examples/userguide/wrapping_CPlusPlus/rect_with_attributes.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/docs/examples/userguide/wrapping_CPlusPlus/setup.py +0 -0
- {Cython-3.0.10 → cython-3.0.12}/docs/examples/userguide/wrapping_CPlusPlus/templates.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/docs/examples/userguide/wrapping_CPlusPlus/vector_demo.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/docs/examples/userguide/wrapping_CPlusPlus/wrapper_vector.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/docs/index.rst +0 -0
- {Cython-3.0.10 → cython-3.0.12}/docs/make.bat +0 -0
- {Cython-3.0.10 → cython-3.0.12}/docs/src/changes.rst +0 -0
- {Cython-3.0.10 → cython-3.0.12}/docs/src/cimport-warning +0 -0
- {Cython-3.0.10 → cython-3.0.12}/docs/src/donating.rst +0 -0
- {Cython-3.0.10 → cython-3.0.12}/docs/src/quickstart/build.rst +0 -0
- {Cython-3.0.10 → cython-3.0.12}/docs/src/quickstart/cython_in_jupyter.ipynb +0 -0
- {Cython-3.0.10 → cython-3.0.12}/docs/src/quickstart/cythonize.rst +0 -0
- {Cython-3.0.10 → cython-3.0.12}/docs/src/quickstart/demo.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/docs/src/quickstart/htmlreport_py.png +0 -0
- {Cython-3.0.10 → cython-3.0.12}/docs/src/quickstart/htmlreport_pyx.png +0 -0
- {Cython-3.0.10 → cython-3.0.12}/docs/src/quickstart/index.rst +0 -0
- {Cython-3.0.10 → cython-3.0.12}/docs/src/quickstart/install.rst +0 -0
- {Cython-3.0.10 → cython-3.0.12}/docs/src/quickstart/jupyter.png +0 -0
- {Cython-3.0.10 → cython-3.0.12}/docs/src/quickstart/overview.rst +0 -0
- {Cython-3.0.10 → cython-3.0.12}/docs/src/quickstart/sage.png +0 -0
- {Cython-3.0.10 → cython-3.0.12}/docs/src/reference/compilation.rst +0 -0
- {Cython-3.0.10 → cython-3.0.12}/docs/src/reference/directives.rst +0 -0
- {Cython-3.0.10 → cython-3.0.12}/docs/src/reference/extension_types.rst +0 -0
- {Cython-3.0.10 → cython-3.0.12}/docs/src/reference/index.rst +0 -0
- {Cython-3.0.10 → cython-3.0.12}/docs/src/reference/interfacing_with_other_code.rst +0 -0
- {Cython-3.0.10 → cython-3.0.12}/docs/src/reference/language_basics.rst +0 -0
- {Cython-3.0.10 → cython-3.0.12}/docs/src/reference/limitations.rst +0 -0
- {Cython-3.0.10 → cython-3.0.12}/docs/src/reference/special_mention.rst +0 -0
- {Cython-3.0.10 → cython-3.0.12}/docs/src/reference/special_methods_table.rst +0 -0
- {Cython-3.0.10 → cython-3.0.12}/docs/src/tutorial/annotation_typing_table.csv +0 -0
- {Cython-3.0.10 → cython-3.0.12}/docs/src/tutorial/appendix.rst +0 -0
- {Cython-3.0.10 → cython-3.0.12}/docs/src/tutorial/array.rst +0 -0
- {Cython-3.0.10 → cython-3.0.12}/docs/src/tutorial/caveats.rst +0 -0
- {Cython-3.0.10 → cython-3.0.12}/docs/src/tutorial/cdef_classes.rst +0 -0
- {Cython-3.0.10 → cython-3.0.12}/docs/src/tutorial/clibraries.rst +0 -0
- {Cython-3.0.10 → cython-3.0.12}/docs/src/tutorial/cython_tutorial.rst +0 -0
- {Cython-3.0.10 → cython-3.0.12}/docs/src/tutorial/data.py +0 -0
- {Cython-3.0.10 → cython-3.0.12}/docs/src/tutorial/embedding.rst +0 -0
- {Cython-3.0.10 → cython-3.0.12}/docs/src/tutorial/external.rst +0 -0
- {Cython-3.0.10 → cython-3.0.12}/docs/src/tutorial/htmlreport_py.png +0 -0
- {Cython-3.0.10 → cython-3.0.12}/docs/src/tutorial/htmlreport_pyx.png +0 -0
- {Cython-3.0.10 → cython-3.0.12}/docs/src/tutorial/index.rst +0 -0
- {Cython-3.0.10 → cython-3.0.12}/docs/src/tutorial/memory_allocation.rst +0 -0
- {Cython-3.0.10 → cython-3.0.12}/docs/src/tutorial/numpy.rst +0 -0
- {Cython-3.0.10 → cython-3.0.12}/docs/src/tutorial/parallelization.rst +0 -0
- {Cython-3.0.10 → cython-3.0.12}/docs/src/tutorial/profiling_tutorial.rst +0 -0
- {Cython-3.0.10 → cython-3.0.12}/docs/src/tutorial/pure.rst +0 -0
- {Cython-3.0.10 → cython-3.0.12}/docs/src/tutorial/pxd_files.rst +0 -0
- {Cython-3.0.10 → cython-3.0.12}/docs/src/tutorial/python_division.png +0 -0
- {Cython-3.0.10 → cython-3.0.12}/docs/src/tutorial/readings.rst +0 -0
- {Cython-3.0.10 → cython-3.0.12}/docs/src/tutorial/related_work.rst +0 -0
- {Cython-3.0.10 → cython-3.0.12}/docs/src/tutorial/strings.rst +0 -0
- {Cython-3.0.10 → cython-3.0.12}/docs/src/two-syntax-variants-used +0 -0
- {Cython-3.0.10 → cython-3.0.12}/docs/src/userguide/buffer.rst +0 -0
- {Cython-3.0.10 → cython-3.0.12}/docs/src/userguide/compute_typed_html.jpg +0 -0
- {Cython-3.0.10 → cython-3.0.12}/docs/src/userguide/cpow_table.csv +0 -0
- {Cython-3.0.10 → cython-3.0.12}/docs/src/userguide/debugging.rst +0 -0
- {Cython-3.0.10 → cython-3.0.12}/docs/src/userguide/early_binding_for_speed.rst +0 -0
- {Cython-3.0.10 → cython-3.0.12}/docs/src/userguide/extension_types.rst +0 -0
- {Cython-3.0.10 → cython-3.0.12}/docs/src/userguide/external_C_code.rst +0 -0
- {Cython-3.0.10 → cython-3.0.12}/docs/src/userguide/faq.rst +0 -0
- {Cython-3.0.10 → cython-3.0.12}/docs/src/userguide/fusedtypes.rst +0 -0
- {Cython-3.0.10 → cython-3.0.12}/docs/src/userguide/glossary.rst +0 -0
- {Cython-3.0.10 → cython-3.0.12}/docs/src/userguide/index.rst +0 -0
- {Cython-3.0.10 → cython-3.0.12}/docs/src/userguide/language_basics.rst +0 -0
- {Cython-3.0.10 → cython-3.0.12}/docs/src/userguide/limitations.rst +0 -0
- {Cython-3.0.10 → cython-3.0.12}/docs/src/userguide/memoryviews.rst +0 -0
- {Cython-3.0.10 → cython-3.0.12}/docs/src/userguide/migrating_to_cy30.rst +0 -0
- {Cython-3.0.10 → cython-3.0.12}/docs/src/userguide/nogil.rst +0 -0
- {Cython-3.0.10 → cython-3.0.12}/docs/src/userguide/numpy_pythran.rst +0 -0
- {Cython-3.0.10 → cython-3.0.12}/docs/src/userguide/numpy_tutorial.rst +0 -0
- {Cython-3.0.10 → cython-3.0.12}/docs/src/userguide/numpy_ufuncs.rst +0 -0
- {Cython-3.0.10 → cython-3.0.12}/docs/src/userguide/parallelism.rst +0 -0
- {Cython-3.0.10 → cython-3.0.12}/docs/src/userguide/pypy.rst +0 -0
- {Cython-3.0.10 → cython-3.0.12}/docs/src/userguide/pyrex_differences.rst +0 -0
- {Cython-3.0.10 → cython-3.0.12}/docs/src/userguide/sharing_declarations.rst +0 -0
- {Cython-3.0.10 → cython-3.0.12}/docs/src/userguide/source_files_and_compilation.rst +0 -0
- {Cython-3.0.10 → cython-3.0.12}/docs/src/userguide/special_methods.rst +0 -0
- {Cython-3.0.10 → cython-3.0.12}/docs/src/userguide/troubleshooting.rst +0 -0
- {Cython-3.0.10 → cython-3.0.12}/docs/src/userguide/wrapping_CPlusPlus.rst +0 -0
- {Cython-3.0.10 → cython-3.0.12}/pylintrc +0 -0
- {Cython-3.0.10 → cython-3.0.12}/pyximport/PKG-INFO +0 -0
- {Cython-3.0.10 → cython-3.0.12}/pyximport/__init__.py +0 -0
- {Cython-3.0.10 → cython-3.0.12}/pyximport/_pyximport2.py +0 -0
- {Cython-3.0.10 → cython-3.0.12}/pyximport/pyxbuild.py +0 -0
- {Cython-3.0.10 → cython-3.0.12}/pyximport/pyximport.py +0 -0
- {Cython-3.0.10 → cython-3.0.12}/pyximport/test/test_pyximport.py +0 -0
- {Cython-3.0.10 → cython-3.0.12}/pyximport/test/test_reload.py +0 -0
- {Cython-3.0.10 → cython-3.0.12}/setup.cfg +0 -0
- {Cython-3.0.10 → cython-3.0.12}/setupegg.py +0 -0
- {Cython-3.0.10 → cython-3.0.12}/test-requirements-27.txt +0 -0
- {Cython-3.0.10 → cython-3.0.12}/test-requirements-312.txt +0 -0
- {Cython-3.0.10 → cython-3.0.12}/test-requirements-34.txt +0 -0
- {Cython-3.0.10 → cython-3.0.12}/test-requirements-36.txt +0 -0
- {Cython-3.0.10 → cython-3.0.12}/test-requirements-cpython.txt +0 -0
- {Cython-3.0.10 → cython-3.0.12}/test-requirements-pypy27.txt +0 -0
- {Cython-3.0.10 → cython-3.0.12}/test-requirements.txt +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/broken/b_extimpinherit.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/broken/big_t.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/broken/builtinconst.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/broken/builtindict.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/broken/cascadedass.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/broken/cexportfunc.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/broken/cimport.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/broken/cimportfrom.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/broken/cimportfrompkgdir.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/broken/cimportfunc.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/broken/ctypedefextern.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/broken/externfunc.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/broken/externsue.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/broken/fwddeclcclass.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/broken/getattr.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/broken/getattr3ref.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/broken/i_public.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/broken/includepublic.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/broken/intindex.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/broken/invalid-module-name.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/broken/l_capi.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/broken/l_cfuncexport.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/broken/naanou_1.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/broken/pkg.cimport.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/broken/pkg.cimportfrom.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/broken/plex2.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/broken/r_capi.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/broken/r_cfuncimport.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/broken/r_classdoc.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/broken/r_classmodname.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/broken/r_excval.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/broken/r_extimpinherit.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/broken/r_extinherit.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/broken/r_extmember.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/broken/r_extnumeric2.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/broken/r_extproperty.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/broken/r_extweakref.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/broken/r_getattr3.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/broken/r_import.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/broken/r_inhcmethcall.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/broken/r_kwonlyargs.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/broken/r_newstyleclass.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/broken/r_simpcall.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/broken/r_tbfilename.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/broken/r_traceback.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/broken/r_unpack.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/broken/raise.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/broken/retconvert.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/broken/test_include_options.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/broken/tryexceptelse.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/broken/tslots.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/buffers/bufaccess.h +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/buffers/bufaccess.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/buffers/buffer.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/buffers/buffmt.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/buffers/mockbuffers.pxi +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/buffers/userbuffer.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/bugs.txt +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/build/basic_cythonize.srctree +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/build/basic_distutils.srctree +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/build/build_dir.srctree +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/build/build_dir_src.srctree +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/build/build_ext_cython_c_in_temp.srctree +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/build/build_ext_cython_cplus.srctree +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/build/build_ext_cython_include_dirs.srctree +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/build/common_include_dir.srctree +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/build/compile_env_distutils.srctree +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/build/cpp_cythonize.srctree +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/build/cython_language_level.srctree +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/build/cythonize_additional_sources.srctree +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/build/cythonize_additional_sources_ext.srctree +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/build/cythonize_cython.srctree +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/build/cythonize_glob.srctree +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/build/cythonize_newer_files.srctree +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/build/cythonize_options.srctree +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/build/cythonize_pep420_namespace.srctree +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/build/cythonize_rename_ext.srctree +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/build/cythonize_script.srctree +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/build/cythonize_script_excludes.srctree +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/build/cythonize_script_package.srctree +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/build/cythonize_with_annotate.srctree +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/build/cythonize_with_annotate_via_Options.srctree +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/build/cythonize_with_annotate_via_cli.srctree +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/build/depfile.srctree +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/build/depfile_numpy.srctree +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/build/depfile_package_cython.srctree +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/build/depfile_package_cythonize.srctree +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/build/dotted.filename.modules.pxd +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/build/dotted.filename.modules.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/build/inline_distutils.srctree +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/build/module_api.srctree +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/build/package_compilation.srctree +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/build/setuptools_reimport.srctree +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/compile/a/__init__.py +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/compile/a/b.pxd +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/compile/a_capi.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/compile/altet1.h +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/compile/altet1.pyx.BROKEN +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/compile/argdefault.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/compile/arrayargs.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/compile/arrayptrcompat.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/compile/arraytoptrarg.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/compile/ass2longlong.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/compile/assert2.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/compile/behnel4.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/compile/belchenko1.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/compile/belchenko2.h +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/compile/belchenko2.pyx.BROKEN +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/compile/branch_hints.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/compile/buildenv.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/compile/builtin.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/compile/builtinbuffer.py +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/compile/builtinfuncs.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/compile/builtinlist.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/compile/burton1.pyx.BROKEN +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/compile/c_directives.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/compile/callingconvention.srctree +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/compile/cargdef.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/compile/carrdecl.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/compile/cassign.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/compile/cast_ctypedef_array_T518.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/compile/cast_ctypedef_array_T518_helper.h +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/compile/casttoexttype.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/compile/cdef_syntax.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/compile/cdefemptysue.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/compile/cdefexternblock.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/compile/cdefexternempty.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/compile/cdefexternfromstar.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/compile/cenum.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/compile/cforfromloop.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/compile/cheese.h +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/compile/cimport_package_module_T4.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/compile/cimported_class_base.srctree +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/compile/cimportfrom_T248.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/compile/classmethargdefault.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/compile/cnamespec.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/compile/cnumop.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/compile/coercetovoidptr.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/compile/complex_annotations.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/compile/complex_decorators.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/compile/complexbasetype.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/compile/conditional_dependencies.srctree +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/compile/const_T42.srctree +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/compile/const_decl.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/compile/constcast.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/compile/constexpr.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/compile/coventry1.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/compile/cpdef.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/compile/cpp_class_redefinition.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/compile/cpp_nogil.h +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/compile/cpp_nogil.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/compile/cpp_rvalue_reference_binding.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/compile/cpp_structs.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/compile/cpp_temp_assignment.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/compile/cpp_templated_ctypedef.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/compile/cpp_templates.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/compile/cpp_templates_nested.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/compile/cppenum.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/compile/create_extension.srctree +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/compile/crunchytype.pxd +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/compile/cstructreturn.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/compile/ctuple_cimport.pxd +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/compile/ctuple_cimport_T1427.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/compile/ctuple_unused_T3543.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/compile/ctypedef.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/compile/ctypedef_public_class_T355.pxd +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/compile/ctypedef_public_class_T355.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/compile/ctypedefclass.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/compile/ctypedefenum.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/compile/ctypedefpubapi.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/compile/ctypedefstruct.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/compile/ctypedefunion.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/compile/cunsignedlong.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/compile/cvardef.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/compile/cverylongtypes.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/compile/cython_compiled_folding.pxd +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/compile/cython_compiled_folding.py +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/compile/declandimpl.pxd +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/compile/declandimpl.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/compile/declarations.srctree +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/compile/del.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/compile/distutils_libraries_T845.srctree +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/compile/docstrings.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/compile/doda1.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/compile/dotted_cimport.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/compile/dotted_cimport_submodule/__init__.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/compile/dotted_cimport_submodule/a.pxd +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/compile/drake1.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/compile/ellipsis_T488.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/compile/emptytry.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/compile/enumintcompat.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/compile/eqcmp.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/compile/ewing1.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/compile/ewing3.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/compile/ewing4.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/compile/ewing5.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/compile/ewing6.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/compile/ewing7.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/compile/ewing8.pxd +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/compile/ewing8.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/compile/ewing9.pxd +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/compile/ewing9.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/compile/excvalcheck.h +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/compile/excvalcheck.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/compile/excvaldecl.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/compile/excvalreturn.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/compile/extargdefault.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/compile/extcmethcall.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/compile/extcoerce.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/compile/extdelattr.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/compile/extdelitem.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/compile/extdelslice.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/compile/extdescrdel.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/compile/extdescrget.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/compile/extdescrset.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/compile/extern.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/compile/extexttype.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/compile/extforward.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/compile/extgetattr.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/compile/extgetitem.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/compile/exthash.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/compile/extimported.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/compile/extimportedsubtype.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/compile/extindex.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/compile/extinheritdel.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/compile/extinheritset.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/compile/extpropertyall.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/compile/extpropertydel.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/compile/extpropertydoc.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/compile/extpropertyget.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/compile/extpropertyset.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/compile/extpymemberdef.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/compile/extsetattr.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/compile/extsetitem.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/compile/extsetslice.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/compile/finally_GH1744.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/compile/find_pxd.srctree +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/compile/first_assignment.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/compile/food.h +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/compile/for.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/compile/forfromelse.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/compile/formfeed.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/compile/forward.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/compile/fromimport.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/compile/fromimport_star.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/compile/fused_buffers.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/compile/fused_no_numpy.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/compile/fused_redeclare_T3111.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/compile/fused_unused.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/compile/fused_wraparound.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/compile/future_imports.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/compile/gencall.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/compile/getattr3ref.pyx.BROKEN +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/compile/globalonly.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/compile/globalstmt.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/compile/globvardef.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/compile/gustafsson2.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/compile/hinsen1.h +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/compile/hinsen1.pyx.BROKEN +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/compile/hinsen2.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/compile/huss2.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/compile/ia_cdefblock.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/compile/import.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/compile/index.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/compile/indices.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/compile/inplace_lhs.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/compile/inplace_ops.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/compile/ishimoto1.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/compile/ishimoto4.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/compile/jiba3.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/compile/jiba4.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/compile/jiba5.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/compile/jiba6.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/compile/johnson1.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/compile/johnson2.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/compile/khavkine1.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/compile/kleckner1.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/compile/lepage_2.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/compile/libc_all.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/compile/libc_errno.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/compile/libc_signal.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/compile/libc_stdio.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/compile/longunsigned.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/compile/magcmp.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/compile/min_async.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/compile/module_name_arg.srctree +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/compile/msvc_strings.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/compile/nogil.h +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/compile/nogil.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/compile/nogil_perf_hints.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/compile/nogil_perf_hints_pxd.pxd +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/compile/nonctypedefclass.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/compile/none.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/compile/notnonearg.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/compile/nullptr.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/compile/omittedargnames.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/compile/operators.h +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/compile/packed_structs.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/compile/parallel_compile_float_rank.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/compile/pinard4.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/compile/point.h +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/compile/posix_pxds.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/compile/publicapi_api.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/compile/publicapi_cimport.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/compile/publicapi_mix.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/compile/publicapi_pub.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/compile/publicapi_pxd_mix.pxd +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/compile/publicapi_pxd_mix.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/compile/pxd_mangling_names.srctree +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/compile/pxd_override_T230.pxd +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/compile/pxd_override_T230.py +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/compile/pyclass.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/compile/pylong.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/compile/r_pernici1.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/compile/signedtypes.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/compile/slicex.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/compile/specialfloatvals.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/compile/specmethargdefault.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/compile/specmethdocstring.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/compile/specmethextarg.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/compile/stop_async_iteration_exception_pep492.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/compile/templates.h +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/compile/traceback.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/compile/tree_assertions.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/compile/tryexcept.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/compile/tryfinally.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/compile/typecast.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/compile/types_and_names.pxd +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/compile/types_and_names.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/compile/utf8bom.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/compile/vector_include.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/compile/verbatiminclude_cimport.srctree +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/compile/volatile.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/compile/watts2.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/compile/weakref_T276.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/compile/while.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/compile/withgil.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/cygwin_bugs.txt +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/errors/break_outside_loop.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/errors/bufaccess_noassignT444.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/errors/buffertypedef_T117.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/errors/builtin_type_inheritance.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/errors/callargs.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/errors/callingnonexisting_T307.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/errors/cdef_class_properties_decorated.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/errors/cdef_func_decorators.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/errors/cdef_func_syntax.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/errors/cdef_in_pyclass.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/errors/cdef_members_T517.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/errors/cdef_syntax.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/errors/cdefkwargs.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/errors/cdefoptargs.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/errors/cdefspecial.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/errors/cfunc_directive_in_pyclass.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/errors/cfuncptr.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/errors/charptr_from_temp.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/errors/cimport_attributes.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/errors/cmethbasematch.pxd +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/errors/cmethbasematch.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/errors/compile_time_unraisable_T370.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/errors/const_decl_errors.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/errors/continue_outside_loop.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/errors/cpdef_syntax.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/errors/cpdef_vars.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/errors/cpp_bool.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/errors/cpp_class_gil_GH1986.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/errors/cpp_comparison.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/errors/cpp_enum_redeclare.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/errors/cpp_increment.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/errors/cpp_no_auto_conversion.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/errors/cpp_no_const_iterator_conversion.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/errors/cpp_no_constructor.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/errors/cpp_object_template.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/errors/cpp_rvalue_reference_support.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/errors/cppexc_non_extern.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/errors/cython3_bytes.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/errors/dataclass_e1.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/errors/dataclass_e4.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/errors/dataclass_e5.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/errors/dataclass_e6.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/errors/dataclass_w1.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/errors/dataclass_w1_othermod.pxd +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/errors/declareafteruse_T158.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/errors/dotted.module.pxd +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/errors/dotted_filenames.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/errors/duplicate_const.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/errors/e2_packedstruct_T290.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/errors/e_addop.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/errors/e_addressof.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/errors/e_argdefault.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/errors/e_arrayassign.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/errors/e_ass.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/errors/e_assert.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/errors/e_assnone.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/errors/e_autotestdict.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/errors/e_badexcvaltype.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/errors/e_badfuncargtype.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/errors/e_badpyparam.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/errors/e_badtypeuse.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/errors/e_binop_and.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/errors/e_binop_or.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/errors/e_bitop.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/errors/e_boolcoerce.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/errors/e_bufaccess.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/errors/e_bufaccess2.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/errors/e_bufaccess_pxd.pxd +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/errors/e_callnonfunction.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/errors/e_callspec.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/errors/e_cdef_closure.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/errors/e_cdef_in_py.py +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/errors/e_cdef_keywords_T241.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/errors/e_cdef_missing_declarator.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/errors/e_cdef_yield.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/errors/e_cdefassign.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/errors/e_cdefemptysue.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/errors/e_cenum.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/errors/e_cenum_with_type.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/errors/e_cmp.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/errors/e_cpp_nogil.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/errors/e_cpp_only_features.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/errors/e_cpp_references.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/errors/e_cstruct.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/errors/e_ctypedefornot.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/errors/e_cunion.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/errors/e_cython_parallel.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/errors/e_declarations.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/errors/e_del.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/errors/e_directives.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/errors/e_exceptclause.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/errors/e_excvalfunctype.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/errors/e_exttype_freelist.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/errors/e_exttype_total_ordering.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/errors/e_extweakref.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/errors/e_fstring.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/errors/e_func_in_pxd.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/errors/e_func_in_pxd_support.pxd +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/errors/e_fused_closure.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/errors/e_generators.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/errors/e_index.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/errors/e_int_literals_py2.py +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/errors/e_int_literals_py3.py +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/errors/e_invalid_num_threads.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/errors/e_invalid_special_cython_modules.py +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/errors/e_multass.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/errors/e_nargs.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/errors/e_nogilcmeth.pxd +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/errors/e_nogilcmeth.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/errors/e_nogilfunctype.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/errors/e_nonlocal_T490.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/errors/e_nosignword.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/errors/e_notnone.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/errors/e_notnone2.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/errors/e_numop.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/errors/e_powop.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/errors/e_public_cdef_private_types.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/errors/e_pure_cimports.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/errors/e_pxdimpl.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/errors/e_pxdimpl_imported.pxd +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/errors/e_pyobinstruct.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/errors/e_relative_cimport.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/errors/e_return.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/errors/e_sizeofincomplete.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/errors/e_slice.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/errors/e_strcoerce.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/errors/e_subop.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/errors/e_switch.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/errors/e_switch_transform.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/errors/e_tempcast.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/errors/e_tuple_args_T692.py +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/errors/e_typing_errors.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/errors/e_typing_optional.py +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/errors/e_undefexttype.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/errors/e_unop.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/errors/e_while.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/errors/empty.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/errors/encoding.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/errors/exec_errors.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/errors/extclassattrsetting.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/errors/extended_unpacking.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/errors/extended_unpacking_notuple.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/errors/extended_unpacking_parser.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/errors/extended_unpacking_parser2.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/errors/final_methods.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/errors/fused_syntax.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/errors/fused_syntax_ctypedef.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/errors/futurebraces.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/errors/incomplete_varadic.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/errors/incorrectly_nested_gil_blocks.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/errors/invalid_cast.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/errors/invalid_hex_escape0.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/errors/invalid_hex_escape1.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/errors/invalid_syntax_py.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/errors/invalid_uescape.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/errors/invalid_uescape0.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/errors/invalid_uescape2.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/errors/invalid_uescapeN.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/errors/literal_lists.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/errors/missing_baseclass_in_predecl_T262.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/errors/missing_self_in_cpdef_method_T156.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/errors/missing_self_in_cpdef_method_T165.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/errors/mod_errors.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/errors/nogil.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/errors/nogil_buffer_acquisition.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/errors/nogil_conditional.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/errors/nogilcmeth.pxd +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/errors/nogilcmeth.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/errors/nogilfunctype.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/errors/nonconst_def.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/errors/nonconst_def_tuple.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/errors/nonconst_excval.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/errors/notcimportedT418.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/errors/parsed_directive.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/errors/pep448_syntax_1.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/errors/pep448_syntax_2.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/errors/pep448_syntax_3.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/errors/pep487_exttype.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/errors/pep492_badsyntax_async1.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/errors/pep492_badsyntax_async4.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/errors/pep492_badsyntax_async5.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/errors/pep492_badsyntax_async7.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/errors/pep492_badsyntax_async8.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/errors/pep492_badsyntax_async9.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/errors/posonly.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/errors/posonly2.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/errors/posonly3.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/errors/posonly4.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/errors/posonly5.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/errors/pure_cclass_without_body.pxd +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/errors/pure_cclass_without_body.py +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/errors/pure_errors.py +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/errors/pure_nogil_conditional.py +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/errors/pure_warnings.py +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/errors/pxd_cdef_class_declaration_T286.pxd +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/errors/pxd_cdef_class_declaration_T286.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/errors/pxd_signature_mismatch.pxd +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/errors/pxd_signature_mismatch.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/errors/py_ucs4_type_errors.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/errors/py_unicode_type_errors.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/errors/pyobjcastdisallow_T313.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/errors/redeclaration_of_var_by_cfunc_T600.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/errors/return_outside_function_T135.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/errors/reversed_literal_pyobjs.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/errors/se_badindent.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/errors/se_badindent2.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/errors/se_mixtabspace.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/errors/se_multass.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/errors/string_assignments.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/errors/subtyping_final_class.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/errors/syntax_warnings.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/errors/tree_assert.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/errors/typoT304.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/errors/undefinedname.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/errors/unicode_identifiers_e1.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/errors/unicode_identifiers_e2.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/errors/unicode_identifiers_e3.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/errors/unicode_identifiers_e4.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/errors/uninitialized_lhs.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/errors/void_as_arg.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/errors/w_cdef_override.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/errors/w_numpy_arr_as_cppvec_ref.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/errors/w_python_list_as_cppset_ref.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/errors/w_undeclared.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/errors/w_uninitialized.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/errors/w_uninitialized_cpp.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/errors/w_uninitialized_del.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/errors/w_uninitialized_exc.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/errors/w_uninitialized_for.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/errors/w_uninitialized_generators.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/errors/w_uninitialized_py2.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/errors/w_uninitialized_py3.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/errors/w_uninitialized_while.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/errors/w_uninitialized_with.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/errors/w_unreachable.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/errors/w_unreachable_cf.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/errors/w_unused.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/errors/wraparound_warnings.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/graal_bugs.txt +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/limited_api_bugs.txt +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/macos_cpp_bugs.txt +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/memoryview/bufaccess.h +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/memoryview/cfunc_convert_with_memoryview.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/memoryview/compile_declarations.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/memoryview/contig_check.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/memoryview/cythonarray.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/memoryview/error_declarations.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/memoryview/extension_type_memoryview.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/memoryview/memoryview.pxd +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/memoryview/memoryview_acq_count.srctree +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/memoryview/memoryview_annotation_typing.py +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/memoryview/memoryview_cache_builtins.srctree +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/memoryview/memoryview_compare_type_pointers.srctree +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/memoryview/memoryview_in_subclasses.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/memoryview/memoryview_inline_pxd.srctree +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/memoryview/memoryview_inplace_division.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/memoryview/memoryview_no_binding_T3613.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/memoryview/memoryview_no_withgil_check.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/memoryview/memoryview_pep484_typing.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/memoryview/memoryviewattrs.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/memoryview/memslice.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/memoryview/memview_assignments.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/memoryview/numpy_memoryview.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/memoryview/numpy_memoryview_readonly.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/memoryview/parallel_refcounting_stress_test.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/memoryview/relaxed_strides.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/memoryview/transpose_refcount.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/memoryview/view_return_errors.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/pypy_bugs.txt +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/pypy_crash_bugs.txt +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/pypy_implementation_detail_bugs.txt +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/pyximport/pyximport_basic.srctree +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/pyximport/pyximport_errors.srctree +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/pyximport/pyximport_namespace.srctree +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/pyximport/pyximport_pyimport.srctree +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/pyximport/pyximport_pyimport_only.srctree +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/pyximport/pyximport_pyxbld.srctree +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/__debug__.srctree +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/__getattribute__.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/__getattribute_subclasses__.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/absolute_import.srctree +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/addloop.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/addop.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/addressof.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/all.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/altet2.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/always_allow_keywords_T295.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/and.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/annotate_html.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/annotation_typing.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/anonymousenum.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/any.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/append.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/arg_incref.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/argdefault.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/argerrors.py +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/args_unpacking_in_closure_T658.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/argument_unpacking_closure_T736.py +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/arithmetic_analyse_types.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/arithmetic_analyse_types_helper.h +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/array_address.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/array_cimport.srctree +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/arrayassign.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/ass2cglobal.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/ass2global.py +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/ass2local.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/assert.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/assigned_builtin_methods.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/async_def.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/async_globals.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/async_iter_pep492.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/asyncio_generators.srctree +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/attr.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/attribute_and_lambda.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/auto_cpdef.py +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/auto_cpdef_closures.py +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/autotestdict.pxd +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/autotestdict.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/autotestdict_all.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/autotestdict_cdef.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/autotestdict_skip.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/baas3.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/backquote.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/bad_c_struct_T252.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/behnel1.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/behnel2.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/behnel3.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/big_indices.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/binop_reverse_methods_GH2056.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/bint.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/bint_binop_T145.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/bint_property_T354.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/bishop1.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/bishop2.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/boolean_context.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/boolop.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/boolop_py.py +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/bound_builtin_methods_T589.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/broken_exception.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/buffer_n_overflowcheck_T5356.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/builtin_abs.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/builtin_basestring.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/builtin_callable.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/builtin_float.py +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/builtin_globals.py +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/builtin_len.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/builtin_memory_view.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/builtin_methods_return_values.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/builtin_min_max.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/builtin_next.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/builtin_ord.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/builtin_pow.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/builtin_py3.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/builtin_slice.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/builtin_sorted.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/builtin_subtype_methods_T653.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/builtin_subtype_methods_cy3.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/builtin_type.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/builtin_type_inheritance_T608.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/builtin_type_inheritance_T608_py2only.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/builtin_types_class.py +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/builtin_types_none_T166.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/builtincomplex.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/builtinnames.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/builtins_truth_test.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/builtinslice.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/bytearray_ascii_auto_encoding.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/bytearray_coercion.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/bytearray_default_auto_encoding.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/bytearray_iter.py +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/bytearraymethods.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/bytes_char_coercion.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/bytes_formatting.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/bytes_indexing.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/c_file_validation.srctree +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/c_int_types_T255.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/c_type_methods_T236.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/call_crash.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/call_py_cy.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/callargs.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/capiimpl.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/carray_coercion.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/carray_slicing.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/carrays.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/cascaded_list_unpacking_T467.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/cascaded_typed_assignments_T466.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/cascadedassignment.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/cascmp.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/cclass_assign_attr_GH3100.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/cdef_bool_T227.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/cdef_class_dataclass.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/cdef_class_field.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/cdef_class_order.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/cdef_class_property_decorator_T264.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/cdef_classmethod.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/cdef_cpdef_override_GH543.srctree +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/cdef_decorator_directives_T183.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/cdef_function_kwargs.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/cdef_locals_decorator_T477.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/cdef_members_T517.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/cdef_members_binding_properties.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/cdef_methods_T462.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/cdef_multiple_inheritance.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/cdef_multiple_inheritance_cimport.srctree +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/cdef_multiple_inheritance_errors.srctree +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/cdef_multiple_inheritance_nodict.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/cdef_opt.pxd +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/cdef_opt.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/cdef_setitem_T284.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/cdefassign.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/cdefoptargs.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/cdivision_CEP_516.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/cf_none.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/cfunc_call_tuple_args_T408.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/cfunc_convert.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/cfuncdef.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/cfuncptr.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/char_constants_T99.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/charcomparisonT412.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/charencoding.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/charescape.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/charptr_comparison_T582.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/charptr_decode.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/charptr_from_temp.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/charptr_len.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/check_fused_types.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/check_fused_types_pxd.pxd +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/check_size.srctree +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/cimport.srctree +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/cimport_alias_subclass.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/cimport_alias_subclass_helper.pxd +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/cimport_cython_T505.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/cimport_from_pyx.srctree +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/cimport_from_sys_path.srctree +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/cintop.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/class_attribute_init_values_T18.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/class_func_in_control_structures_T87.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/class_redefine.py +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/class_scope.py +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/class_scope_del_T684.py +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/classbody_exec.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/classdecorators_T336.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/classkwonlyargs.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/classmethod.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/classpass.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/clear_to_null.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/clone_type.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/closure_arg_type_error.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/closure_class_T596.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/closure_decorators_T478.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/closure_in_derived_class_T2967.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/closure_inlining.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/closure_inside_cdef_T554.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/closure_leak_1.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/closure_name_mangling_T537.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/closure_names.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/closure_self.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/closure_tests_1.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/closure_tests_2.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/closure_tests_3.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/closure_tests_4.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/closures_T82.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/cmethod_inline_T474.pxd +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/cmethod_inline_T474.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/cmp.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/code_object_cache.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/coercearraytoptr.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/common_utility_types.srctree +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/compare_binary_pyversions.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/compiledef.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/complex_cast_T445.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/complex_coercion_sideeffects_T693.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/complex_extern_GH1433.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/complex_int_T446.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/complex_numbers_T305.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/complex_numbers_T305_long_double.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/complex_numbers_c89_T398.h +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/complex_numbers_c89_T398.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/complex_numbers_c89_T398_long_double.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/complex_numbers_c99_T398.h +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/complex_numbers_c99_T398.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/complex_numbers_cmath_T2891.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/complex_numbers_cpp.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/complex_numbers_cxx_T398.h +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/complex_numbers_cxx_T398.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/concatcstrings.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/constant_folding.py +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/constant_folding_cy.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/constants.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/contains_T455.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/control_flow_except_T725.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/control_flow_loop.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/control_flow_stack_allocation.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/coroutines.py +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/coverage_api.srctree +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/coverage_cmd.srctree +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/coverage_cmd_src_layout.srctree +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/coverage_cmd_src_pkg_layout.srctree +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/coverage_installed_pkg.srctree +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/coverage_nogil.srctree +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/cpdef_enums.pxd +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/cpdef_enums.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/cpdef_enums_import.srctree +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/cpdef_extern_func.pxd +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/cpdef_extern_func.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/cpdef_extern_func_in_py.pxd +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/cpdef_extern_func_in_py.py +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/cpdef_method_override.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/cpdef_method_override_recursion.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/cpdef_nogil.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/cpdef_optargs.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/cpdef_optargs_pure.pxd +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/cpdef_optargs_pure.py +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/cpdef_pickle.srctree +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/cpdef_scoped_enums.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/cpdef_scoped_enums_import.srctree +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/cpdef_temps_T411.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/cpdef_void_return.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/cpow.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/cpp_assignment_overload.srctree +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/cpp_bool.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/cpp_bool_template_return.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/cpp_call_stack_allocated.srctree +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/cpp_class_attrib.srctree +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/cpp_class_redef.pxd +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/cpp_class_redef.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/cpp_classes.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/cpp_classes_def.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/cpp_const_method.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/cpp_custom_string.srctree +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/cpp_enums.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/cpp_exceptions.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/cpp_exceptions_helper.h +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/cpp_exceptions_nogil.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/cpp_exceptions_nogil_helper.h +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/cpp_exceptions_utility_code.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/cpp_extern.srctree +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/cpp_forwarding_ref.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/cpp_function_lib.cpp +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/cpp_function_lib.h +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/cpp_function_lib.pxd +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/cpp_iterators.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/cpp_iterators_over_attribute_of_rvalue_support.h +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/cpp_iterators_simple.h +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/cpp_locals_directive.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/cpp_locals_directive_unused.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/cpp_locals_parallel.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/cpp_move.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/cpp_namespaces.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/cpp_namespaces_helper.h +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/cpp_nested_classes.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/cpp_nested_classes_support.h +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/cpp_nested_names.pxd +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/cpp_nested_names_helper.h +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/cpp_nested_templates.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/cpp_nonstdint.h +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/cpp_nonstdint.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/cpp_operator_exc_handling.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/cpp_operator_exc_handling_helper.hpp +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/cpp_operators.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/cpp_operators_helper.h +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/cpp_scoped_enums.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/cpp_smart_ptr.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/cpp_smart_ptr_helper.h +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/cpp_static_method_overload.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/cpp_stl.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/cpp_stl_algo_comparison_ops.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/cpp_stl_algo_execpolicies.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/cpp_stl_algo_minmax_ops.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/cpp_stl_algo_modifying_sequence_ops.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/cpp_stl_algo_nonmodifying_sequence_ops.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/cpp_stl_algo_partitioning_ops.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/cpp_stl_algo_permutation_ops.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/cpp_stl_algo_sample.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/cpp_stl_algo_sorted_ranges_other_ops.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/cpp_stl_algo_sorted_ranges_set_ops.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/cpp_stl_algo_sorting_ops.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/cpp_stl_any.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/cpp_stl_associated_containers_contains_cpp20.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/cpp_stl_atomic.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/cpp_stl_bit_cpp20.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/cpp_stl_cmath_cpp17.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/cpp_stl_cmath_cpp20.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/cpp_stl_conversion.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/cpp_stl_forward_list.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/cpp_stl_function.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/cpp_stl_list.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/cpp_stl_list_cpp11.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/cpp_stl_map.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/cpp_stl_multimap.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/cpp_stl_multiset.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/cpp_stl_numbers.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/cpp_stl_numeric_ops.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/cpp_stl_numeric_ops_cpp17.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/cpp_stl_numeric_ops_cpp20.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/cpp_stl_random.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/cpp_stl_set.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/cpp_stl_string.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/cpp_stl_string_ascii_auto_encoding.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/cpp_stl_string_ascii_auto_encoding_str.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/cpp_stl_string_cpp11.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/cpp_stl_string_cpp20.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/cpp_stl_string_utf8_auto_encoding.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/cpp_stl_vector.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/cpp_stl_vector_cpp11.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/cpp_template_functions.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/cpp_template_functions_helper.h +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/cpp_template_ref_args.h +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/cpp_template_ref_args.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/cpp_template_subclasses.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/cpp_template_subclasses_helper.h +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/cpp_templates.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/cpp_templates_helper.h +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/cpp_type_inference.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/cpp_unordered_map_helper.h +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/cpp_vector_in_generator.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/cpython_capi.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/cpython_capi_py35.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/crashT245.h +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/crashT245.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/crashT245_pxd.pxd +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/cross_closure_type_inference.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/cstringmeth.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/cstringmul.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/ct_DEF.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/ct_IF.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/ctruthtests.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/ctypedef_bint.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/ctypedef_char_types.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/ctypedef_delegation.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/ctypedef_int_types_T333.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/ctypedef_int_types_chdr_T333.h +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/ctypedef_int_types_defs_T333.pxd +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/cunion.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/curiously_recurring_template_pattern_GH1458.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/curiously_recurring_template_pattern_GH1458_suport.h +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/cyclic_gc.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/cyfunction.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/cyfunction_METH_O_GH1728.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/cyfunction_defaults.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/cyfunction_defaults_cpp.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/cython2_bytes.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/cython3_no_unicode_literals.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/cython_includes.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/cython_no_files.srctree +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/cythonscope.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/datetime_cimport.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/datetime_members.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/datetime_pxd.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/decorator_lambda.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/decorators.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/decorators_T593.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/decorators_py_T593.py +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/default_args_T674.py +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/default_optional_gh5643.py +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/define_macro.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/define_macro_helper.h +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/defnode_err_val.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/delete.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/delslice.py +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/dict.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/dict_get.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/dict_getitem.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/dict_iter_unpack.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/dict_pop.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/dict_setdefault.py +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/dict_values_in_expression.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/dictcomp.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/dictintindex.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/dietachmayer1.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/different_package_names.srctree +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/directive_locals_in_pxd.pxd +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/directive_locals_in_pxd.py +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/division_T384.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/dotted_filenames.srctree +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/double_dealloc_T796.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/duplicate_keyword_in_call.py +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/duplicate_utilitycode_from_pyx.srctree +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/dynamic_args.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/dynamic_attributes.pxd +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/dynamic_attributes.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/ellipsis_T488.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/embedsignatures.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/embedsignatures_clinic.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/embedsignatures_python.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/empty_builtin_constructors.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/empty_declarators.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/empty_for_loop_T208.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/enumboolctx.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/enumerate_T316.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/error_pos.srctree +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/eval.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/exarkun.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/exceptionpropagation.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/exceptionrefcount.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/exceptions_nogil.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/exec_noargs.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/exectest.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/existing_output_files.srctree +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/ext_attr_assign.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/ext_attr_getter.srctree +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/ext_attribute_cache.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/ext_auto_richcmp.py +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/ext_instance_type_T232.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/ext_type_none_arg.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/extclassbody.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/extclasspass.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/extcmethod.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/extended_unpacking_T235.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/extended_unpacking_T409.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/extern_builtins_T258.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/extern_impl.srctree +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/extern_impl_excvalue.srctree +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/extern_include_order.srctree +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/extern_varobject_extensions.srctree +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/external_defs.h +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/external_inline_declaration.srctree +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/external_ref_reassignment.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/extinherit.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/extinstantiate.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/extkwonlyargs.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/extlen.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/extmember.pxd +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/extmember.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/extpropertyref.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/extstarargs.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/exttype.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/exttype_dealloc.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/exttype_freelist.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/exttype_gc.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/exttype_total_ordering.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/fastcall.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/file_encoding_T740.py +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/filenames.pxi +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/filenames.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/final_cdef_class.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/final_in_pxd.srctree +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/final_method_T586.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/flatin.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/float_division.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/float_floor_division_T260.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/float_len_T480.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/fmod.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/for_decrement.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/for_from_float_T254.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/for_from_pyvar_loop_T601.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/for_in_break_continue_T533.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/for_in_iter.py +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/for_in_range_T372.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/for_in_string.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/forfrom.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/fstring.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/funcexc_iter_T228.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/funcexcept.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/funcexceptchained.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/funcexceptcypy.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/funcexceptraise.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/funcexceptraisefrom.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/funcexceptreplace.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/funcexceptreraise.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/funcexceptreturn.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/function_as_method_T494.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/function_as_method_py_T494.py +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/function_binding_T494.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/function_self.py +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/fused_bound_functions.py +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/fused_cdef.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/fused_cmethods.srctree +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/fused_cpdef.pxd +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/fused_cpdef.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/fused_cpp.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/fused_def.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/fused_types.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/fused_types_complex.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/future_division.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/future_unicode_literals.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/generator_expressions.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/generator_expressions_and_locals.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/generator_expressions_in_class.py +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/generator_expressions_nested.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/generator_frame_cycle.py +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/generator_type_inference.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/generators.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/generators_GH1731.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/generators_in_refcycles.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/generators_pep479.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/generators_py.py +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/generators_py35.py +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/genexpr_T491.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/genexpr_T715.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/genexpr_arg_order.py +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/genexpr_iterable_lookup_T600.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/getattr3call.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/gil_in_var_initialization_tests.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/hasattr.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/hash_T326.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/if.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/if_and_or.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/if_const.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/if_else_expr_cpp.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/if_else_expr_cpp_helper.h +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/ifelseexpr_T267.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/import_error_T734.py +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/import_star.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/importas.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/importas_from_package.srctree +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/importfrom.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/in_list_with_side_effects_T544.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/include.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/include_multiple_modules.srctree +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/includes/a.h +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/includes/all.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/includes/b.h +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/includes/b.pxd +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/includes/c.h +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/includes/d.h +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/includes/d.pxd +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/includes/e.h +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/includes/includefile.pxi +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/includes/indirect_d.pxd +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/index.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/inhcmethcall.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/inherited_final_method.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/initial_file_path.srctree +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/inline.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/inlined_context_manager.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/inlined_generator_expressions.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/inlinepxd.pxd +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/inlinepxd.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/inlinepxd_support.pxd +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/inop.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/inplace.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/int128.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/int_float_builtins_as_casts_T400.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/int_float_builtins_as_casts_T400_long_double.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/int_literals.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/intern_T431.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/internal_cdef_class.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/ipow_crash_T562.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/ishimoto2.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/ishimoto3.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/isinstance.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/isnonebool.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/isnot.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/isolated_limited_api_tests.srctree +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/iter.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/iteratorexception.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/iterdict.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/jarausch1.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/king1.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/knuth_man_or_boy_test.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/kostyrka.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/kostyrka2.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/kwargproblems.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/kwargs_passthrough.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/kwonlyargs.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/kwonlyargscall.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/lambda_T195.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/lambda_T723.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/lambda_class_T605.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/lambda_module_T603.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/lambda_tests.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/language_level.srctree +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/large_consts_T237.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/large_integer_T5290.py +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/legacy_implicit_noexcept.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/lepage_1.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/letnode_T766.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/libc_math.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/libc_stdlib.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/libc_time.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/libcpp_algo.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/libcpp_all.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/line_profile_test.srctree +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/line_trace.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/list.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/list_comp_in_closure_T598.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/list_pop.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/listcomp.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/literal_lists.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/literals.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/literalslice.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/locals.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/locals_T732.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/locals_expressions_T430.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/locals_rebind_T429.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/longintrepr.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/longlongindex.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/lvalue_refs.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/mangle_c_keywords.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/matrix_multiplier.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/memoryview_namespace_T775.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/memview_vector.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/menten1.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/metaclass.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/method_module_name_T422.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/methodmangling_T5.py +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/methodmangling_cdef.pxd +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/methodmangling_cdef.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/methodmangling_pure.py +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/methodmangling_unknown_names.py +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/mod__name__.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/mod__spec__.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/modbody.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/module_init_error.srctree +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/moduletryexcept.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/mulop.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/multass.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/new_as_nonkeyword.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/new_style_exceptions.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/no_gc.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/no_gc_clear.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/nogil.pxd +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/nogil.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/nogil_conditional.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/nogil_other.pxd +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/non_const_as_const_arg.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/non_dict_kwargs_T470.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/non_future_division.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/nonecheck.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/nonlocal_T490.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/nononetypecheck.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/notinop.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/numpy_ValueError_T172.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/numpy_attributes.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/numpy_bufacc_T155.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/numpy_cimport.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/numpy_cimport_1.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/numpy_cimport_2.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/numpy_cimport_3.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/numpy_cimport_4.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/numpy_cimport_5.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/numpy_cimport_6.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/numpy_import_array_error.srctree +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/numpy_math.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/numpy_parallel.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/numpy_pythran.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/numpy_pythran_unit.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/numpy_subarray.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/numpy_test.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/onelinesuite.py +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/ooo_base_classes.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/or.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/overflow_check.pxi +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/overflow_check_int.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/overflow_check_longlong.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/overflow_check_uint.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/overflow_check_ulonglong.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/owned_arg_refs.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/packedstruct_T290.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/parallel.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/parallel_swap_assign_T425.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/partial_circular_import.srctree +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/pass.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/pep442_tp_finalize.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/pep442_tp_finalize_cimport.srctree +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/pep448_extended_unpacking.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/pep448_test_extcall.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/pep526_variable_annotations.py +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/pep526_variable_annotations_cy.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/pep557_dataclasses.py +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/pep563_annotations.py +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/pinard5.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/pinard6.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/pinard7.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/pinard8.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/pointers.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/posix_resource.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/posix_test.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/posix_time.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/posonly.py +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/powop.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/print.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/print_function.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/print_refcount.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/property_decorator_T593.py +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/pstats_profile_test.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/pstats_profile_test_py.py +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/pstats_profile_test_pycfunc.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/ptr_warning_T714.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/ptrdiff_t.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/public_enum.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/public_fused_types.srctree +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/pure.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/pure_cdef_class_dataclass.py +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/pure_cdef_class_property_decorator_T264.pxd +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/pure_cdef_class_property_decorator_T264.py +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/pure_fused.pxd +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/pure_fused.py +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/pure_mode_cmethod_inheritance_T583.pxd +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/pure_mode_cmethod_inheritance_T583.py +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/pure_nogil_conditional.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/pure_parallel.py +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/pure_pxd.srctree +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/pure_py.py +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/pure_py3.py +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/pure_py_cimports.py +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/pure_pyx_cimports.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/purecdef.py +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/pxd_argument_names.srctree +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/pxd_signature_excvalue.srctree +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/pxd_syntax.srctree +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/py2_super.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/py34_signature.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/py35_asyncio_async_def.srctree +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/py35_pep492_interop.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/py3k_super.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/py_classbody.py +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/py_hash_t.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/py_ucs4_type.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/py_unicode_strings.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/py_unicode_type.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/pyarray.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/pycapsule.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/pyclass_annotations_pep526.py +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/pyclass_dynamic_bases.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/pyclass_scope_T671.py +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/pyclass_special_methods.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/pycmp.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/pycontextvar.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/pyextattrref.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/pyfunction_redefine_T489.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/pylistsubtype.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/pynumber_subtype_conversion.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/pynumop.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/pyobjcast_T313.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/pyparam_nogil.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/python_bool_type.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/pytype.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/qualname.py +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/r_addint.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/r_argdefault.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/r_barbieri1.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/r_bishop3.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/r_bowden1.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/r_delgado_1.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/r_extcomplex2.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/r_extstarargs.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/r_forloop.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/r_hordijk1.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/r_huss3.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/r_jeff_epler_1.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/r_jiba1.pxd +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/r_jiba1.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/r_lepage_3.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/r_mang1.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/r_mcintyre1.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/r_mitch_chapman_2.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/r_primes.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/r_print.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/r_pyclass.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/r_pyclassdefault.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/r_pythonapi.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/r_spamtype.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/r_starargcall.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/r_starargs.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/r_starargsonly.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/r_toofewargs.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/r_typecast.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/r_uintindex.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/r_vree_1.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/raise_memory_error_T650.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/range_optimisation_T203.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/reduce_pickle.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/ref2global.py +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/ref2local.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/refcount_in_meth.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/reimport.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/reimport_failure.srctree +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/reimport_from_package.srctree +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/reimport_from_subinterpreter.srctree +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/relative_cimport.srctree +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/relative_cimport_compare.srctree +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/relative_import_leak.srctree +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/relativeimport_T542.srctree +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/relativeimport_star_T542.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/reload_ext_module.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/reraise.py +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/reraise_3args.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/return.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/reversed_iteration.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/richcmp_str_equals.py +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/rodriguez_1.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/scanner_trace.srctree +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/self_in_ext_type_closure.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/seq_mul.py +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/sequential_parallel.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/set.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/set_discard_remove.py +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/set_item.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/set_iter.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/set_literals.py +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/set_new.py +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/setcomp.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/setjmp.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/shapes.h +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/short_circuit_T404.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/simpcall.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/size_t.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/sizeof.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/slice2.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/slice2_T636.py +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/slice2b.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/slice3.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/slice_charptr.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/slice_ptr.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/special_method_docstrings.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/special_methods_T561.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/special_methods_T561_py2.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/special_methods_T561_py3.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/special_methods_T561_py38.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/specialfloat.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/ssize_t_T399.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/starargs.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/starimport_cimport.srctree +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/starred_target_T664.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/static_methods.pxd +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/static_methods.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/staticmethod.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/str_ascii_auto_encoding.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/str_char_coercion_T412.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/str_default_auto_encoding.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/str_encoding_latin1.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/str_subclass_kwargs.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/strconstinclass.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/strescapes.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/strfunction.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/string_comparison.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/strliterals.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/strmethods.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/struct_conversion.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/struct_conversion_extern.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/struct_conversion_extern_header.h +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/subclasses.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/subop.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/switch.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/switch_transform.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/sys_path_globbed.srctree +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/tandemstats.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/temp_alloc_T409.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/temp_sideeffects_T654.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/temps_corner1.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/test_asyncgen.py +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/test_call.py +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/test_coroutines_pep492.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/test_dataclasses.pxi +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/test_dictviews.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/test_fstring.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/test_genericclass.py +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/test_genericclass_exttype.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/test_grammar.py +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/test_named_expressions.py +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/test_raisefrom.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/test_shadow_error.py +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/test_subclassinit.py +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/test_unicode.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/testinclude.pxi +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/ticket_123.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/ticket_124.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/time_pxd.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/tp_new.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/tp_new_T454.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/tp_new_cimport.srctree +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/trace_nogil.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/tracebacks.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/trashcan.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/trybreak.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/tryexcept.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/tryfinally.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/tryfinallychaining.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/tss.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/tuple.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/tuple_constants.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/tuple_unpack_string.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/tupleassign.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/tuplereassign.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/tupleunpack_T298.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/tupleunpack_T712.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/type_inference.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/type_inference_T768.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/type_inference_T768_cpp.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/type_inference_new.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/type_slots_int_long_T287.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/type_slots_nonzero_bool.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/typed_slice.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/typeddefaultargT373.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/typedfieldbug_T303.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/typeof.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/typeofexttype.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/types.h +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/typetest_T417.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/typing_module.py +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/typing_module_cy.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/unbound_builtin_methods.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/unbound_special_methods.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/unicode_ascii_auto_encoding.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/unicode_default_auto_encoding.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/unicode_formatting.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/unicode_identifiers.pxd +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/unicode_identifiers.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/unicode_identifiers_import.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/unicode_identifiers_normalization.srctree +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/unicode_imports.srctree +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/unicode_indexing.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/unicode_kwargs.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/unicode_slicing.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/unicodeencode.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/unicodefunction.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/unicodeliterals.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/unicodeliteralsdefault.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/unicodeliteralslatin1.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/uninitialized.py +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/unop.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/unop_extras.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/unpack.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/unpack_fused.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/unpacklistcomp.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/unreachable.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/unsigned.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/unsigned_char_ptr_bytes_conversion_T359.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/unsignedbehaviour_T184.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/unused.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/unused_args.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/varargcall.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/varargdecl.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/verbatiminclude.h +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/verbatiminclude.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/versioned_pxds.srctree +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/voidstarcast.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/watts1.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/weakfail.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/with_gil.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/with_gil_automatic.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/with_statement_module_level_T536.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/withnogil.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/withstat.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/withstat_py.py +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/withstat_py27.py +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/wundram1.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/yield_from_pep380.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/yield_from_py33.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/run/yield_inside_lambda.py +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/testsupport/cythonarrayutil.pxi +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/windows_bugs.txt +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/wrappers/cpp_overload_wrapper.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/wrappers/cpp_overload_wrapper_lib.cpp +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/wrappers/cpp_overload_wrapper_lib.h +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/wrappers/cpp_overload_wrapper_lib.pxd +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/wrappers/cpp_references.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/wrappers/cpp_references_helper.h +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/wrappers/cppwrap.pyx +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/wrappers/cppwrap_lib.cpp +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/wrappers/cppwrap_lib.h +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tests/wrappers/cppwrap_lib.pxd +0 -0
- {Cython-3.0.10 → cython-3.0.12}/tox.ini +0 -0
cython-3.0.12/.gitrev
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
c7dae70222b36f52945e9723acf72d2bd698b08d
|
|
@@ -2,6 +2,78 @@
|
|
|
2
2
|
Cython Changelog
|
|
3
3
|
================
|
|
4
4
|
|
|
5
|
+
3.0.12 (2025-02-11)
|
|
6
|
+
===================
|
|
7
|
+
|
|
8
|
+
Bugs fixed
|
|
9
|
+
----------
|
|
10
|
+
|
|
11
|
+
* Release 3.0.11 introduced some incorrect ``noexcept`` warnings.
|
|
12
|
+
(Github issue :issue:`6335`)
|
|
13
|
+
|
|
14
|
+
* Conditional assignments to variables using the walrus operator could crash.
|
|
15
|
+
(Github issue :issue:`6094`)
|
|
16
|
+
|
|
17
|
+
* Dict assignments to struct members with reserved C names could generate invalid C code.
|
|
18
|
+
|
|
19
|
+
* Fused ctuples with the same entry types but different sizes could fail to compile.
|
|
20
|
+
(Github issue :issue:`6328`)
|
|
21
|
+
|
|
22
|
+
* In Py3, `pyximport` was not searching `sys.path` when looking for importable source files.
|
|
23
|
+
(Github issue :issue:`5615`)
|
|
24
|
+
|
|
25
|
+
* Using `& 0` on integers produced with `int.from_bytes()` could read invalid memory on Python 3.10.
|
|
26
|
+
(Github issue :issue:`6480`)
|
|
27
|
+
|
|
28
|
+
* Modules could fail to compile in PyPy 3.11 due to missing CPython specific header files.
|
|
29
|
+
Patch by Matti Picus. (Github issue :issue:`6482`)
|
|
30
|
+
|
|
31
|
+
* Minor fix in C++ ``partial_sum()`` declaration.
|
|
32
|
+
|
|
33
|
+
|
|
34
|
+
3.0.11 (2024-08-05)
|
|
35
|
+
===================
|
|
36
|
+
|
|
37
|
+
Features added
|
|
38
|
+
--------------
|
|
39
|
+
|
|
40
|
+
* The C++11 ``emplace*`` methods were added to ``libcpp.deque``.
|
|
41
|
+
Patch by Somin An. (Github issue :issue:`6159`)
|
|
42
|
+
|
|
43
|
+
Bugs fixed
|
|
44
|
+
----------
|
|
45
|
+
|
|
46
|
+
* The exception check value of functions declared in pxd files was not always applied in 3.0.10.
|
|
47
|
+
(Github issue :issue:`6122`)
|
|
48
|
+
|
|
49
|
+
* A crash on exception deallocations was fixed.
|
|
50
|
+
(Github issue :issue:`6022`)
|
|
51
|
+
|
|
52
|
+
* A crash was fixed when assigning a zero-length slice to a memoryview.
|
|
53
|
+
Patch by Michael Man. (Github issue :issue:`6227`)
|
|
54
|
+
|
|
55
|
+
* ``libcpp.optional.value()`` could crash if it raised a C++ exception.
|
|
56
|
+
Patch by Alexander Condello. (Github issue :issue:`6190`)
|
|
57
|
+
|
|
58
|
+
* The return type of ``str()`` was mishandled, leading to crashes with ``language_level=3``.
|
|
59
|
+
(Github issue :issue:`6166`)
|
|
60
|
+
|
|
61
|
+
* ``bytes.startswith/endswith()`` failed for non-bytes substrings (e.g. ``bytearray``).
|
|
62
|
+
(Github issue :issue:`6168`)
|
|
63
|
+
|
|
64
|
+
* Fused ctuples crashed Cython.
|
|
65
|
+
(Github issue :issue:`6068`)
|
|
66
|
+
|
|
67
|
+
* A compiler crash was fixed when using extension types in fused types.
|
|
68
|
+
(Github issue :issue:`6204`)
|
|
69
|
+
|
|
70
|
+
* The module cleanup code was incorrect for globally defined memory view slices.
|
|
71
|
+
(Github issue :issue:`6276`)
|
|
72
|
+
|
|
73
|
+
* Some adaptations were made to enable compilation in Python 3.13.
|
|
74
|
+
(Github issues :issue:`5997`, :issue:`6182`, :issue:`6251`)
|
|
75
|
+
|
|
76
|
+
|
|
5
77
|
3.0.10 (2024-03-30)
|
|
6
78
|
===================
|
|
7
79
|
|
|
@@ -540,12 +612,12 @@ Related changes
|
|
|
540
612
|
* The Python ``int`` handling code was adapted to make use of the new ``PyLong``
|
|
541
613
|
internals in CPython 3.12.
|
|
542
614
|
(Github issue :issue:`5353`)
|
|
543
|
-
|
|
615
|
+
|
|
544
616
|
* A compile error when using ``__debug__`` was resolved.
|
|
545
|
-
|
|
617
|
+
|
|
546
618
|
* The deprecated ``_PyGC_FINALIZED()`` C-API macro is no longer used.
|
|
547
619
|
Patch by Thomas Caswell and Matúš Valo. (Github issue :issue:`5481`)
|
|
548
|
-
|
|
620
|
+
|
|
549
621
|
* A crash in Python 2.7 was fixed when cleaning up extension type instances
|
|
550
622
|
at program end.
|
|
551
623
|
|
|
@@ -592,7 +664,7 @@ without recompilation.
|
|
|
592
664
|
There is initial support for this in Cython. By defining the ``CYTHON_LIMITED_API``
|
|
593
665
|
macro, Cython cuts down its C-API usage and tries to adhere to the Limited C-API,
|
|
594
666
|
probably at the cost of a bit of performance.
|
|
595
|
-
In order to get full benefit from the limited API you will also need to define the
|
|
667
|
+
In order to get full benefit from the limited API you will also need to define the
|
|
596
668
|
CPython macro ``Py_LIMITED_API`` to a specific CPython compatibility version,
|
|
597
669
|
which additionally restricts the C-API during the C compilation,
|
|
598
670
|
thus enforcing the forward compatibility of the extension module.
|
|
@@ -647,7 +719,7 @@ Related changes
|
|
|
647
719
|
(Github issue :issue:`5419`)
|
|
648
720
|
|
|
649
721
|
* Custom buffer slot methods are now supported in the Limited C-API of Python 3.9+.
|
|
650
|
-
Patch by Lisandro Dalcin. (Github issue :issue:`5422`)
|
|
722
|
+
Patch by Lisandro Dalcin. (Github issue :issue:`5422`)
|
|
651
723
|
|
|
652
724
|
|
|
653
725
|
Improved fidelity to Python semantics
|
|
@@ -705,24 +777,24 @@ Related changes
|
|
|
705
777
|
|
|
706
778
|
* Binding staticmethods of Cython functions were not behaving like Python methods.
|
|
707
779
|
Patch by Jeroen Demeyer. (Github issue :issue:`3106`, :issue:`3102`)
|
|
708
|
-
|
|
780
|
+
|
|
709
781
|
* Compiling package ``__init__`` files could fail under Windows due to an
|
|
710
|
-
undefined export symbol. (Github issue :issue:`2968`)
|
|
711
|
-
|
|
782
|
+
undefined export symbol. (Github issue :issue:`2968`)
|
|
783
|
+
|
|
712
784
|
* ``__init__.pyx`` files were not always considered as package indicators.
|
|
713
785
|
(Github issue :issue:`2665`)
|
|
714
|
-
|
|
786
|
+
|
|
715
787
|
* Setting ``language_level=2`` in a file did not work if ``language_level=3``
|
|
716
788
|
was enabled globally before.
|
|
717
789
|
Patch by Jeroen Demeyer. (Github issue :issue:`2791`)
|
|
718
|
-
|
|
790
|
+
|
|
719
791
|
* ``__doc__`` was not available inside of the class body during class creation.
|
|
720
792
|
(Github issue :issue:`1635`)
|
|
721
793
|
|
|
722
794
|
* The first function line number of functions with decorators pointed to the
|
|
723
795
|
signature line and not the first decorator line, as in Python.
|
|
724
796
|
Patch by Felix Kohlgrüber. (Github issue :issue:`2536`)
|
|
725
|
-
|
|
797
|
+
|
|
726
798
|
* Pickling unbound methods of Python classes failed.
|
|
727
799
|
Patch by Pierre Glaser. (Github issue :issue:`2972`)
|
|
728
800
|
|
|
@@ -763,7 +835,7 @@ Related changes
|
|
|
763
835
|
|
|
764
836
|
* ``__arg`` argument names in methods were not mangled with the class name.
|
|
765
837
|
Patch by David Woods. (Github issue :issue:`1382`)
|
|
766
|
-
|
|
838
|
+
|
|
767
839
|
* With ``language_level=3/3str``, Python classes without explicit base class
|
|
768
840
|
are now new-style (type) classes also in Py2. Previously, they were created
|
|
769
841
|
as old-style (non-type) classes.
|
|
@@ -778,7 +850,7 @@ Related changes
|
|
|
778
850
|
globals, since double-underscore names are not uncommon in C. Unmangled Python
|
|
779
851
|
names are also still found as a legacy fallback but produce a warning.
|
|
780
852
|
Patch by David Woods. (Github issue :issue:`3548`)
|
|
781
|
-
|
|
853
|
+
|
|
782
854
|
* The ``print`` statement (not the ``print()`` function) is allowed in
|
|
783
855
|
``nogil`` code without an explicit ``with gil`` section.
|
|
784
856
|
|
|
@@ -843,7 +915,7 @@ Related changes
|
|
|
843
915
|
|
|
844
916
|
* Default values for memory views arguments were not properly supported.
|
|
845
917
|
Patch by Corentin Cadiou. (Github issue :issue:`4313`)
|
|
846
|
-
|
|
918
|
+
|
|
847
919
|
* Python object types were not allowed as ``->`` return type annotations.
|
|
848
920
|
Patch by Matúš Valo. (Github issue :issue:`4433`)
|
|
849
921
|
|
|
@@ -859,7 +931,7 @@ Related changes
|
|
|
859
931
|
|
|
860
932
|
* Decorators on inner functions were not evaluated in the right scope.
|
|
861
933
|
Patch by David Woods. (Github issue :issue:`4367`)
|
|
862
|
-
|
|
934
|
+
|
|
863
935
|
* Cython did not type the ``self`` argument in special binary methods.
|
|
864
936
|
Patch by David Woods. (Github issue :issue:`4434`)
|
|
865
937
|
|
|
@@ -869,7 +941,7 @@ Related changes
|
|
|
869
941
|
|
|
870
942
|
* ``__del__(self)`` on extension types now maps to ``tp_finalize`` in Python 3.
|
|
871
943
|
Original patch by ax487. (Github issue :issue:`3612`)
|
|
872
|
-
|
|
944
|
+
|
|
873
945
|
* Reusing an extension type attribute name as a method name is now an error.
|
|
874
946
|
Patch by 0dminnimda. (Github issue :issue:`4661`)
|
|
875
947
|
|
|
@@ -922,14 +994,14 @@ Related changes
|
|
|
922
994
|
|
|
923
995
|
* ``int(Py_UCS4)`` returned the code point instead of the parsed digit value.
|
|
924
996
|
(Github issue :issue:`5216`)
|
|
925
|
-
|
|
997
|
+
|
|
926
998
|
* Calling bound classmethods of builtin types could fail trying to call the unbound method.
|
|
927
999
|
(Github issue :issue:`5051`)
|
|
928
1000
|
|
|
929
1001
|
* Generator expressions and comprehensions now look up their outer-most iterable
|
|
930
1002
|
on creation, as Python does, and not later on start, as they did previously.
|
|
931
1003
|
(Github issue :issue:`1159`)
|
|
932
|
-
|
|
1004
|
+
|
|
933
1005
|
* Bound C methods can now coerce to Python objects.
|
|
934
1006
|
(Github issues :issue:`4890`, :issue:`5062`)
|
|
935
1007
|
|
|
@@ -942,7 +1014,7 @@ Related changes
|
|
|
942
1014
|
|
|
943
1015
|
* The special ``__*pow__`` methods now support the 2- and 3-argument variants.
|
|
944
1016
|
(Github issue :issue:`5160`)
|
|
945
|
-
|
|
1017
|
+
|
|
946
1018
|
* The ``**`` power operator now behaves more like in Python by returning the correct complex
|
|
947
1019
|
result if required by math. A new ``cpow`` directive was added to turn on the previous
|
|
948
1020
|
C-like behaviour.
|
|
@@ -997,7 +1069,7 @@ Related changes
|
|
|
997
1069
|
* ``nogil`` functions now avoid acquiring the GIL on function exit if possible
|
|
998
1070
|
even if they contain ``with gil`` blocks.
|
|
999
1071
|
(Github issue :issue:`3554`)
|
|
1000
|
-
|
|
1072
|
+
|
|
1001
1073
|
* The ``@returns()`` decorator propagates exceptions by default for suitable C
|
|
1002
1074
|
return types when no ``@exceptval()`` is defined.
|
|
1003
1075
|
(Github issues :issue:`3625`, :issue:`3664`)
|
|
@@ -1005,13 +1077,13 @@ Related changes
|
|
|
1005
1077
|
* Extension types inheriting from Python classes could not safely
|
|
1006
1078
|
be exposed in ``.pxd`` files.
|
|
1007
1079
|
(Github issue :issue:`4106`)
|
|
1008
|
-
|
|
1080
|
+
|
|
1009
1081
|
* Default arguments of methods were not exposed for introspection.
|
|
1010
1082
|
Patch by Vladimir Matveev. (Github issue :issue:`4061`)
|
|
1011
1083
|
|
|
1012
1084
|
* Literal list assignments to pointer variables declared in PEP-526
|
|
1013
1085
|
notation failed to compile.
|
|
1014
|
-
|
|
1086
|
+
|
|
1015
1087
|
* The type ``cython.Py_hash_t`` is available in Python mode.
|
|
1016
1088
|
|
|
1017
1089
|
* A ``cimport`` is now supported in pure Python code by prefixing the
|
|
@@ -1100,12 +1172,12 @@ Related changes
|
|
|
1100
1172
|
|
|
1101
1173
|
* Generated NumPy ufuncs could crash for large arrays due to incorrect GIL handling.
|
|
1102
1174
|
(Github issue :issue:`5328`)
|
|
1103
|
-
|
|
1175
|
+
|
|
1104
1176
|
* Some invalid directive usages are now detected and rejected, e.g. using ``@ccall``
|
|
1105
1177
|
together with ``@cfunc``, and applying ``@cfunc`` to a ``@ufunc``. Cython also
|
|
1106
1178
|
warns now when a directive is applied needlessly.
|
|
1107
1179
|
(Github issue :issue:`5399` et al.)
|
|
1108
|
-
|
|
1180
|
+
|
|
1109
1181
|
* The normal ``@dataclasses.dataclass`` and ``@functools.total_ordering`` decorators
|
|
1110
1182
|
can now be used on extension types. Using the corresponding ``@cython.*`` decorator
|
|
1111
1183
|
will automatically turn a Python class into an extension type (no need for ``@cclass``).
|
|
@@ -1209,7 +1281,7 @@ Related changes
|
|
|
1209
1281
|
(Github issue :issue:`5430`)
|
|
1210
1282
|
|
|
1211
1283
|
* Handling freshly raised exceptions that didn't have a traceback yet could crash.
|
|
1212
|
-
(Github issue :issue:`5495`)
|
|
1284
|
+
(Github issue :issue:`5495`)
|
|
1213
1285
|
|
|
1214
1286
|
|
|
1215
1287
|
Optimizations
|
|
@@ -1240,11 +1312,11 @@ Related changes
|
|
|
1240
1312
|
* String concatenation can now happen in place if possible, by extending the
|
|
1241
1313
|
existing string rather than always creating a new one.
|
|
1242
1314
|
Patch by David Woods. (Github issue :issue:`3453`)
|
|
1243
|
-
|
|
1315
|
+
|
|
1244
1316
|
* The ``str()`` builtin now calls ``PyObject_Str()`` instead of going
|
|
1245
1317
|
through a Python call.
|
|
1246
1318
|
Patch by William Ayd. (Github issue :issue:`3279`)
|
|
1247
|
-
|
|
1319
|
+
|
|
1248
1320
|
* Reimports of already imported modules are substantially faster.
|
|
1249
1321
|
(Github issue :issue:`2854`)
|
|
1250
1322
|
|
|
@@ -1255,17 +1327,17 @@ Related changes
|
|
|
1255
1327
|
|
|
1256
1328
|
* The fastcall/vectorcall protocols are used for several internal Python calls.
|
|
1257
1329
|
(Github issue :issue:`3540`)
|
|
1258
|
-
|
|
1330
|
+
|
|
1259
1331
|
* ``nogil`` functions now avoid acquiring the GIL on function exit if possible
|
|
1260
1332
|
even if they contain ``with gil`` blocks.
|
|
1261
1333
|
(Github issue :issue:`3554`)
|
|
1262
|
-
|
|
1334
|
+
|
|
1263
1335
|
* Type inference now works for memory views and slices.
|
|
1264
1336
|
Patch by David Woods. (Github issue :issue:`2227`)
|
|
1265
1337
|
|
|
1266
1338
|
* For-in-loop iteration over ``bytearray`` and memory views is optimised.
|
|
1267
1339
|
Patch by David Woods. (Github issue :issue:`2227`)
|
|
1268
|
-
|
|
1340
|
+
|
|
1269
1341
|
* For-in-loop iteration over ``bytearray`` and memory views is optimised.
|
|
1270
1342
|
Patch by David Woods. (Github issue :issue:`2227`)
|
|
1271
1343
|
|
|
@@ -1383,7 +1455,7 @@ Related changes
|
|
|
1383
1455
|
|
|
1384
1456
|
* ``cdef public`` functions declared in .pxd files could use an incorrectly mangled C name.
|
|
1385
1457
|
Patch by EpigeneMax. (Github issue :issue:`2940`)
|
|
1386
|
-
|
|
1458
|
+
|
|
1387
1459
|
* ``const`` types could not be returned from functions.
|
|
1388
1460
|
Patch by Mike Graham. (Github issue :issue:`5135`)
|
|
1389
1461
|
|
|
@@ -1398,11 +1470,11 @@ Related changes
|
|
|
1398
1470
|
|
|
1399
1471
|
* Very long Python integer constants could exceed the maximum C name length of MSVC.
|
|
1400
1472
|
Patch by 0dminnimda. (Github issue :issue:`5290`)
|
|
1401
|
-
|
|
1473
|
+
|
|
1402
1474
|
* Some C compiler warnings were resolved.
|
|
1403
1475
|
Patches by Matt Tyson, Lisandro Dalcin, Philipp Wagner, Matti Picus et al.
|
|
1404
1476
|
(Github issues :issue:`5417`, :issue:`5418`, :issue:`5421`, :issue:`5437`, :issue:`5438`, :issue:`5443`)
|
|
1405
|
-
|
|
1477
|
+
|
|
1406
1478
|
* Some typedef declarations for libc function types were fixed.
|
|
1407
1479
|
(Github issue :issue:`5498`)
|
|
1408
1480
|
|
|
@@ -1566,7 +1638,7 @@ Related changes
|
|
|
1566
1638
|
|
|
1567
1639
|
* C++ containers of item type ``bint`` could conflict with those of item type ``int``.
|
|
1568
1640
|
(Github issue :issue:`5516`)
|
|
1569
|
-
|
|
1641
|
+
|
|
1570
1642
|
* Reverse iteration in C++ no longer removes the ``const`` qualifier from the item type.
|
|
1571
1643
|
Patch by Isuru Fernando. (Github issue :issue:`5478`)
|
|
1572
1644
|
|
|
@@ -1615,7 +1687,7 @@ Related changes
|
|
|
1615
1687
|
|
|
1616
1688
|
* ``cython --version`` now prints the version to both stdout and stderr (unless that is a TTY).
|
|
1617
1689
|
(Github issue :issue:`5504`)
|
|
1618
|
-
|
|
1690
|
+
|
|
1619
1691
|
|
|
1620
1692
|
Build integration
|
|
1621
1693
|
-----------------
|
|
@@ -1633,7 +1705,7 @@ Related changes
|
|
|
1633
1705
|
|
|
1634
1706
|
* Binary Linux wheels now follow the manylinux2010 standard.
|
|
1635
1707
|
Patch by Alexey Stepanov. (Github issue :issue:`3355`)
|
|
1636
|
-
|
|
1708
|
+
|
|
1637
1709
|
* The search order for include files was changed. Previously it was
|
|
1638
1710
|
``include_directories``, ``Cython/Includes``, ``sys.path``. Now it is
|
|
1639
1711
|
``include_directories``, ``sys.path``, ``Cython/Includes``. This was done to
|
|
@@ -1701,7 +1773,7 @@ Related changes
|
|
|
1701
1773
|
* A new Cython build option ``--cython-compile-minimal`` was added to compile only a
|
|
1702
1774
|
smaller set of Cython's own modules, which can be used to reduce the package
|
|
1703
1775
|
and install size.
|
|
1704
|
-
|
|
1776
|
+
|
|
1705
1777
|
* The environment variable ``CYTHON_FORCE_REGEN=1`` can be used to force ``cythonize``
|
|
1706
1778
|
to regenerate the output files regardless of modification times and changes.
|
|
1707
1779
|
|
|
@@ -1713,15 +1785,15 @@ Related changes
|
|
|
1713
1785
|
|
|
1714
1786
|
* Wheels now include a compiled parser again, which increases their size a little
|
|
1715
1787
|
but gives about a 10% speed-up when running Cython.
|
|
1716
|
-
|
|
1788
|
+
|
|
1717
1789
|
* The wheel building process was migrated to use the ``cibuildwheel`` tool.
|
|
1718
1790
|
Patch by Thomas Li. (Github issue :issue:`4736`)
|
|
1719
|
-
|
|
1791
|
+
|
|
1720
1792
|
* ``setup.cfg`` was missing from the source distribution.
|
|
1721
1793
|
(Github issue :issue:`5199`)
|
|
1722
1794
|
|
|
1723
1795
|
* Extended glob paths with ``/**/`` and ``\**\`` for finding source files failed on Windows.
|
|
1724
|
-
|
|
1796
|
+
|
|
1725
1797
|
* Coverage analysis failed in projects with a separate source subdirectory.
|
|
1726
1798
|
Patch by Sviatoslav Sydorenko and Ruben Vorderman. (Github issue :issue:`3636`)
|
|
1727
1799
|
|
|
@@ -1789,12 +1861,12 @@ Other changes
|
|
|
1789
1861
|
|
|
1790
1862
|
* Memoryviews failed to compile when the ``cache_builtins`` feature was disabled.
|
|
1791
1863
|
Patch by David Woods. (Github issue :issue:`3406`)
|
|
1792
|
-
|
|
1864
|
+
|
|
1793
1865
|
* Broadcast assignments to a multi-dimensional memory view slice could end
|
|
1794
1866
|
up in the wrong places when the underlying memory view is known to be
|
|
1795
1867
|
contiguous but the slice is not.
|
|
1796
1868
|
(Github issue :issue:`2941`)
|
|
1797
|
-
|
|
1869
|
+
|
|
1798
1870
|
* The Pythran ``shape`` attribute is supported.
|
|
1799
1871
|
Patch by Serge Guelton. (Github issue :issue:`3307`)
|
|
1800
1872
|
|
|
@@ -1824,7 +1896,7 @@ Other changes
|
|
|
1824
1896
|
|
|
1825
1897
|
* Casting to ctuples is now allowed.
|
|
1826
1898
|
Patch by David Woods. (Github issue :issue:`3808`)
|
|
1827
|
-
|
|
1899
|
+
|
|
1828
1900
|
* Some issues were resolved that could lead to duplicated C names.
|
|
1829
1901
|
Patch by David Woods. (Github issue :issue:`3716`, :issue:`3741`, :issue:`3734`)
|
|
1830
1902
|
|
|
@@ -151,6 +151,11 @@ def _populate_unbound(kwds, unbound_symbols, locals=None, globals=None):
|
|
|
151
151
|
locals = calling_frame.f_locals
|
|
152
152
|
if globals is None:
|
|
153
153
|
globals = calling_frame.f_globals
|
|
154
|
+
if not isinstance(locals, dict):
|
|
155
|
+
# FrameLocalsProxy is stricter than dict on how it looks up keys
|
|
156
|
+
# and this means our "EncodedStrings" don't match the keys in locals.
|
|
157
|
+
# Therefore copy to a dict.
|
|
158
|
+
locals = dict(locals)
|
|
154
159
|
if symbol in locals:
|
|
155
160
|
kwds[symbol] = locals[symbol]
|
|
156
161
|
elif symbol in globals:
|
|
@@ -565,7 +565,7 @@ class CythonMagics(Magics):
|
|
|
565
565
|
__doc__ = __doc__.format(
|
|
566
566
|
# rST doesn't see the -+ flag as part of an option list, so we
|
|
567
567
|
# hide it from the module-level docstring.
|
|
568
|
-
CYTHON_DOC=dedent(CythonMagics.cython.__doc__
|
|
568
|
+
CYTHON_DOC=dedent(CythonMagics.cython.__doc__
|
|
569
569
|
.replace('-+, --cplus', '--cplus ')),
|
|
570
570
|
CYTHON_INLINE_DOC=dedent(CythonMagics.cython_inline.__doc__),
|
|
571
571
|
CYTHON_PYXIMPORT_DOC=dedent(CythonMagics.cython_pyximport.__doc__),
|
|
@@ -66,7 +66,7 @@ uncachable_builtins = [
|
|
|
66
66
|
# Global/builtin names that cannot be cached because they may or may not
|
|
67
67
|
# be available at import time, for various reasons:
|
|
68
68
|
## Python 3.13+
|
|
69
|
-
'
|
|
69
|
+
'_IncompleteInputError',
|
|
70
70
|
'PythonFinalizationError',
|
|
71
71
|
## Python 3.11+
|
|
72
72
|
'BaseExceptionGroup',
|
|
@@ -140,7 +140,7 @@ class IncludeCode(object):
|
|
|
140
140
|
# order int: sorting order (automatically set by increasing counter)
|
|
141
141
|
|
|
142
142
|
# Constants for location. If the same include occurs with different
|
|
143
|
-
# locations, the earliest one takes
|
|
143
|
+
# locations, the earliest one takes precedence.
|
|
144
144
|
INITIAL = 0
|
|
145
145
|
EARLY = 1
|
|
146
146
|
LATE = 2
|
|
@@ -641,18 +641,23 @@ class UtilityCode(UtilityCodeBase):
|
|
|
641
641
|
self.cleanup(writer, output.module_pos)
|
|
642
642
|
|
|
643
643
|
|
|
644
|
-
def sub_tempita(s, context, file=None, name=None):
|
|
644
|
+
def sub_tempita(s, context, file=None, name=None, __cache={}):
|
|
645
645
|
"Run tempita on string s with given context."
|
|
646
646
|
if not s:
|
|
647
647
|
return None
|
|
648
648
|
|
|
649
649
|
if file:
|
|
650
|
-
|
|
651
|
-
|
|
650
|
+
name = "%s:%s" % (file, name)
|
|
651
|
+
if name:
|
|
652
652
|
context['__name'] = name
|
|
653
653
|
|
|
654
|
-
|
|
655
|
-
|
|
654
|
+
try:
|
|
655
|
+
template = __cache[s]
|
|
656
|
+
except KeyError:
|
|
657
|
+
from ..Tempita import Template
|
|
658
|
+
template = __cache[s] = Template(s, name=name)
|
|
659
|
+
|
|
660
|
+
return template.substitute(context)
|
|
656
661
|
|
|
657
662
|
|
|
658
663
|
class TempitaUtilityCode(UtilityCode):
|
|
@@ -1542,8 +1547,18 @@ class GlobalState(object):
|
|
|
1542
1547
|
# which aren't necessarily PyObjects, so aren't appropriate
|
|
1543
1548
|
# to clear.
|
|
1544
1549
|
continue
|
|
1545
|
-
|
|
1546
|
-
|
|
1550
|
+
|
|
1551
|
+
self.parts['module_state_clear'].put_xdecref_clear(
|
|
1552
|
+
"clear_module_state->%s" % cname,
|
|
1553
|
+
c.type,
|
|
1554
|
+
clear_before_decref=True,
|
|
1555
|
+
nanny=False,
|
|
1556
|
+
)
|
|
1557
|
+
|
|
1558
|
+
if c.type.is_memoryviewslice:
|
|
1559
|
+
# TODO: Implement specific to type like CodeWriter.put_xdecref_clear()
|
|
1560
|
+
cname += "->memview"
|
|
1561
|
+
|
|
1547
1562
|
self.parts['module_state_traverse'].putln(
|
|
1548
1563
|
"Py_VISIT(traverse_module_state->%s);" % cname)
|
|
1549
1564
|
|
|
@@ -2084,14 +2099,6 @@ class CCodeWriter(object):
|
|
|
2084
2099
|
elif fix_indent:
|
|
2085
2100
|
self.level += 1
|
|
2086
2101
|
|
|
2087
|
-
def putln_tempita(self, code, **context):
|
|
2088
|
-
from ..Tempita import sub
|
|
2089
|
-
self.putln(sub(code, **context))
|
|
2090
|
-
|
|
2091
|
-
def put_tempita(self, code, **context):
|
|
2092
|
-
from ..Tempita import sub
|
|
2093
|
-
self.put(sub(code, **context))
|
|
2094
|
-
|
|
2095
2102
|
def increase_indent(self):
|
|
2096
2103
|
self.level += 1
|
|
2097
2104
|
|
|
@@ -481,7 +481,12 @@ class ExprNode(Node):
|
|
|
481
481
|
|
|
482
482
|
constant_result = constant_value_not_set
|
|
483
483
|
|
|
484
|
-
|
|
484
|
+
if getattr(getattr(sys, "implementation", None), "name", "cpython") == "cpython":
|
|
485
|
+
child_attrs = property(fget=operator.attrgetter('subexprs'))
|
|
486
|
+
else:
|
|
487
|
+
@property
|
|
488
|
+
def child_attrs(self):
|
|
489
|
+
return self.subexprs
|
|
485
490
|
|
|
486
491
|
def analyse_annotations(self, env):
|
|
487
492
|
pass
|
|
@@ -1047,7 +1052,7 @@ class ExprNode(Node):
|
|
|
1047
1052
|
src = CoerceToPyTypeNode(src, env, type=dst_type)
|
|
1048
1053
|
# FIXME: I would expect that CoerceToPyTypeNode(type=dst_type) returns a value of type dst_type
|
|
1049
1054
|
# but it doesn't for ctuples. Thus, we add a PyTypeTestNode which then triggers the
|
|
1050
|
-
# Python conversion and becomes useless. That
|
|
1055
|
+
# Python conversion and becomes useless. That seems backwards and inefficient.
|
|
1051
1056
|
# We should not need a PyTypeTestNode after a previous conversion above.
|
|
1052
1057
|
if not src.type.subtype_of(dst_type):
|
|
1053
1058
|
src = PyTypeTestNode(src, dst_type, env)
|
|
@@ -6590,7 +6595,7 @@ class PyMethodCallNode(SimpleCallNode):
|
|
|
6590
6595
|
|
|
6591
6596
|
self_arg = code.funcstate.allocate_temp(py_object_type, manage_ref=True)
|
|
6592
6597
|
code.putln("%s = NULL;" % self_arg)
|
|
6593
|
-
arg_offset_cname = code.funcstate.allocate_temp(PyrexTypes.
|
|
6598
|
+
arg_offset_cname = code.funcstate.allocate_temp(PyrexTypes.c_uint_type, manage_ref=False)
|
|
6594
6599
|
code.putln("%s = 0;" % arg_offset_cname)
|
|
6595
6600
|
|
|
6596
6601
|
def attribute_is_likely_method(attr):
|
|
@@ -9291,6 +9296,9 @@ class DictNode(ExprNode):
|
|
|
9291
9296
|
len(self.key_value_pairs),
|
|
9292
9297
|
code.error_goto_if_null(self.result(), self.pos)))
|
|
9293
9298
|
self.generate_gotref(code)
|
|
9299
|
+
struct_scope = None
|
|
9300
|
+
else:
|
|
9301
|
+
struct_scope = self.type.scope
|
|
9294
9302
|
|
|
9295
9303
|
keys_seen = set()
|
|
9296
9304
|
key_type = None
|
|
@@ -9339,17 +9347,16 @@ class DictNode(ExprNode):
|
|
|
9339
9347
|
if self.exclude_null_values:
|
|
9340
9348
|
code.putln('}')
|
|
9341
9349
|
else:
|
|
9350
|
+
key = str(item.key.value)
|
|
9351
|
+
member = struct_scope.lookup_here(key)
|
|
9352
|
+
assert member is not None, "struct member %s not found, error was not handled during coercion" % key
|
|
9353
|
+
key_cname = member.cname
|
|
9354
|
+
value_cname = item.value.result()
|
|
9342
9355
|
if item.value.type.is_array:
|
|
9343
9356
|
code.putln("memcpy(%s.%s, %s, sizeof(%s));" % (
|
|
9344
|
-
|
|
9345
|
-
item.key.value,
|
|
9346
|
-
item.value.result(),
|
|
9347
|
-
item.value.result()))
|
|
9357
|
+
self.result(), key_cname, value_cname, value_cname))
|
|
9348
9358
|
else:
|
|
9349
|
-
code.putln("%s.%s = %s;" % (
|
|
9350
|
-
self.result(),
|
|
9351
|
-
item.key.value,
|
|
9352
|
-
item.value.result()))
|
|
9359
|
+
code.putln("%s.%s = %s;" % (self.result(), key_cname, value_cname))
|
|
9353
9360
|
item.generate_disposal_code(code)
|
|
9354
9361
|
item.free_temps(code)
|
|
9355
9362
|
|
|
@@ -1381,3 +1381,45 @@ class ControlFlowAnalysis(CythonTransform):
|
|
|
1381
1381
|
self.mark_assignment(node.operand, fake_rhs_expr)
|
|
1382
1382
|
self.visitchildren(node)
|
|
1383
1383
|
return node
|
|
1384
|
+
|
|
1385
|
+
def visit_BoolBinopNode(self, node):
|
|
1386
|
+
# Note - I don't believe BoolBinopResultNode needs special handling beyond this
|
|
1387
|
+
assert len(node.subexprs) == 2 # operand1 and operand2 only
|
|
1388
|
+
|
|
1389
|
+
next_block = self.flow.newblock()
|
|
1390
|
+
parent = self.flow.block
|
|
1391
|
+
|
|
1392
|
+
self._visit(node.operand1)
|
|
1393
|
+
|
|
1394
|
+
self.flow.nextblock()
|
|
1395
|
+
self._visit(node.operand2)
|
|
1396
|
+
if self.flow.block:
|
|
1397
|
+
self.flow.block.add_child(next_block)
|
|
1398
|
+
|
|
1399
|
+
parent.add_child(next_block)
|
|
1400
|
+
|
|
1401
|
+
if next_block.parents:
|
|
1402
|
+
self.flow.block = next_block
|
|
1403
|
+
else:
|
|
1404
|
+
self.flow.block = None
|
|
1405
|
+
return node
|
|
1406
|
+
|
|
1407
|
+
def visit_CondExprNode(self, node):
|
|
1408
|
+
assert len(node.subexprs) == 3
|
|
1409
|
+
self._visit(node.test)
|
|
1410
|
+
parent = self.flow.block
|
|
1411
|
+
next_block = self.flow.newblock()
|
|
1412
|
+
self.flow.nextblock()
|
|
1413
|
+
self._visit(node.true_val)
|
|
1414
|
+
if self.flow.block:
|
|
1415
|
+
self.flow.block.add_child(next_block)
|
|
1416
|
+
self.flow.nextblock(parent=parent)
|
|
1417
|
+
self._visit(node.false_val)
|
|
1418
|
+
if self.flow.block:
|
|
1419
|
+
self.flow.block.add_child(next_block)
|
|
1420
|
+
|
|
1421
|
+
if next_block.parents:
|
|
1422
|
+
self.flow.block = next_block
|
|
1423
|
+
else:
|
|
1424
|
+
self.flow.block = None
|
|
1425
|
+
return node
|
|
@@ -968,7 +968,7 @@ class ModuleNode(Nodes.Node, Nodes.BlockNode):
|
|
|
968
968
|
pass
|
|
969
969
|
elif type.is_struct_or_union or type.is_cpp_class:
|
|
970
970
|
self.generate_struct_union_predeclaration(entry, code)
|
|
971
|
-
elif type.is_ctuple and entry.used:
|
|
971
|
+
elif type.is_ctuple and not type.is_fused and entry.used:
|
|
972
972
|
self.generate_struct_union_predeclaration(entry.type.struct_entry, code)
|
|
973
973
|
elif type.is_extension_type:
|
|
974
974
|
self.generate_objstruct_predeclaration(type, code)
|
|
@@ -983,7 +983,7 @@ class ModuleNode(Nodes.Node, Nodes.BlockNode):
|
|
|
983
983
|
self.generate_enum_definition(entry, code)
|
|
984
984
|
elif type.is_struct_or_union:
|
|
985
985
|
self.generate_struct_union_definition(entry, code)
|
|
986
|
-
elif type.is_ctuple and entry.used:
|
|
986
|
+
elif type.is_ctuple and not type.is_fused and entry.used:
|
|
987
987
|
self.generate_struct_union_definition(entry.type.struct_entry, code)
|
|
988
988
|
elif type.is_cpp_class:
|
|
989
989
|
self.generate_cpp_class_definition(entry, code)
|
|
@@ -3126,6 +3126,11 @@ class DefNode(FuncDefNode):
|
|
|
3126
3126
|
if scope is None:
|
|
3127
3127
|
scope = cfunc.scope
|
|
3128
3128
|
cfunc_type = cfunc.type
|
|
3129
|
+
if cfunc_type.exception_check:
|
|
3130
|
+
# this ensures `legacy_implicit_noexcept` does not trigger
|
|
3131
|
+
# as it would result in a mismatch
|
|
3132
|
+
# (declaration with except, definition with implicit noexcept)
|
|
3133
|
+
has_explicit_exc_clause = True
|
|
3129
3134
|
if len(self.args) != len(cfunc_type.args) or cfunc_type.has_varargs:
|
|
3130
3135
|
error(self.pos, "wrong number of arguments")
|
|
3131
3136
|
error(cfunc.pos, "previous declaration here")
|
|
@@ -2450,6 +2450,9 @@ class OptimizeBuiltinCalls(Visitor.NodeRefCleanupMixin,
|
|
|
2450
2450
|
def _handle_simple_function_str(self, node, function, pos_args):
|
|
2451
2451
|
"""Optimize single argument calls to str().
|
|
2452
2452
|
"""
|
|
2453
|
+
if node.type is Builtin.unicode_type:
|
|
2454
|
+
# type already deduced as unicode (language_level=3)
|
|
2455
|
+
return self._handle_simple_function_unicode(node, function, pos_args)
|
|
2453
2456
|
if len(pos_args) != 1:
|
|
2454
2457
|
if len(pos_args) == 0:
|
|
2455
2458
|
return ExprNodes.StringNode(node.pos, value=EncodedString(), constant_result='')
|
|
@@ -3516,7 +3519,8 @@ class OptimizeBuiltinCalls(Visitor.NodeRefCleanupMixin,
|
|
|
3516
3519
|
if not result:
|
|
3517
3520
|
return node
|
|
3518
3521
|
func_cname, utility_code, extra_args, num_type = result
|
|
3519
|
-
|
|
3522
|
+
assert all([arg.type.is_pyobject for arg in args])
|
|
3523
|
+
args = list(args) + extra_args
|
|
3520
3524
|
|
|
3521
3525
|
call_node = self._substitute_method_call(
|
|
3522
3526
|
node, function,
|