0.27: Features added * Extension module initialisation follows `PEP 489 <https://www.python.org/dev/peps/pep-0489/>`_ in CPython 3.5+, which resolves several differences with regard to normal Python modules. This makes the global names ``__file__`` and ``__path__`` correctly available to module level code and improves the support for module-level relative imports. * Asynchronous generators (`PEP 525 <https://www.python.org/dev/peps/pep-0525/>`_) and asynchronous comprehensions (`PEP 530 <https://www.python.org/dev/peps/pep-0530/>`_) have been implemented. Note that async generators require finalisation support in order to allow for asynchronous operations during cleanup, which is only available in CPython 3.6+. All other functionality has been backported as usual. * Variable annotations are now parsed according to `PEP 526 <https://www.python.org/dev/peps/pep-0526/>`_. Cython types (e.g. ``cython.int``) are evaluated as C type declarations and everything else as Python types. This can be disabled with the directive ``annotation_typing=False``. Note that most complex PEP-484 style annotations are currently ignored. This will change in future releases. * Extension types (also in pure Python mode) can implement the normal special methods ``__eq__``, ``__lt__`` etc. for comparisons instead of the low-level ``__richcmp__`` method. * New decorator ``@cython.exceptval(x=None, check=False)`` that makes the signature declarations ``except x``, ``except? x`` and ``except *`` available to pure Python code. Original patch by Antonio Cuni. * Signature annotations are now included in the signature docstring generated by the ``embedsignature`` directive. * The gdb support for Python code (``libpython.py``) was updated to the latest version in CPython 3.7 (git rev 5fe59f8). * The compiler tries to find a usable exception return value for cdef functions with ``except *`` if the returned type allows it. Note that this feature is subject to safety limitations, so it is still better to provide an explicit declaration. * C functions can be assigned to function pointers with a compatible exception declaration, not only with exact matches. A side-effect is that certain compatible signature overrides are now allowed and some more mismatches of exception signatures are now detected and rejected as errors that were not detected before. * The IPython/Jupyter magic integration has a new option ``%%cython --pgo`` for profile guided optimisation. It compiles the cell with PGO settings for the C compiler, executes it to generate a runtime profile, and then compiles it again using that profile for C compiler optimisation. Currently only tested with gcc. * ``len(memoryview)`` can be used in nogil sections to get the size of the first dimension of a memory view (``shape[0]``). * C++ classes can now contain (properly refcounted) Python objects. * NumPy dtype subarrays are now accessible through the C-API. * Resolves several issues with PyPy and uses faster async slots in PyPy3. Bugs fixed * Extension types that were cimported from other Cython modules could disagree about the order of fused cdef methods in their call table. This could lead to wrong methods being called and potentially also crashes. The fix required changes to the ordering of fused methods in the call table, which may break existing compiled modules that call fused cdef methods across module boundaries, if these methods were implemented in a different order than they were declared in the corresponding .pxd file. * The exception state handling in generators and coroutines could lead to exceptions in the caller being lost if an exception was raised and handled inside of the coroutine when yielding. * Loops over ``range(enum)`` were not converted into C for-loops. Note that it is still recommended to use an explicit cast to a C integer type in this case. * Error positions of names (e.g. variables) were incorrectly reported after the name and not at the beginning of the name. * Compile time ``DEF`` assignments were evaluated even when they occur inside of falsy ``IF`` blocks. * Disabling the line tracing from a trace function could fail. * Several issues with the Pythran integration were resolved. * abs(signed int) now returns a signed rather than unsigned int. * Reading ``frame.f_locals`` of a Cython function (e.g. from a debugger or profiler could modify the module globals. * Buffer type mismatches in the NumPy buffer support could leak a reference to the buffer owner. * Using the "is_f_contig" and "is_c_contig" memoryview methods together could leave one of them undeclared. * Compilation failed if the for-in-range loop target was not a variable but a more complex expression, e.g. an item assignment. * Compile time evaluations of (partially) constant f-strings could show incorrect results. * Escape sequences in raw f-strings (``fr'...'``) were resolved instead of passing them through as expected. * Some ref-counting issues in buffer error handling have been resolved. Other changes * Type declarations in signature annotations are now parsed according to `PEP 484 <https://www.python.org/dev/peps/pep-0484/>`_ typing. Only Cython types (e.g. ``cython.int``) and Python builtin types are currently considered as type declarations. Everything else is ignored, but this will change in a future Cython release. * The directive ``annotation_typing`` is now ``True`` by default, which enables parsing type declarations from annotations. * This release no longer supports Python 3.2.
531 lines
23 KiB
Text
531 lines
23 KiB
Text
@comment $NetBSD: PLIST,v 1.22 2017/09/30 09:53:23 adam Exp $
|
|
bin/cygdb${PYVERSSUFFIX}
|
|
bin/cython${PYVERSSUFFIX}
|
|
bin/cythonize${PYVERSSUFFIX}
|
|
${PYSITELIB}/${EGG_INFODIR}/PKG-INFO
|
|
${PYSITELIB}/${EGG_INFODIR}/SOURCES.txt
|
|
${PYSITELIB}/${EGG_INFODIR}/dependency_links.txt
|
|
${PYSITELIB}/${EGG_INFODIR}/entry_points.txt
|
|
${PYSITELIB}/${EGG_INFODIR}/not-zip-safe
|
|
${PYSITELIB}/${EGG_INFODIR}/top_level.txt
|
|
${PYSITELIB}/Cython/Build/BuildExecutable.py
|
|
${PYSITELIB}/Cython/Build/BuildExecutable.pyc
|
|
${PYSITELIB}/Cython/Build/BuildExecutable.pyo
|
|
${PYSITELIB}/Cython/Build/Cythonize.py
|
|
${PYSITELIB}/Cython/Build/Cythonize.pyc
|
|
${PYSITELIB}/Cython/Build/Cythonize.pyo
|
|
${PYSITELIB}/Cython/Build/Dependencies.py
|
|
${PYSITELIB}/Cython/Build/Dependencies.pyc
|
|
${PYSITELIB}/Cython/Build/Dependencies.pyo
|
|
${PYSITELIB}/Cython/Build/Distutils.py
|
|
${PYSITELIB}/Cython/Build/Distutils.pyc
|
|
${PYSITELIB}/Cython/Build/Distutils.pyo
|
|
${PYSITELIB}/Cython/Build/Inline.py
|
|
${PYSITELIB}/Cython/Build/Inline.pyc
|
|
${PYSITELIB}/Cython/Build/Inline.pyo
|
|
${PYSITELIB}/Cython/Build/IpythonMagic.py
|
|
${PYSITELIB}/Cython/Build/IpythonMagic.pyc
|
|
${PYSITELIB}/Cython/Build/IpythonMagic.pyo
|
|
${PYSITELIB}/Cython/Build/Tests/TestInline.py
|
|
${PYSITELIB}/Cython/Build/Tests/TestInline.pyc
|
|
${PYSITELIB}/Cython/Build/Tests/TestInline.pyo
|
|
${PYSITELIB}/Cython/Build/Tests/TestIpythonMagic.py
|
|
${PYSITELIB}/Cython/Build/Tests/TestIpythonMagic.pyc
|
|
${PYSITELIB}/Cython/Build/Tests/TestIpythonMagic.pyo
|
|
${PYSITELIB}/Cython/Build/Tests/TestStripLiterals.py
|
|
${PYSITELIB}/Cython/Build/Tests/TestStripLiterals.pyc
|
|
${PYSITELIB}/Cython/Build/Tests/TestStripLiterals.pyo
|
|
${PYSITELIB}/Cython/Build/Tests/__init__.py
|
|
${PYSITELIB}/Cython/Build/Tests/__init__.pyc
|
|
${PYSITELIB}/Cython/Build/Tests/__init__.pyo
|
|
${PYSITELIB}/Cython/Build/__init__.py
|
|
${PYSITELIB}/Cython/Build/__init__.pyc
|
|
${PYSITELIB}/Cython/Build/__init__.pyo
|
|
${PYSITELIB}/Cython/CodeWriter.py
|
|
${PYSITELIB}/Cython/CodeWriter.pyc
|
|
${PYSITELIB}/Cython/CodeWriter.pyo
|
|
${PYSITELIB}/Cython/Compiler/AnalysedTreeTransforms.py
|
|
${PYSITELIB}/Cython/Compiler/AnalysedTreeTransforms.pyc
|
|
${PYSITELIB}/Cython/Compiler/AnalysedTreeTransforms.pyo
|
|
${PYSITELIB}/Cython/Compiler/Annotate.py
|
|
${PYSITELIB}/Cython/Compiler/Annotate.pyc
|
|
${PYSITELIB}/Cython/Compiler/Annotate.pyo
|
|
${PYSITELIB}/Cython/Compiler/AutoDocTransforms.py
|
|
${PYSITELIB}/Cython/Compiler/AutoDocTransforms.pyc
|
|
${PYSITELIB}/Cython/Compiler/AutoDocTransforms.pyo
|
|
${PYSITELIB}/Cython/Compiler/Buffer.py
|
|
${PYSITELIB}/Cython/Compiler/Buffer.pyc
|
|
${PYSITELIB}/Cython/Compiler/Buffer.pyo
|
|
${PYSITELIB}/Cython/Compiler/Builtin.py
|
|
${PYSITELIB}/Cython/Compiler/Builtin.pyc
|
|
${PYSITELIB}/Cython/Compiler/Builtin.pyo
|
|
${PYSITELIB}/Cython/Compiler/CmdLine.py
|
|
${PYSITELIB}/Cython/Compiler/CmdLine.pyc
|
|
${PYSITELIB}/Cython/Compiler/CmdLine.pyo
|
|
${PYSITELIB}/Cython/Compiler/Code.pxd
|
|
${PYSITELIB}/Cython/Compiler/Code.py
|
|
${PYSITELIB}/Cython/Compiler/Code.pyc
|
|
${PYSITELIB}/Cython/Compiler/Code.pyo
|
|
${PYSITELIB}/Cython/Compiler/Code.so
|
|
${PYSITELIB}/Cython/Compiler/CodeGeneration.py
|
|
${PYSITELIB}/Cython/Compiler/CodeGeneration.pyc
|
|
${PYSITELIB}/Cython/Compiler/CodeGeneration.pyo
|
|
${PYSITELIB}/Cython/Compiler/CythonScope.py
|
|
${PYSITELIB}/Cython/Compiler/CythonScope.pyc
|
|
${PYSITELIB}/Cython/Compiler/CythonScope.pyo
|
|
${PYSITELIB}/Cython/Compiler/DebugFlags.py
|
|
${PYSITELIB}/Cython/Compiler/DebugFlags.pyc
|
|
${PYSITELIB}/Cython/Compiler/DebugFlags.pyo
|
|
${PYSITELIB}/Cython/Compiler/Errors.py
|
|
${PYSITELIB}/Cython/Compiler/Errors.pyc
|
|
${PYSITELIB}/Cython/Compiler/Errors.pyo
|
|
${PYSITELIB}/Cython/Compiler/ExprNodes.py
|
|
${PYSITELIB}/Cython/Compiler/ExprNodes.pyc
|
|
${PYSITELIB}/Cython/Compiler/ExprNodes.pyo
|
|
${PYSITELIB}/Cython/Compiler/FlowControl.pxd
|
|
${PYSITELIB}/Cython/Compiler/FlowControl.py
|
|
${PYSITELIB}/Cython/Compiler/FlowControl.pyc
|
|
${PYSITELIB}/Cython/Compiler/FlowControl.pyo
|
|
${PYSITELIB}/Cython/Compiler/FlowControl.so
|
|
${PYSITELIB}/Cython/Compiler/FusedNode.py
|
|
${PYSITELIB}/Cython/Compiler/FusedNode.pyc
|
|
${PYSITELIB}/Cython/Compiler/FusedNode.pyo
|
|
${PYSITELIB}/Cython/Compiler/Future.py
|
|
${PYSITELIB}/Cython/Compiler/Future.pyc
|
|
${PYSITELIB}/Cython/Compiler/Future.pyo
|
|
${PYSITELIB}/Cython/Compiler/Interpreter.py
|
|
${PYSITELIB}/Cython/Compiler/Interpreter.pyc
|
|
${PYSITELIB}/Cython/Compiler/Interpreter.pyo
|
|
${PYSITELIB}/Cython/Compiler/Lexicon.py
|
|
${PYSITELIB}/Cython/Compiler/Lexicon.pyc
|
|
${PYSITELIB}/Cython/Compiler/Lexicon.pyo
|
|
${PYSITELIB}/Cython/Compiler/Lexicon.so
|
|
${PYSITELIB}/Cython/Compiler/Main.py
|
|
${PYSITELIB}/Cython/Compiler/Main.pyc
|
|
${PYSITELIB}/Cython/Compiler/Main.pyo
|
|
${PYSITELIB}/Cython/Compiler/MemoryView.py
|
|
${PYSITELIB}/Cython/Compiler/MemoryView.pyc
|
|
${PYSITELIB}/Cython/Compiler/MemoryView.pyo
|
|
${PYSITELIB}/Cython/Compiler/ModuleNode.py
|
|
${PYSITELIB}/Cython/Compiler/ModuleNode.pyc
|
|
${PYSITELIB}/Cython/Compiler/ModuleNode.pyo
|
|
${PYSITELIB}/Cython/Compiler/Naming.py
|
|
${PYSITELIB}/Cython/Compiler/Naming.pyc
|
|
${PYSITELIB}/Cython/Compiler/Naming.pyo
|
|
${PYSITELIB}/Cython/Compiler/Nodes.py
|
|
${PYSITELIB}/Cython/Compiler/Nodes.pyc
|
|
${PYSITELIB}/Cython/Compiler/Nodes.pyo
|
|
${PYSITELIB}/Cython/Compiler/Optimize.py
|
|
${PYSITELIB}/Cython/Compiler/Optimize.pyc
|
|
${PYSITELIB}/Cython/Compiler/Optimize.pyo
|
|
${PYSITELIB}/Cython/Compiler/Options.py
|
|
${PYSITELIB}/Cython/Compiler/Options.pyc
|
|
${PYSITELIB}/Cython/Compiler/Options.pyo
|
|
${PYSITELIB}/Cython/Compiler/ParseTreeTransforms.pxd
|
|
${PYSITELIB}/Cython/Compiler/ParseTreeTransforms.py
|
|
${PYSITELIB}/Cython/Compiler/ParseTreeTransforms.pyc
|
|
${PYSITELIB}/Cython/Compiler/ParseTreeTransforms.pyo
|
|
${PYSITELIB}/Cython/Compiler/Parsing.pxd
|
|
${PYSITELIB}/Cython/Compiler/Parsing.py
|
|
${PYSITELIB}/Cython/Compiler/Parsing.pyc
|
|
${PYSITELIB}/Cython/Compiler/Parsing.pyo
|
|
${PYSITELIB}/Cython/Compiler/Parsing.so
|
|
${PYSITELIB}/Cython/Compiler/Pipeline.py
|
|
${PYSITELIB}/Cython/Compiler/Pipeline.pyc
|
|
${PYSITELIB}/Cython/Compiler/Pipeline.pyo
|
|
${PYSITELIB}/Cython/Compiler/PyrexTypes.py
|
|
${PYSITELIB}/Cython/Compiler/PyrexTypes.pyc
|
|
${PYSITELIB}/Cython/Compiler/PyrexTypes.pyo
|
|
${PYSITELIB}/Cython/Compiler/Pythran.py
|
|
${PYSITELIB}/Cython/Compiler/Pythran.pyc
|
|
${PYSITELIB}/Cython/Compiler/Pythran.pyo
|
|
${PYSITELIB}/Cython/Compiler/Pythran.so
|
|
${PYSITELIB}/Cython/Compiler/Scanning.pxd
|
|
${PYSITELIB}/Cython/Compiler/Scanning.py
|
|
${PYSITELIB}/Cython/Compiler/Scanning.pyc
|
|
${PYSITELIB}/Cython/Compiler/Scanning.pyo
|
|
${PYSITELIB}/Cython/Compiler/Scanning.so
|
|
${PYSITELIB}/Cython/Compiler/StringEncoding.py
|
|
${PYSITELIB}/Cython/Compiler/StringEncoding.pyc
|
|
${PYSITELIB}/Cython/Compiler/StringEncoding.pyo
|
|
${PYSITELIB}/Cython/Compiler/Symtab.py
|
|
${PYSITELIB}/Cython/Compiler/Symtab.pyc
|
|
${PYSITELIB}/Cython/Compiler/Symtab.pyo
|
|
${PYSITELIB}/Cython/Compiler/Tests/TestBuffer.py
|
|
${PYSITELIB}/Cython/Compiler/Tests/TestBuffer.pyc
|
|
${PYSITELIB}/Cython/Compiler/Tests/TestBuffer.pyo
|
|
${PYSITELIB}/Cython/Compiler/Tests/TestCmdLine.py
|
|
${PYSITELIB}/Cython/Compiler/Tests/TestCmdLine.pyc
|
|
${PYSITELIB}/Cython/Compiler/Tests/TestCmdLine.pyo
|
|
${PYSITELIB}/Cython/Compiler/Tests/TestFlowControl.py
|
|
${PYSITELIB}/Cython/Compiler/Tests/TestFlowControl.pyc
|
|
${PYSITELIB}/Cython/Compiler/Tests/TestFlowControl.pyo
|
|
${PYSITELIB}/Cython/Compiler/Tests/TestGrammar.py
|
|
${PYSITELIB}/Cython/Compiler/Tests/TestGrammar.pyc
|
|
${PYSITELIB}/Cython/Compiler/Tests/TestGrammar.pyo
|
|
${PYSITELIB}/Cython/Compiler/Tests/TestMemView.py
|
|
${PYSITELIB}/Cython/Compiler/Tests/TestMemView.pyc
|
|
${PYSITELIB}/Cython/Compiler/Tests/TestMemView.pyo
|
|
${PYSITELIB}/Cython/Compiler/Tests/TestParseTreeTransforms.py
|
|
${PYSITELIB}/Cython/Compiler/Tests/TestParseTreeTransforms.pyc
|
|
${PYSITELIB}/Cython/Compiler/Tests/TestParseTreeTransforms.pyo
|
|
${PYSITELIB}/Cython/Compiler/Tests/TestSignatureMatching.py
|
|
${PYSITELIB}/Cython/Compiler/Tests/TestSignatureMatching.pyc
|
|
${PYSITELIB}/Cython/Compiler/Tests/TestSignatureMatching.pyo
|
|
${PYSITELIB}/Cython/Compiler/Tests/TestTreeFragment.py
|
|
${PYSITELIB}/Cython/Compiler/Tests/TestTreeFragment.pyc
|
|
${PYSITELIB}/Cython/Compiler/Tests/TestTreeFragment.pyo
|
|
${PYSITELIB}/Cython/Compiler/Tests/TestTreePath.py
|
|
${PYSITELIB}/Cython/Compiler/Tests/TestTreePath.pyc
|
|
${PYSITELIB}/Cython/Compiler/Tests/TestTreePath.pyo
|
|
${PYSITELIB}/Cython/Compiler/Tests/TestTypes.py
|
|
${PYSITELIB}/Cython/Compiler/Tests/TestTypes.pyc
|
|
${PYSITELIB}/Cython/Compiler/Tests/TestTypes.pyo
|
|
${PYSITELIB}/Cython/Compiler/Tests/TestUtilityLoad.py
|
|
${PYSITELIB}/Cython/Compiler/Tests/TestUtilityLoad.pyc
|
|
${PYSITELIB}/Cython/Compiler/Tests/TestUtilityLoad.pyo
|
|
${PYSITELIB}/Cython/Compiler/Tests/TestVisitor.py
|
|
${PYSITELIB}/Cython/Compiler/Tests/TestVisitor.pyc
|
|
${PYSITELIB}/Cython/Compiler/Tests/TestVisitor.pyo
|
|
${PYSITELIB}/Cython/Compiler/Tests/__init__.py
|
|
${PYSITELIB}/Cython/Compiler/Tests/__init__.pyc
|
|
${PYSITELIB}/Cython/Compiler/Tests/__init__.pyo
|
|
${PYSITELIB}/Cython/Compiler/TreeFragment.py
|
|
${PYSITELIB}/Cython/Compiler/TreeFragment.pyc
|
|
${PYSITELIB}/Cython/Compiler/TreeFragment.pyo
|
|
${PYSITELIB}/Cython/Compiler/TreePath.py
|
|
${PYSITELIB}/Cython/Compiler/TreePath.pyc
|
|
${PYSITELIB}/Cython/Compiler/TreePath.pyo
|
|
${PYSITELIB}/Cython/Compiler/TypeInference.py
|
|
${PYSITELIB}/Cython/Compiler/TypeInference.pyc
|
|
${PYSITELIB}/Cython/Compiler/TypeInference.pyo
|
|
${PYSITELIB}/Cython/Compiler/TypeSlots.py
|
|
${PYSITELIB}/Cython/Compiler/TypeSlots.pyc
|
|
${PYSITELIB}/Cython/Compiler/TypeSlots.pyo
|
|
${PYSITELIB}/Cython/Compiler/UtilNodes.py
|
|
${PYSITELIB}/Cython/Compiler/UtilNodes.pyc
|
|
${PYSITELIB}/Cython/Compiler/UtilNodes.pyo
|
|
${PYSITELIB}/Cython/Compiler/UtilityCode.py
|
|
${PYSITELIB}/Cython/Compiler/UtilityCode.pyc
|
|
${PYSITELIB}/Cython/Compiler/UtilityCode.pyo
|
|
${PYSITELIB}/Cython/Compiler/Version.py
|
|
${PYSITELIB}/Cython/Compiler/Version.pyc
|
|
${PYSITELIB}/Cython/Compiler/Version.pyo
|
|
${PYSITELIB}/Cython/Compiler/Visitor.pxd
|
|
${PYSITELIB}/Cython/Compiler/Visitor.py
|
|
${PYSITELIB}/Cython/Compiler/Visitor.pyc
|
|
${PYSITELIB}/Cython/Compiler/Visitor.pyo
|
|
${PYSITELIB}/Cython/Compiler/Visitor.so
|
|
${PYSITELIB}/Cython/Compiler/__init__.py
|
|
${PYSITELIB}/Cython/Compiler/__init__.pyc
|
|
${PYSITELIB}/Cython/Compiler/__init__.pyo
|
|
${PYSITELIB}/Cython/Coverage.py
|
|
${PYSITELIB}/Cython/Coverage.pyc
|
|
${PYSITELIB}/Cython/Coverage.pyo
|
|
${PYSITELIB}/Cython/Debugger/Cygdb.py
|
|
${PYSITELIB}/Cython/Debugger/Cygdb.pyc
|
|
${PYSITELIB}/Cython/Debugger/Cygdb.pyo
|
|
${PYSITELIB}/Cython/Debugger/DebugWriter.py
|
|
${PYSITELIB}/Cython/Debugger/DebugWriter.pyc
|
|
${PYSITELIB}/Cython/Debugger/DebugWriter.pyo
|
|
${PYSITELIB}/Cython/Debugger/Tests/TestLibCython.py
|
|
${PYSITELIB}/Cython/Debugger/Tests/TestLibCython.pyc
|
|
${PYSITELIB}/Cython/Debugger/Tests/TestLibCython.pyo
|
|
${PYSITELIB}/Cython/Debugger/Tests/__init__.py
|
|
${PYSITELIB}/Cython/Debugger/Tests/__init__.pyc
|
|
${PYSITELIB}/Cython/Debugger/Tests/__init__.pyo
|
|
${PYSITELIB}/Cython/Debugger/Tests/cfuncs.c
|
|
${PYSITELIB}/Cython/Debugger/Tests/codefile
|
|
${PYSITELIB}/Cython/Debugger/Tests/test_libcython_in_gdb.py
|
|
${PYSITELIB}/Cython/Debugger/Tests/test_libcython_in_gdb.pyc
|
|
${PYSITELIB}/Cython/Debugger/Tests/test_libcython_in_gdb.pyo
|
|
${PYSITELIB}/Cython/Debugger/Tests/test_libpython_in_gdb.py
|
|
${PYSITELIB}/Cython/Debugger/Tests/test_libpython_in_gdb.pyc
|
|
${PYSITELIB}/Cython/Debugger/Tests/test_libpython_in_gdb.pyo
|
|
${PYSITELIB}/Cython/Debugger/__init__.py
|
|
${PYSITELIB}/Cython/Debugger/__init__.pyc
|
|
${PYSITELIB}/Cython/Debugger/__init__.pyo
|
|
${PYSITELIB}/Cython/Debugger/libcython.py
|
|
${PYSITELIB}/Cython/Debugger/libcython.pyc
|
|
${PYSITELIB}/Cython/Debugger/libcython.pyo
|
|
${PYSITELIB}/Cython/Debugger/libpython.py
|
|
${PYSITELIB}/Cython/Debugger/libpython.pyc
|
|
${PYSITELIB}/Cython/Debugger/libpython.pyo
|
|
${PYSITELIB}/Cython/Debugging.py
|
|
${PYSITELIB}/Cython/Debugging.pyc
|
|
${PYSITELIB}/Cython/Debugging.pyo
|
|
${PYSITELIB}/Cython/Distutils/__init__.py
|
|
${PYSITELIB}/Cython/Distutils/__init__.pyc
|
|
${PYSITELIB}/Cython/Distutils/__init__.pyo
|
|
${PYSITELIB}/Cython/Distutils/build_ext.py
|
|
${PYSITELIB}/Cython/Distutils/build_ext.pyc
|
|
${PYSITELIB}/Cython/Distutils/build_ext.pyo
|
|
${PYSITELIB}/Cython/Distutils/extension.py
|
|
${PYSITELIB}/Cython/Distutils/extension.pyc
|
|
${PYSITELIB}/Cython/Distutils/extension.pyo
|
|
${PYSITELIB}/Cython/Distutils/old_build_ext.py
|
|
${PYSITELIB}/Cython/Distutils/old_build_ext.pyc
|
|
${PYSITELIB}/Cython/Distutils/old_build_ext.pyo
|
|
${PYSITELIB}/Cython/Includes/Deprecated/python.pxd
|
|
${PYSITELIB}/Cython/Includes/Deprecated/python2.5.pxd
|
|
${PYSITELIB}/Cython/Includes/Deprecated/python_bool.pxd
|
|
${PYSITELIB}/Cython/Includes/Deprecated/python_buffer.pxd
|
|
${PYSITELIB}/Cython/Includes/Deprecated/python_bytes.pxd
|
|
${PYSITELIB}/Cython/Includes/Deprecated/python_cobject.pxd
|
|
${PYSITELIB}/Cython/Includes/Deprecated/python_complex.pxd
|
|
${PYSITELIB}/Cython/Includes/Deprecated/python_dict.pxd
|
|
${PYSITELIB}/Cython/Includes/Deprecated/python_exc.pxd
|
|
${PYSITELIB}/Cython/Includes/Deprecated/python_float.pxd
|
|
${PYSITELIB}/Cython/Includes/Deprecated/python_function.pxd
|
|
${PYSITELIB}/Cython/Includes/Deprecated/python_getargs.pxd
|
|
${PYSITELIB}/Cython/Includes/Deprecated/python_instance.pxd
|
|
${PYSITELIB}/Cython/Includes/Deprecated/python_int.pxd
|
|
${PYSITELIB}/Cython/Includes/Deprecated/python_iterator.pxd
|
|
${PYSITELIB}/Cython/Includes/Deprecated/python_list.pxd
|
|
${PYSITELIB}/Cython/Includes/Deprecated/python_long.pxd
|
|
${PYSITELIB}/Cython/Includes/Deprecated/python_mapping.pxd
|
|
${PYSITELIB}/Cython/Includes/Deprecated/python_mem.pxd
|
|
${PYSITELIB}/Cython/Includes/Deprecated/python_method.pxd
|
|
${PYSITELIB}/Cython/Includes/Deprecated/python_module.pxd
|
|
${PYSITELIB}/Cython/Includes/Deprecated/python_number.pxd
|
|
${PYSITELIB}/Cython/Includes/Deprecated/python_object.pxd
|
|
${PYSITELIB}/Cython/Includes/Deprecated/python_oldbuffer.pxd
|
|
${PYSITELIB}/Cython/Includes/Deprecated/python_pycapsule.pxd
|
|
${PYSITELIB}/Cython/Includes/Deprecated/python_ref.pxd
|
|
${PYSITELIB}/Cython/Includes/Deprecated/python_sequence.pxd
|
|
${PYSITELIB}/Cython/Includes/Deprecated/python_set.pxd
|
|
${PYSITELIB}/Cython/Includes/Deprecated/python_string.pxd
|
|
${PYSITELIB}/Cython/Includes/Deprecated/python_tuple.pxd
|
|
${PYSITELIB}/Cython/Includes/Deprecated/python_type.pxd
|
|
${PYSITELIB}/Cython/Includes/Deprecated/python_unicode.pxd
|
|
${PYSITELIB}/Cython/Includes/Deprecated/python_version.pxd
|
|
${PYSITELIB}/Cython/Includes/Deprecated/python_weakref.pxd
|
|
${PYSITELIB}/Cython/Includes/Deprecated/stdio.pxd
|
|
${PYSITELIB}/Cython/Includes/Deprecated/stdlib.pxd
|
|
${PYSITELIB}/Cython/Includes/Deprecated/stl.pxd
|
|
${PYSITELIB}/Cython/Includes/cpython/__init__.pxd
|
|
${PYSITELIB}/Cython/Includes/cpython/array.pxd
|
|
${PYSITELIB}/Cython/Includes/cpython/bool.pxd
|
|
${PYSITELIB}/Cython/Includes/cpython/buffer.pxd
|
|
${PYSITELIB}/Cython/Includes/cpython/bytes.pxd
|
|
${PYSITELIB}/Cython/Includes/cpython/cobject.pxd
|
|
${PYSITELIB}/Cython/Includes/cpython/complex.pxd
|
|
${PYSITELIB}/Cython/Includes/cpython/datetime.pxd
|
|
${PYSITELIB}/Cython/Includes/cpython/dict.pxd
|
|
${PYSITELIB}/Cython/Includes/cpython/exc.pxd
|
|
${PYSITELIB}/Cython/Includes/cpython/float.pxd
|
|
${PYSITELIB}/Cython/Includes/cpython/function.pxd
|
|
${PYSITELIB}/Cython/Includes/cpython/getargs.pxd
|
|
${PYSITELIB}/Cython/Includes/cpython/instance.pxd
|
|
${PYSITELIB}/Cython/Includes/cpython/int.pxd
|
|
${PYSITELIB}/Cython/Includes/cpython/iterator.pxd
|
|
${PYSITELIB}/Cython/Includes/cpython/list.pxd
|
|
${PYSITELIB}/Cython/Includes/cpython/long.pxd
|
|
${PYSITELIB}/Cython/Includes/cpython/longintrepr.pxd
|
|
${PYSITELIB}/Cython/Includes/cpython/mapping.pxd
|
|
${PYSITELIB}/Cython/Includes/cpython/mem.pxd
|
|
${PYSITELIB}/Cython/Includes/cpython/method.pxd
|
|
${PYSITELIB}/Cython/Includes/cpython/module.pxd
|
|
${PYSITELIB}/Cython/Includes/cpython/number.pxd
|
|
${PYSITELIB}/Cython/Includes/cpython/object.pxd
|
|
${PYSITELIB}/Cython/Includes/cpython/oldbuffer.pxd
|
|
${PYSITELIB}/Cython/Includes/cpython/pycapsule.pxd
|
|
${PYSITELIB}/Cython/Includes/cpython/pystate.pxd
|
|
${PYSITELIB}/Cython/Includes/cpython/pythread.pxd
|
|
${PYSITELIB}/Cython/Includes/cpython/ref.pxd
|
|
${PYSITELIB}/Cython/Includes/cpython/sequence.pxd
|
|
${PYSITELIB}/Cython/Includes/cpython/set.pxd
|
|
${PYSITELIB}/Cython/Includes/cpython/slice.pxd
|
|
${PYSITELIB}/Cython/Includes/cpython/string.pxd
|
|
${PYSITELIB}/Cython/Includes/cpython/tuple.pxd
|
|
${PYSITELIB}/Cython/Includes/cpython/type.pxd
|
|
${PYSITELIB}/Cython/Includes/cpython/unicode.pxd
|
|
${PYSITELIB}/Cython/Includes/cpython/version.pxd
|
|
${PYSITELIB}/Cython/Includes/cpython/weakref.pxd
|
|
${PYSITELIB}/Cython/Includes/libc/__init__.pxd
|
|
${PYSITELIB}/Cython/Includes/libc/errno.pxd
|
|
${PYSITELIB}/Cython/Includes/libc/float.pxd
|
|
${PYSITELIB}/Cython/Includes/libc/limits.pxd
|
|
${PYSITELIB}/Cython/Includes/libc/locale.pxd
|
|
${PYSITELIB}/Cython/Includes/libc/math.pxd
|
|
${PYSITELIB}/Cython/Includes/libc/setjmp.pxd
|
|
${PYSITELIB}/Cython/Includes/libc/signal.pxd
|
|
${PYSITELIB}/Cython/Includes/libc/stddef.pxd
|
|
${PYSITELIB}/Cython/Includes/libc/stdint.pxd
|
|
${PYSITELIB}/Cython/Includes/libc/stdio.pxd
|
|
${PYSITELIB}/Cython/Includes/libc/stdlib.pxd
|
|
${PYSITELIB}/Cython/Includes/libc/string.pxd
|
|
${PYSITELIB}/Cython/Includes/libc/time.pxd
|
|
${PYSITELIB}/Cython/Includes/libcpp/__init__.pxd
|
|
${PYSITELIB}/Cython/Includes/libcpp/algorithm.pxd
|
|
${PYSITELIB}/Cython/Includes/libcpp/cast.pxd
|
|
${PYSITELIB}/Cython/Includes/libcpp/complex.pxd
|
|
${PYSITELIB}/Cython/Includes/libcpp/deque.pxd
|
|
${PYSITELIB}/Cython/Includes/libcpp/functional.pxd
|
|
${PYSITELIB}/Cython/Includes/libcpp/iterator.pxd
|
|
${PYSITELIB}/Cython/Includes/libcpp/limits.pxd
|
|
${PYSITELIB}/Cython/Includes/libcpp/list.pxd
|
|
${PYSITELIB}/Cython/Includes/libcpp/map.pxd
|
|
${PYSITELIB}/Cython/Includes/libcpp/memory.pxd
|
|
${PYSITELIB}/Cython/Includes/libcpp/pair.pxd
|
|
${PYSITELIB}/Cython/Includes/libcpp/queue.pxd
|
|
${PYSITELIB}/Cython/Includes/libcpp/set.pxd
|
|
${PYSITELIB}/Cython/Includes/libcpp/stack.pxd
|
|
${PYSITELIB}/Cython/Includes/libcpp/string.pxd
|
|
${PYSITELIB}/Cython/Includes/libcpp/typeindex.pxd
|
|
${PYSITELIB}/Cython/Includes/libcpp/typeinfo.pxd
|
|
${PYSITELIB}/Cython/Includes/libcpp/unordered_map.pxd
|
|
${PYSITELIB}/Cython/Includes/libcpp/unordered_set.pxd
|
|
${PYSITELIB}/Cython/Includes/libcpp/utility.pxd
|
|
${PYSITELIB}/Cython/Includes/libcpp/vector.pxd
|
|
${PYSITELIB}/Cython/Includes/numpy/__init__.pxd
|
|
${PYSITELIB}/Cython/Includes/numpy/math.pxd
|
|
${PYSITELIB}/Cython/Includes/openmp.pxd
|
|
${PYSITELIB}/Cython/Includes/posix/__init__.pxd
|
|
${PYSITELIB}/Cython/Includes/posix/dlfcn.pxd
|
|
${PYSITELIB}/Cython/Includes/posix/fcntl.pxd
|
|
${PYSITELIB}/Cython/Includes/posix/ioctl.pxd
|
|
${PYSITELIB}/Cython/Includes/posix/mman.pxd
|
|
${PYSITELIB}/Cython/Includes/posix/resource.pxd
|
|
${PYSITELIB}/Cython/Includes/posix/select.pxd
|
|
${PYSITELIB}/Cython/Includes/posix/signal.pxd
|
|
${PYSITELIB}/Cython/Includes/posix/stat.pxd
|
|
${PYSITELIB}/Cython/Includes/posix/stdio.pxd
|
|
${PYSITELIB}/Cython/Includes/posix/stdlib.pxd
|
|
${PYSITELIB}/Cython/Includes/posix/strings.pxd
|
|
${PYSITELIB}/Cython/Includes/posix/time.pxd
|
|
${PYSITELIB}/Cython/Includes/posix/types.pxd
|
|
${PYSITELIB}/Cython/Includes/posix/unistd.pxd
|
|
${PYSITELIB}/Cython/Includes/posix/wait.pxd
|
|
${PYSITELIB}/Cython/Plex/Actions.pxd
|
|
${PYSITELIB}/Cython/Plex/Actions.py
|
|
${PYSITELIB}/Cython/Plex/Actions.pyc
|
|
${PYSITELIB}/Cython/Plex/Actions.pyo
|
|
${PYSITELIB}/Cython/Plex/Actions.so
|
|
${PYSITELIB}/Cython/Plex/DFA.py
|
|
${PYSITELIB}/Cython/Plex/DFA.pyc
|
|
${PYSITELIB}/Cython/Plex/DFA.pyo
|
|
${PYSITELIB}/Cython/Plex/Errors.py
|
|
${PYSITELIB}/Cython/Plex/Errors.pyc
|
|
${PYSITELIB}/Cython/Plex/Errors.pyo
|
|
${PYSITELIB}/Cython/Plex/Lexicons.py
|
|
${PYSITELIB}/Cython/Plex/Lexicons.pyc
|
|
${PYSITELIB}/Cython/Plex/Lexicons.pyo
|
|
${PYSITELIB}/Cython/Plex/Machines.py
|
|
${PYSITELIB}/Cython/Plex/Machines.pyc
|
|
${PYSITELIB}/Cython/Plex/Machines.pyo
|
|
${PYSITELIB}/Cython/Plex/Regexps.py
|
|
${PYSITELIB}/Cython/Plex/Regexps.pyc
|
|
${PYSITELIB}/Cython/Plex/Regexps.pyo
|
|
${PYSITELIB}/Cython/Plex/Scanners.pxd
|
|
${PYSITELIB}/Cython/Plex/Scanners.py
|
|
${PYSITELIB}/Cython/Plex/Scanners.pyc
|
|
${PYSITELIB}/Cython/Plex/Scanners.pyo
|
|
${PYSITELIB}/Cython/Plex/Scanners.so
|
|
${PYSITELIB}/Cython/Plex/Timing.py
|
|
${PYSITELIB}/Cython/Plex/Timing.pyc
|
|
${PYSITELIB}/Cython/Plex/Timing.pyo
|
|
${PYSITELIB}/Cython/Plex/Traditional.py
|
|
${PYSITELIB}/Cython/Plex/Traditional.pyc
|
|
${PYSITELIB}/Cython/Plex/Traditional.pyo
|
|
${PYSITELIB}/Cython/Plex/Transitions.py
|
|
${PYSITELIB}/Cython/Plex/Transitions.pyc
|
|
${PYSITELIB}/Cython/Plex/Transitions.pyo
|
|
${PYSITELIB}/Cython/Plex/__init__.py
|
|
${PYSITELIB}/Cython/Plex/__init__.pyc
|
|
${PYSITELIB}/Cython/Plex/__init__.pyo
|
|
${PYSITELIB}/Cython/Runtime/__init__.py
|
|
${PYSITELIB}/Cython/Runtime/__init__.pyc
|
|
${PYSITELIB}/Cython/Runtime/__init__.pyo
|
|
${PYSITELIB}/Cython/Runtime/refnanny.pyx
|
|
${PYSITELIB}/Cython/Runtime/refnanny.so
|
|
${PYSITELIB}/Cython/Shadow.py
|
|
${PYSITELIB}/Cython/Shadow.pyc
|
|
${PYSITELIB}/Cython/Shadow.pyo
|
|
${PYSITELIB}/Cython/StringIOTree.py
|
|
${PYSITELIB}/Cython/StringIOTree.pyc
|
|
${PYSITELIB}/Cython/StringIOTree.pyo
|
|
${PYSITELIB}/Cython/Tempita/__init__.py
|
|
${PYSITELIB}/Cython/Tempita/__init__.pyc
|
|
${PYSITELIB}/Cython/Tempita/__init__.pyo
|
|
${PYSITELIB}/Cython/Tempita/_looper.py
|
|
${PYSITELIB}/Cython/Tempita/_looper.pyc
|
|
${PYSITELIB}/Cython/Tempita/_looper.pyo
|
|
${PYSITELIB}/Cython/Tempita/_tempita.py
|
|
${PYSITELIB}/Cython/Tempita/_tempita.pyc
|
|
${PYSITELIB}/Cython/Tempita/_tempita.pyo
|
|
${PYSITELIB}/Cython/Tempita/_tempita.so
|
|
${PYSITELIB}/Cython/Tempita/compat3.py
|
|
${PYSITELIB}/Cython/Tempita/compat3.pyc
|
|
${PYSITELIB}/Cython/Tempita/compat3.pyo
|
|
${PYSITELIB}/Cython/TestUtils.py
|
|
${PYSITELIB}/Cython/TestUtils.pyc
|
|
${PYSITELIB}/Cython/TestUtils.pyo
|
|
${PYSITELIB}/Cython/Tests/TestCodeWriter.py
|
|
${PYSITELIB}/Cython/Tests/TestCodeWriter.pyc
|
|
${PYSITELIB}/Cython/Tests/TestCodeWriter.pyo
|
|
${PYSITELIB}/Cython/Tests/TestJediTyper.py
|
|
${PYSITELIB}/Cython/Tests/TestJediTyper.pyc
|
|
${PYSITELIB}/Cython/Tests/TestJediTyper.pyo
|
|
${PYSITELIB}/Cython/Tests/TestStringIOTree.py
|
|
${PYSITELIB}/Cython/Tests/TestStringIOTree.pyc
|
|
${PYSITELIB}/Cython/Tests/TestStringIOTree.pyo
|
|
${PYSITELIB}/Cython/Tests/__init__.py
|
|
${PYSITELIB}/Cython/Tests/__init__.pyc
|
|
${PYSITELIB}/Cython/Tests/__init__.pyo
|
|
${PYSITELIB}/Cython/Tests/xmlrunner.py
|
|
${PYSITELIB}/Cython/Tests/xmlrunner.pyc
|
|
${PYSITELIB}/Cython/Tests/xmlrunner.pyo
|
|
${PYSITELIB}/Cython/Utility/AsyncGen.c
|
|
${PYSITELIB}/Cython/Utility/Buffer.c
|
|
${PYSITELIB}/Cython/Utility/Builtins.c
|
|
${PYSITELIB}/Cython/Utility/CConvert.pyx
|
|
${PYSITELIB}/Cython/Utility/CMath.c
|
|
${PYSITELIB}/Cython/Utility/Capsule.c
|
|
${PYSITELIB}/Cython/Utility/CommonStructures.c
|
|
${PYSITELIB}/Cython/Utility/Complex.c
|
|
${PYSITELIB}/Cython/Utility/Coroutine.c
|
|
${PYSITELIB}/Cython/Utility/CpdefEnums.pyx
|
|
${PYSITELIB}/Cython/Utility/CppConvert.pyx
|
|
${PYSITELIB}/Cython/Utility/CppSupport.cpp
|
|
${PYSITELIB}/Cython/Utility/CythonFunction.c
|
|
${PYSITELIB}/Cython/Utility/Embed.c
|
|
${PYSITELIB}/Cython/Utility/Exceptions.c
|
|
${PYSITELIB}/Cython/Utility/ExtensionTypes.c
|
|
${PYSITELIB}/Cython/Utility/FunctionArguments.c
|
|
${PYSITELIB}/Cython/Utility/ImportExport.c
|
|
${PYSITELIB}/Cython/Utility/MemoryView.pyx
|
|
${PYSITELIB}/Cython/Utility/MemoryView_C.c
|
|
${PYSITELIB}/Cython/Utility/ModuleSetupCode.c
|
|
${PYSITELIB}/Cython/Utility/ObjectHandling.c
|
|
${PYSITELIB}/Cython/Utility/Optimize.c
|
|
${PYSITELIB}/Cython/Utility/Overflow.c
|
|
${PYSITELIB}/Cython/Utility/Printing.c
|
|
${PYSITELIB}/Cython/Utility/Profile.c
|
|
${PYSITELIB}/Cython/Utility/StringTools.c
|
|
${PYSITELIB}/Cython/Utility/TestCyUtilityLoader.pyx
|
|
${PYSITELIB}/Cython/Utility/TestCythonScope.pyx
|
|
${PYSITELIB}/Cython/Utility/TestUtilityLoader.c
|
|
${PYSITELIB}/Cython/Utility/TypeConversion.c
|
|
${PYSITELIB}/Cython/Utility/__init__.py
|
|
${PYSITELIB}/Cython/Utility/__init__.pyc
|
|
${PYSITELIB}/Cython/Utility/__init__.pyo
|
|
${PYSITELIB}/Cython/Utility/arrayarray.h
|
|
${PYSITELIB}/Cython/Utils.py
|
|
${PYSITELIB}/Cython/Utils.pyc
|
|
${PYSITELIB}/Cython/Utils.pyo
|
|
${PYSITELIB}/Cython/__init__.py
|
|
${PYSITELIB}/Cython/__init__.pyc
|
|
${PYSITELIB}/Cython/__init__.pyo
|
|
${PYSITELIB}/cython.py
|
|
${PYSITELIB}/cython.pyc
|
|
${PYSITELIB}/cython.pyo
|
|
${PYSITELIB}/pyximport/__init__.py
|
|
${PYSITELIB}/pyximport/__init__.pyc
|
|
${PYSITELIB}/pyximport/__init__.pyo
|
|
${PYSITELIB}/pyximport/pyxbuild.py
|
|
${PYSITELIB}/pyximport/pyxbuild.pyc
|
|
${PYSITELIB}/pyximport/pyxbuild.pyo
|
|
${PYSITELIB}/pyximport/pyximport.py
|
|
${PYSITELIB}/pyximport/pyximport.pyc
|
|
${PYSITELIB}/pyximport/pyximport.pyo
|