├── .codespellrc ├── .editorconfig ├── .github ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── 1_bug_report.yml │ ├── 2_feature_request.yml │ ├── 3_blank_issue.yml │ └── config.yml ├── code-of-conduct.md ├── report-handling-manual.md └── workflows │ ├── ci.yml │ └── wheels.yml ├── .gitignore ├── .hgignore ├── .hgtags ├── .mailmap ├── .readthedocs.yaml ├── BUILD.bazel ├── CHANGES.rst ├── COPYING.txt ├── Cython ├── Build │ ├── BuildExecutable.py │ ├── Cythonize.py │ ├── Dependencies.py │ ├── Distutils.py │ ├── Inline.py │ ├── IpythonMagic.py │ ├── Tests │ │ ├── TestCyCache.py │ │ ├── TestCythonizeArgsParser.py │ │ ├── TestDependencies.py │ │ ├── TestInline.py │ │ ├── TestIpythonMagic.py │ │ ├── TestRecythonize.py │ │ ├── TestStripLiterals.py │ │ └── __init__.py │ ├── __init__.py │ └── ipython-COPYING.rst ├── CodeWriter.py ├── Compiler │ ├── AnalysedTreeTransforms.py │ ├── Annotate.py │ ├── AutoDocTransforms.py │ ├── Buffer.py │ ├── Builtin.py │ ├── CmdLine.py │ ├── Code.pxd │ ├── Code.py │ ├── CodeGeneration.py │ ├── CythonScope.py │ ├── Dataclass.py │ ├── DebugFlags.py │ ├── Errors.py │ ├── ExprNodes.py │ ├── FlowControl.pxd │ ├── FlowControl.py │ ├── FusedNode.py │ ├── Future.py │ ├── Interpreter.py │ ├── Lexicon.py │ ├── Main.py │ ├── MemoryView.py │ ├── ModuleNode.py │ ├── Naming.py │ ├── Nodes.py │ ├── Optimize.py │ ├── Options.py │ ├── ParseTreeTransforms.pxd │ ├── ParseTreeTransforms.py │ ├── Parsing.pxd │ ├── Parsing.py │ ├── Pipeline.py │ ├── PyrexTypes.py │ ├── Pythran.py │ ├── Scanning.pxd │ ├── Scanning.py │ ├── StringEncoding.py │ ├── Symtab.py │ ├── Tests │ │ ├── TestBuffer.py │ │ ├── TestCmdLine.py │ │ ├── TestFlowControl.py │ │ ├── TestGrammar.py │ │ ├── TestMemView.py │ │ ├── TestParseTreeTransforms.py │ │ ├── TestScanning.py │ │ ├── TestSignatureMatching.py │ │ ├── TestStringEncoding.py │ │ ├── TestTreeFragment.py │ │ ├── TestTreePath.py │ │ ├── TestTypes.py │ │ ├── TestUtilityLoad.py │ │ ├── TestVisitor.py │ │ ├── Utils.py │ │ └── __init__.py │ ├── TreeFragment.py │ ├── TreePath.py │ ├── TypeInference.py │ ├── TypeSlots.py │ ├── UFuncs.py │ ├── UtilNodes.py │ ├── UtilityCode.py │ ├── Version.py │ ├── Visitor.pxd │ ├── Visitor.py │ └── __init__.py ├── Coverage.py ├── Debugger │ ├── Cygdb.py │ ├── DebugWriter.py │ ├── Tests │ │ ├── TestLibCython.py │ │ ├── __init__.py │ │ ├── cfuncs.c │ │ ├── cfuncs.h │ │ ├── codefile │ │ ├── test_libcython_in_gdb.py │ │ └── test_libpython_in_gdb.py │ ├── __init__.py │ ├── libcython.py │ └── libpython.py ├── Debugging.py ├── Distutils │ ├── __init__.py │ ├── build_ext.py │ ├── extension.py │ └── old_build_ext.py ├── Includes │ ├── cpython │ │ ├── __init__.pxd │ │ ├── array.pxd │ │ ├── bool.pxd │ │ ├── buffer.pxd │ │ ├── bytearray.pxd │ │ ├── bytes.pxd │ │ ├── cellobject.pxd │ │ ├── ceval.pxd │ │ ├── cobject.pxd │ │ ├── codecs.pxd │ │ ├── complex.pxd │ │ ├── contextvars.pxd │ │ ├── conversion.pxd │ │ ├── datetime.pxd │ │ ├── descr.pxd │ │ ├── dict.pxd │ │ ├── exc.pxd │ │ ├── fileobject.pxd │ │ ├── float.pxd │ │ ├── function.pxd │ │ ├── genobject.pxd │ │ ├── getargs.pxd │ │ ├── instance.pxd │ │ ├── int.pxd │ │ ├── iterator.pxd │ │ ├── iterobject.pxd │ │ ├── list.pxd │ │ ├── long.pxd │ │ ├── longintrepr.pxd │ │ ├── mapping.pxd │ │ ├── marshal.pxd │ │ ├── mem.pxd │ │ ├── memoryview.pxd │ │ ├── method.pxd │ │ ├── module.pxd │ │ ├── number.pxd │ │ ├── object.pxd │ │ ├── oldbuffer.pxd │ │ ├── pycapsule.pxd │ │ ├── pylifecycle.pxd │ │ ├── pyport.pxd │ │ ├── pystate.pxd │ │ ├── pythread.pxd │ │ ├── ref.pxd │ │ ├── sequence.pxd │ │ ├── set.pxd │ │ ├── slice.pxd │ │ ├── string.pxd │ │ ├── time.pxd │ │ ├── tuple.pxd │ │ ├── type.pxd │ │ ├── unicode.pxd │ │ ├── version.pxd │ │ └── weakref.pxd │ ├── libc │ │ ├── __init__.pxd │ │ ├── complex.pxd │ │ ├── errno.pxd │ │ ├── float.pxd │ │ ├── limits.pxd │ │ ├── locale.pxd │ │ ├── math.pxd │ │ ├── setjmp.pxd │ │ ├── signal.pxd │ │ ├── stddef.pxd │ │ ├── stdint.pxd │ │ ├── stdio.pxd │ │ ├── stdlib.pxd │ │ ├── string.pxd │ │ └── time.pxd │ ├── libcpp │ │ ├── __init__.pxd │ │ ├── algorithm.pxd │ │ ├── any.pxd │ │ ├── atomic.pxd │ │ ├── bit.pxd │ │ ├── cast.pxd │ │ ├── cmath.pxd │ │ ├── complex.pxd │ │ ├── deque.pxd │ │ ├── execution.pxd │ │ ├── forward_list.pxd │ │ ├── functional.pxd │ │ ├── iterator.pxd │ │ ├── limits.pxd │ │ ├── list.pxd │ │ ├── map.pxd │ │ ├── memory.pxd │ │ ├── numbers.pxd │ │ ├── numeric.pxd │ │ ├── optional.pxd │ │ ├── pair.pxd │ │ ├── queue.pxd │ │ ├── random.pxd │ │ ├── set.pxd │ │ ├── stack.pxd │ │ ├── string.pxd │ │ ├── typeindex.pxd │ │ ├── typeinfo.pxd │ │ ├── unordered_map.pxd │ │ ├── unordered_set.pxd │ │ ├── utility.pxd │ │ └── vector.pxd │ ├── numpy │ │ ├── __init__.pxd │ │ └── math.pxd │ ├── openmp.pxd │ └── posix │ │ ├── __init__.pxd │ │ ├── dlfcn.pxd │ │ ├── fcntl.pxd │ │ ├── ioctl.pxd │ │ ├── mman.pxd │ │ ├── resource.pxd │ │ ├── select.pxd │ │ ├── signal.pxd │ │ ├── stat.pxd │ │ ├── stdio.pxd │ │ ├── stdlib.pxd │ │ ├── strings.pxd │ │ ├── time.pxd │ │ ├── types.pxd │ │ ├── uio.pxd │ │ ├── unistd.pxd │ │ └── wait.pxd ├── Parser │ ├── ConcreteSyntaxTree.pyx │ ├── Grammar │ └── __init__.py ├── Plex │ ├── Actions.pxd │ ├── Actions.py │ ├── DFA.pxd │ ├── DFA.py │ ├── Errors.py │ ├── Lexicons.py │ ├── Machines.pxd │ ├── Machines.py │ ├── Regexps.py │ ├── Scanners.pxd │ ├── Scanners.py │ ├── Transitions.pxd │ ├── Transitions.py │ └── __init__.py ├── Runtime │ ├── __init__.py │ └── refnanny.pyx ├── Shadow.py ├── Shadow.pyi ├── StringIOTree.pxd ├── StringIOTree.py ├── Tempita │ ├── __init__.py │ ├── _looper.py │ ├── _tempita.py │ └── compat3.py ├── TestUtils.py ├── Tests │ ├── TestCodeWriter.py │ ├── TestCythonUtils.py │ ├── TestJediTyper.py │ ├── TestStringIOTree.py │ ├── TestTestUtils.py │ ├── __init__.py │ └── xmlrunner.py ├── Utility │ ├── AsyncGen.c │ ├── Buffer.c │ ├── Builtins.c │ ├── CConvert.pyx │ ├── CMath.c │ ├── CommonStructures.c │ ├── Complex.c │ ├── Coroutine.c │ ├── CpdefEnums.pyx │ ├── CppConvert.pyx │ ├── CppSupport.cpp │ ├── CythonFunction.c │ ├── Dataclasses.c │ ├── Dataclasses.py │ ├── Embed.c │ ├── Exceptions.c │ ├── ExtensionTypes.c │ ├── FunctionArguments.c │ ├── ImportExport.c │ ├── MemoryView.pyx │ ├── MemoryView_C.c │ ├── ModuleSetupCode.c │ ├── NumpyImportArray.c │ ├── ObjectHandling.c │ ├── Optimize.c │ ├── Overflow.c │ ├── Printing.c │ ├── Profile.c │ ├── StringTools.c │ ├── TestCyUtilityLoader.pyx │ ├── TestCythonScope.pyx │ ├── TestUtilityLoader.c │ ├── TypeConversion.c │ ├── UFuncs.pyx │ ├── UFuncs_C.c │ ├── __init__.py │ └── arrayarray.h ├── Utils.pxd ├── Utils.py └── __init__.py ├── Demos ├── Makefile ├── Makefile.nodistutils ├── README.rst ├── benchmarks │ ├── bpnn3.pxd │ ├── bpnn3.py │ ├── chaos.pxd │ ├── chaos.py │ ├── coroutines.py │ ├── fstrings.py │ ├── generators.py │ ├── hexiom2.pxd │ ├── hexiom2.py │ ├── meteor_contest.pxd │ ├── meteor_contest.py │ ├── nbody.pxd │ ├── nbody.py │ ├── nqueens.py │ ├── richards.pxd │ ├── richards.py │ ├── setup.py │ ├── spectralnorm.pxd │ ├── spectralnorm.py │ └── util.py ├── callback │ ├── Makefile │ ├── Makefile.nodistutils │ ├── README.rst │ ├── Setup.py │ ├── cheese.pyx │ ├── cheesefinder.c │ ├── cheesefinder.h │ └── run_cheese.py ├── embed │ ├── Makefile │ ├── Makefile.msc │ ├── Makefile.msc.static │ ├── Makefile.unix │ ├── README.rst │ ├── assert_equal.py │ ├── embedded.output │ └── embedded.pyx ├── freeze │ ├── Makefile │ ├── README.rst │ ├── combinatorics.pyx │ └── lcmath.pyx ├── integrate0.py ├── integrate1.pyx ├── integrate2.pyx ├── integrate_timing.py ├── libraries │ ├── call_mymath.pyx │ ├── mymath.c │ ├── mymath.h │ └── setup.py ├── numpy_demo.pyx ├── overflow_perf.pyx ├── overflow_perf_run.py ├── primes.pyx ├── pyprimes.py ├── run_numeric_demo.py ├── run_primes.py ├── run_spam.py ├── setup.py └── spam.pyx ├── Doc └── s5 │ ├── Makefile │ ├── cython-ep2008.txt │ ├── ep2008 │ ├── stupidlowercase.py │ └── worker.py │ └── ui │ └── default │ ├── blank.gif │ ├── bodybg.gif │ ├── cython-logo64.png │ ├── framing.css │ ├── iepngfix.htc │ ├── opera.css │ ├── outline.css │ ├── pretty.css │ ├── print.css │ ├── s5-core.css │ ├── slides.css │ └── slides.js ├── INSTALL.txt ├── LICENSE.txt ├── MANIFEST.in ├── Makefile ├── README.rst ├── ToDo.txt ├── Tools ├── BUILD.bazel ├── cevaltrace.py ├── ci-run.sh ├── cystdlib.py ├── cython-epydoc.py ├── cython-numpy-mode-kate.xml ├── cython.st ├── dataclass_test_data │ └── test_dataclasses.py ├── dump_github_issues.py ├── gen_tests_for_posix_pxds.py ├── jedityper.py ├── kate.diff ├── make_dataclass_tests.py ├── rules.bzl └── site_scons │ └── site_tools │ ├── cython.py │ └── pyext.py ├── USAGE.txt ├── appveyor ├── install.ps1 └── run_with_env.cmd ├── bin ├── cygdb ├── cython ├── cython-generate-lexicon.py ├── cython.bat ├── cython_freeze ├── cythonize ├── cythonrun ├── move-declarators.sed └── pcython ├── cygdb.py ├── cython.py ├── cythonize.py ├── doc-requirements.txt ├── docs ├── .hgignore ├── CONTRIBUTING.rst ├── Makefile ├── README.md ├── TODO ├── _static │ ├── css │ │ └── tabs.css │ ├── cython-logo-C.svg │ ├── cython-logo-light.png │ ├── cython-logo.svg │ ├── cythonlogo.png │ └── favicon.ico ├── _templates │ └── layout.html ├── conf.py ├── examples │ ├── Cython Magics.ipynb │ ├── README.rst │ ├── not_in_docs │ │ └── great_circle │ │ │ ├── c1.pyx │ │ │ ├── c2.pyx │ │ │ └── p1.py │ ├── quickstart │ │ ├── build │ │ │ ├── hello.pyx │ │ │ └── setup.py │ │ └── cythonize │ │ │ ├── cdef_keyword.py │ │ │ ├── cdef_keyword.pyx │ │ │ ├── integrate.py │ │ │ ├── integrate_cy.py │ │ │ └── integrate_cy.pyx │ ├── tutorial │ │ ├── array │ │ │ ├── clone.py │ │ │ ├── clone.pyx │ │ │ ├── overhead.py │ │ │ ├── overhead.pyx │ │ │ ├── resize.py │ │ │ ├── resize.pyx │ │ │ ├── safe_usage.py │ │ │ ├── safe_usage.pyx │ │ │ ├── unsafe_usage.py │ │ │ └── unsafe_usage.pyx │ │ ├── cdef_classes │ │ │ ├── integrate.py │ │ │ ├── integrate.pyx │ │ │ ├── math_function.py │ │ │ ├── math_function_2.py │ │ │ ├── math_function_2.pyx │ │ │ ├── nonecheck.py │ │ │ ├── nonecheck.pyx │ │ │ ├── sin_of_square.pxd │ │ │ ├── sin_of_square.py │ │ │ ├── sin_of_square.pyx │ │ │ ├── wave_function.py │ │ │ └── wave_function.pyx │ │ ├── clibraries │ │ │ ├── c-algorithms │ │ │ │ └── src │ │ │ │ │ └── queue.h │ │ │ ├── cqueue.pxd │ │ │ ├── queue.py │ │ │ ├── queue.pyx │ │ │ ├── queue2.py │ │ │ ├── queue2.pyx │ │ │ ├── queue3.py │ │ │ ├── queue3.pyx │ │ │ └── test_queue.py │ │ ├── cython_tutorial │ │ │ ├── fib.pyx │ │ │ ├── primes.py │ │ │ ├── primes.pyx │ │ │ ├── primes_cpp.py │ │ │ ├── primes_cpp.pyx │ │ │ └── primes_python.py │ │ ├── embedding │ │ │ ├── embedded.pyx │ │ │ └── embedded_main.c │ │ ├── external │ │ │ ├── atoi.py │ │ │ ├── atoi.pyx │ │ │ ├── cpdef_sin.pyx │ │ │ ├── keyword_args.pyx │ │ │ ├── keyword_args_call.py │ │ │ ├── keyword_args_call.pyx │ │ │ ├── libc_sin.py │ │ │ ├── libc_sin.pyx │ │ │ ├── py_version_hex.py │ │ │ ├── py_version_hex.pyx │ │ │ ├── setup.py │ │ │ └── strstr.pxd │ │ ├── memory_allocation │ │ │ ├── malloc.py │ │ │ ├── malloc.pyx │ │ │ ├── some_memory.py │ │ │ └── some_memory.pyx │ │ ├── numpy │ │ │ ├── convolve2.pyx │ │ │ └── convolve_py.py │ │ ├── parallelization │ │ │ ├── manual_work.py │ │ │ ├── manual_work.pyx │ │ │ ├── median.py │ │ │ ├── median.pyx │ │ │ ├── norm.py │ │ │ ├── norm.pyx │ │ │ ├── normalize.py │ │ │ ├── normalize.pyx │ │ │ ├── parallel_sin.py │ │ │ ├── parallel_sin.pyx │ │ │ └── setup.py │ │ ├── profiling_tutorial │ │ │ ├── calc_pi.py │ │ │ ├── calc_pi_2.py │ │ │ ├── calc_pi_2.pyx │ │ │ ├── calc_pi_3.py │ │ │ ├── calc_pi_3.pyx │ │ │ ├── calc_pi_4.py │ │ │ ├── calc_pi_4.pyx │ │ │ ├── often_called.py │ │ │ ├── often_called.pyx │ │ │ ├── profile.py │ │ │ └── profile_2.py │ │ ├── pure │ │ │ ├── A.pxd │ │ │ ├── A.py │ │ │ ├── A_equivalent.pyx │ │ │ ├── annotations.py │ │ │ ├── c_arrays.py │ │ │ ├── cclass.py │ │ │ ├── compiled_switch.py │ │ │ ├── cython_declare.py │ │ │ ├── cython_declare2.py │ │ │ ├── disabled_annotations.py │ │ │ ├── dostuff.pxd │ │ │ ├── dostuff.py │ │ │ ├── exceptval.py │ │ │ ├── locals.py │ │ │ ├── mymodule.pxd │ │ │ ├── mymodule.py │ │ │ ├── pep_526.py │ │ │ └── py_cimport.py │ │ ├── pxd_files │ │ │ ├── cmath.pxd │ │ │ ├── inline.pxd │ │ │ ├── integrate.py │ │ │ └── integrate.pyx │ │ └── string │ │ │ ├── api_func.pyx │ │ │ ├── arg_memview.pyx │ │ │ ├── auto_conversion_1.pyx │ │ │ ├── auto_conversion_2.pyx │ │ │ ├── auto_conversion_3.pyx │ │ │ ├── c_func.pxd │ │ │ ├── c_func.pyx │ │ │ ├── const.pyx │ │ │ ├── cpp_string.pyx │ │ │ ├── decode.pyx │ │ │ ├── decode_cpp_string.pyx │ │ │ ├── for_bytes.pyx │ │ │ ├── for_char.pyx │ │ │ ├── for_unicode.pyx │ │ │ ├── if_char_in.pyx │ │ │ ├── naive_decode.pyx │ │ │ ├── return_memview.pyx │ │ │ ├── slicing_c_string.pyx │ │ │ ├── someheader.h │ │ │ ├── to_char.pyx │ │ │ ├── to_unicode.pxd │ │ │ ├── to_unicode.pyx │ │ │ ├── try_finally.pyx │ │ │ └── utf_eight.pyx │ └── userguide │ │ ├── buffer │ │ ├── matrix.py │ │ ├── matrix.pyx │ │ ├── matrix_with_buffer.py │ │ ├── matrix_with_buffer.pyx │ │ ├── view_count.py │ │ └── view_count.pyx │ │ ├── early_binding_for_speed │ │ ├── rectangle.py │ │ ├── rectangle.pyx │ │ ├── rectangle_cdef.py │ │ ├── rectangle_cdef.pyx │ │ ├── rectangle_cpdef.py │ │ └── rectangle_cpdef.pyx │ │ ├── extension_types │ │ ├── c_property.pyx │ │ ├── cheesy.py │ │ ├── cheesy.pyx │ │ ├── dataclass.py │ │ ├── dataclass.pyx │ │ ├── dict_animal.py │ │ ├── dict_animal.pyx │ │ ├── extendable_animal.py │ │ ├── extendable_animal.pyx │ │ ├── my_module.pxd │ │ ├── my_module.pyx │ │ ├── owned_pointer.py │ │ ├── owned_pointer.pyx │ │ ├── penguin.py │ │ ├── penguin.pyx │ │ ├── penguin2.py │ │ ├── penguin2.pyx │ │ ├── pets.py │ │ ├── pets.pyx │ │ ├── python_access.py │ │ ├── python_access.pyx │ │ ├── shrubbery.py │ │ ├── shrubbery.pyx │ │ ├── shrubbery_2.py │ │ ├── shrubbery_2.pyx │ │ ├── widen_shrubbery.py │ │ ├── widen_shrubbery.pyx │ │ ├── wrapper_class.py │ │ └── wrapper_class.pyx │ │ ├── external_C_code │ │ ├── delorean.pyx │ │ ├── marty.c │ │ ├── platform_adaptation.pyx │ │ ├── struct_field_adaptation.h │ │ ├── struct_field_adaptation.pyx │ │ └── verbatim_c_code.pyx │ │ ├── fusedtypes │ │ ├── char_or_float.py │ │ ├── char_or_float.pyx │ │ ├── conditional_gil.py │ │ ├── conditional_gil.pyx │ │ ├── indexing.py │ │ ├── indexing.pyx │ │ ├── pointer.py │ │ ├── pointer.pyx │ │ ├── type_checking.py │ │ └── type_checking.pyx │ │ ├── language_basics │ │ ├── casting_python.pxd │ │ ├── casting_python.py │ │ ├── casting_python.pyx │ │ ├── cdef_block.pyx │ │ ├── compile_time.pyx │ │ ├── enum.pyx │ │ ├── function_pointer.pyx │ │ ├── function_pointer_struct.pyx │ │ ├── kwargs_1.pyx │ │ ├── kwargs_2.pyx │ │ ├── open_file.py │ │ ├── open_file.pyx │ │ ├── optional_subclassing.pxd │ │ ├── optional_subclassing.py │ │ ├── optional_subclassing.pyx │ │ ├── override.py │ │ ├── override.pyx │ │ ├── parameter_refcount.py │ │ ├── parameter_refcount.pyx │ │ ├── struct.py │ │ ├── struct.pyx │ │ ├── union.py │ │ └── union.pyx │ │ ├── memoryviews │ │ ├── C_func_file.c │ │ ├── C_func_file.h │ │ ├── add_one.pyx │ │ ├── copy.pyx │ │ ├── custom_dtype.pyx │ │ ├── memory_layout.pyx │ │ ├── memory_layout_2.pyx │ │ ├── memview_to_c.pyx │ │ ├── not_none.pyx │ │ ├── np_flag_const.pyx │ │ ├── quickstart.pyx │ │ ├── slicing.pyx │ │ ├── transpose.pyx │ │ └── view_string.pyx │ │ ├── numpy_tutorial │ │ ├── compute_fused_types.pyx │ │ ├── compute_infer_types.pyx │ │ ├── compute_memview.pyx │ │ ├── compute_prange.pyx │ │ ├── compute_py.py │ │ ├── compute_typed.pyx │ │ └── numpy_and_cython.ipynb │ │ ├── numpy_ufuncs │ │ ├── ufunc.py │ │ ├── ufunc.pyx │ │ ├── ufunc_ctuple.py │ │ ├── ufunc_ctuple.pyx │ │ ├── ufunc_fused.py │ │ └── ufunc_fused.pyx │ │ ├── parallelism │ │ ├── breaking_loop.py │ │ ├── breaking_loop.pyx │ │ ├── cimport_openmp.py │ │ ├── cimport_openmp.pyx │ │ ├── memoryview_sum.py │ │ ├── memoryview_sum.pyx │ │ ├── parallel.py │ │ ├── parallel.pyx │ │ ├── setup_py.py │ │ ├── setup_pyx.py │ │ ├── simple_sum.py │ │ └── simple_sum.pyx │ │ ├── sharing_declarations │ │ ├── c_lunch.pxd │ │ ├── dishes.pxd │ │ ├── landscaping.py │ │ ├── landscaping.pyx │ │ ├── lunch.h │ │ ├── lunch.py │ │ ├── lunch.pyx │ │ ├── restaurant.py │ │ ├── restaurant.pyx │ │ ├── setup_py.py │ │ ├── setup_pyx.py │ │ ├── shrubbing.pxd │ │ ├── shrubbing.py │ │ ├── shrubbing.pyx │ │ ├── spammery.py │ │ ├── spammery.pyx │ │ ├── volume.pxd │ │ ├── volume.py │ │ └── volume.pyx │ │ ├── special_methods │ │ ├── total_ordering.py │ │ └── total_ordering.pyx │ │ └── wrapping_CPlusPlus │ │ ├── Rectangle.cpp │ │ ├── Rectangle.h │ │ ├── Rectangle.pxd │ │ ├── cython_usage.pyx │ │ ├── function_templates.pyx │ │ ├── iterate.pyx │ │ ├── nested_class.pyx │ │ ├── python_to_cpp.pyx │ │ ├── rect.pyx │ │ ├── rect_ptr.pyx │ │ ├── rect_with_attributes.pyx │ │ ├── setup.py │ │ ├── templates.pyx │ │ ├── vector_demo.pyx │ │ └── wrapper_vector.pyx ├── index.rst ├── make.bat └── src │ ├── changes.rst │ ├── cimport-warning │ ├── donating.rst │ ├── quickstart │ ├── build.rst │ ├── cython_in_jupyter.ipynb │ ├── cythonize.rst │ ├── demo.pyx │ ├── htmlreport_py.png │ ├── htmlreport_pyx.png │ ├── index.rst │ ├── install.rst │ ├── jupyter.png │ ├── overview.rst │ └── sage.png │ ├── reference │ ├── compilation.rst │ ├── directives.rst │ ├── extension_types.rst │ ├── index.rst │ ├── interfacing_with_other_code.rst │ ├── language_basics.rst │ ├── limitations.rst │ ├── special_mention.rst │ └── special_methods_table.rst │ ├── tutorial │ ├── annotation_typing_table.csv │ ├── appendix.rst │ ├── array.rst │ ├── caveats.rst │ ├── cdef_classes.rst │ ├── clibraries.rst │ ├── cython_tutorial.rst │ ├── data.py │ ├── embedding.rst │ ├── external.rst │ ├── htmlreport_py.png │ ├── htmlreport_pyx.png │ ├── index.rst │ ├── memory_allocation.rst │ ├── numpy.rst │ ├── parallelization.rst │ ├── profiling_tutorial.rst │ ├── pure.rst │ ├── pxd_files.rst │ ├── python_division.png │ ├── readings.rst │ ├── related_work.rst │ └── strings.rst │ ├── two-syntax-variants-used │ └── userguide │ ├── buffer.rst │ ├── compute_typed_html.jpg │ ├── cpow_table.csv │ ├── debugging.rst │ ├── early_binding_for_speed.rst │ ├── extension_types.rst │ ├── external_C_code.rst │ ├── faq.rst │ ├── fusedtypes.rst │ ├── glossary.rst │ ├── index.rst │ ├── language_basics.rst │ ├── limitations.rst │ ├── memoryviews.rst │ ├── migrating_to_cy30.rst │ ├── nogil.rst │ ├── numpy_pythran.rst │ ├── numpy_tutorial.rst │ ├── numpy_ufuncs.rst │ ├── parallelism.rst │ ├── pypy.rst │ ├── pyrex_differences.rst │ ├── sharing_declarations.rst │ ├── source_files_and_compilation.rst │ ├── special_methods.rst │ ├── troubleshooting.rst │ └── wrapping_CPlusPlus.rst ├── pylintrc ├── pyximport ├── PKG-INFO ├── README.rst ├── __init__.py ├── _pyximport2.py ├── _pyximport3.py ├── pyxbuild.py ├── pyximport.py └── test │ ├── test_pyximport.py │ └── test_reload.py ├── runtests.py ├── setup.cfg ├── setup.py ├── setupegg.py ├── test-requirements-27.txt ├── test-requirements-312.txt ├── test-requirements-34.txt ├── test-requirements-36.txt ├── test-requirements-cpython.txt ├── test-requirements-pypy27.txt ├── test-requirements.txt ├── tests ├── broken │ ├── b_extimpinherit.pyx │ ├── big_t.pyx │ ├── builtinconst.pyx │ ├── builtindict.pyx │ ├── cascadedass.pyx │ ├── cexportfunc.pyx │ ├── cimport.pyx │ ├── cimportfrom.pyx │ ├── cimportfrompkgdir.pyx │ ├── cimportfunc.pyx │ ├── ctypedefextern.pyx │ ├── externfunc.pyx │ ├── externsue.pyx │ ├── fwddeclcclass.pyx │ ├── getattr.pyx │ ├── getattr3ref.pyx │ ├── i_public.pyx │ ├── includepublic.pyx │ ├── intindex.pyx │ ├── invalid-module-name.pyx │ ├── l_capi.pyx │ ├── l_cfuncexport.pyx │ ├── naanou_1.pyx │ ├── pkg.cimport.pyx │ ├── pkg.cimportfrom.pyx │ ├── plex2.pyx │ ├── r_capi.pyx │ ├── r_cfuncimport.pyx │ ├── r_classdoc.pyx │ ├── r_classmodname.pyx │ ├── r_excval.pyx │ ├── r_extimpinherit.pyx │ ├── r_extinherit.pyx │ ├── r_extmember.pyx │ ├── r_extnumeric2.pyx │ ├── r_extproperty.pyx │ ├── r_extweakref.pyx │ ├── r_getattr3.pyx │ ├── r_import.pyx │ ├── r_inhcmethcall.pyx │ ├── r_kwonlyargs.pyx │ ├── r_newstyleclass.pyx │ ├── r_simpcall.pyx │ ├── r_tbfilename.pyx │ ├── r_traceback.pyx │ ├── r_unpack.pyx │ ├── raise.pyx │ ├── retconvert.pyx │ ├── test_include_options.pyx │ ├── tryexceptelse.pyx │ └── tslots.pyx ├── buffers │ ├── bufaccess.h │ ├── bufaccess.pyx │ ├── buffer.pyx │ ├── buffmt.pyx │ ├── mockbuffers.pxi │ └── userbuffer.pyx ├── bugs.txt ├── build │ ├── basic_cythonize.srctree │ ├── basic_distutils.srctree │ ├── build_dir.srctree │ ├── build_dir_src.srctree │ ├── build_ext_cython_c_in_temp.srctree │ ├── build_ext_cython_cplus.srctree │ ├── build_ext_cython_include_dirs.srctree │ ├── common_include_dir.srctree │ ├── compile_env_distutils.srctree │ ├── cpp_cythonize.srctree │ ├── cython_language_level.srctree │ ├── cythonize_additional_sources.srctree │ ├── cythonize_additional_sources_ext.srctree │ ├── cythonize_cython.srctree │ ├── cythonize_glob.srctree │ ├── cythonize_newer_files.srctree │ ├── cythonize_options.srctree │ ├── cythonize_pep420_namespace.srctree │ ├── cythonize_rename_ext.srctree │ ├── cythonize_script.srctree │ ├── cythonize_script_excludes.srctree │ ├── cythonize_script_package.srctree │ ├── cythonize_with_annotate.srctree │ ├── cythonize_with_annotate_via_Options.srctree │ ├── cythonize_with_annotate_via_cli.srctree │ ├── depfile.srctree │ ├── depfile_numpy.srctree │ ├── depfile_package_cython.srctree │ ├── depfile_package_cythonize.srctree │ ├── dotted.filename.modules.pxd │ ├── dotted.filename.modules.pyx │ ├── inline_distutils.srctree │ ├── module_api.srctree │ ├── package_compilation.srctree │ └── setuptools_reimport.srctree ├── compile │ ├── a │ │ ├── __init__.py │ │ └── b.pxd │ ├── a_capi.pyx │ ├── altet1.h │ ├── altet1.pyx.BROKEN │ ├── argdefault.pyx │ ├── arrayargs.pyx │ ├── arrayptrcompat.pyx │ ├── arraytoptrarg.pyx │ ├── ass2longlong.pyx │ ├── assert2.pyx │ ├── behnel4.pyx │ ├── belchenko1.pyx │ ├── belchenko2.h │ ├── belchenko2.pyx.BROKEN │ ├── branch_hints.pyx │ ├── buildenv.pyx │ ├── builtin.pyx │ ├── builtinbuffer.py │ ├── builtinfuncs.pyx │ ├── builtinlist.pyx │ ├── burton1.pyx.BROKEN │ ├── c_directives.pyx │ ├── callingconvention.srctree │ ├── cargdef.pyx │ ├── carrdecl.pyx │ ├── cassign.pyx │ ├── cast_ctypedef_array_T518.pyx │ ├── cast_ctypedef_array_T518_helper.h │ ├── casttoexttype.pyx │ ├── cdef_syntax.pyx │ ├── cdefemptysue.pyx │ ├── cdefexternblock.pyx │ ├── cdefexternempty.pyx │ ├── cdefexternfromstar.pyx │ ├── cenum.pyx │ ├── cforfromloop.pyx │ ├── cheese.h │ ├── cimport_package_module_T4.pyx │ ├── cimported_class_base.srctree │ ├── cimportfrom_T248.pyx │ ├── classmethargdefault.pyx │ ├── cnamespec.pyx │ ├── cnumop.pyx │ ├── coercetovoidptr.pyx │ ├── complex_annotations.pyx │ ├── complex_decorators.pyx │ ├── complexbasetype.pyx │ ├── conditional_dependencies.srctree │ ├── const_T42.srctree │ ├── const_decl.pyx │ ├── constcast.pyx │ ├── constexpr.pyx │ ├── coventry1.pyx │ ├── cpdef.pyx │ ├── cpp_class_redefinition.pyx │ ├── cpp_nogil.h │ ├── cpp_nogil.pyx │ ├── cpp_rvalue_reference_binding.pyx │ ├── cpp_structs.pyx │ ├── cpp_temp_assignment.pyx │ ├── cpp_templated_ctypedef.pyx │ ├── cpp_templates.pyx │ ├── cpp_templates_nested.pyx │ ├── cppenum.pyx │ ├── create_extension.srctree │ ├── crunchytype.pxd │ ├── cstructreturn.pyx │ ├── ctuple_cimport.pxd │ ├── ctuple_cimport_T1427.pyx │ ├── ctuple_unused_T3543.pyx │ ├── ctypedef.pyx │ ├── ctypedef_public_class_T355.pxd │ ├── ctypedef_public_class_T355.pyx │ ├── ctypedefclass.pyx │ ├── ctypedefenum.pyx │ ├── ctypedefpubapi.pyx │ ├── ctypedefstruct.pyx │ ├── ctypedefunion.pyx │ ├── cunsignedlong.pyx │ ├── cvardef.pyx │ ├── cverylongtypes.pyx │ ├── cython_compiled_folding.pxd │ ├── cython_compiled_folding.py │ ├── declandimpl.pxd │ ├── declandimpl.pyx │ ├── declarations.srctree │ ├── del.pyx │ ├── distutils_libraries_T845.srctree │ ├── docstrings.pyx │ ├── doda1.pyx │ ├── dotted_cimport.pyx │ ├── dotted_cimport_submodule │ │ ├── __init__.pyx │ │ └── a.pxd │ ├── drake1.pyx │ ├── ellipsis_T488.pyx │ ├── emptytry.pyx │ ├── enumintcompat.pyx │ ├── eqcmp.pyx │ ├── ewing1.pyx │ ├── ewing3.pyx │ ├── ewing4.pyx │ ├── ewing5.pyx │ ├── ewing6.pyx │ ├── ewing7.pyx │ ├── ewing8.pxd │ ├── ewing8.pyx │ ├── ewing9.pxd │ ├── ewing9.pyx │ ├── excvalcheck.h │ ├── excvalcheck.pyx │ ├── excvaldecl.pyx │ ├── excvalreturn.pyx │ ├── extargdefault.pyx │ ├── extcmethcall.pyx │ ├── extcoerce.pyx │ ├── extdelattr.pyx │ ├── extdelitem.pyx │ ├── extdelslice.pyx │ ├── extdescrdel.pyx │ ├── extdescrget.pyx │ ├── extdescrset.pyx │ ├── extern.pyx │ ├── extexttype.pyx │ ├── extforward.pyx │ ├── extgetattr.pyx │ ├── extgetitem.pyx │ ├── exthash.pyx │ ├── extimported.pyx │ ├── extimportedsubtype.pyx │ ├── extindex.pyx │ ├── extinheritdel.pyx │ ├── extinheritset.pyx │ ├── extpropertyall.pyx │ ├── extpropertydel.pyx │ ├── extpropertydoc.pyx │ ├── extpropertyget.pyx │ ├── extpropertyset.pyx │ ├── extpymemberdef.pyx │ ├── extsetattr.pyx │ ├── extsetitem.pyx │ ├── extsetslice.pyx │ ├── finally_GH1744.pyx │ ├── find_pxd.srctree │ ├── first_assignment.pyx │ ├── food.h │ ├── for.pyx │ ├── forfromelse.pyx │ ├── formfeed.pyx │ ├── forward.pyx │ ├── fromimport.pyx │ ├── fromimport_star.pyx │ ├── fused_buffers.pyx │ ├── fused_no_numpy.pyx │ ├── fused_redeclare_T3111.pyx │ ├── fused_unused.pyx │ ├── fused_wraparound.pyx │ ├── future_imports.pyx │ ├── gencall.pyx │ ├── getattr3ref.pyx.BROKEN │ ├── globalonly.pyx │ ├── globalstmt.pyx │ ├── globvardef.pyx │ ├── gustafsson2.pyx │ ├── hinsen1.h │ ├── hinsen1.pyx.BROKEN │ ├── hinsen2.pyx │ ├── huss2.pyx │ ├── ia_cdefblock.pyx │ ├── import.pyx │ ├── index.pyx │ ├── indices.pyx │ ├── inplace_lhs.pyx │ ├── inplace_ops.pyx │ ├── ishimoto1.pyx │ ├── ishimoto4.pyx │ ├── jiba3.pyx │ ├── jiba4.pyx │ ├── jiba5.pyx │ ├── jiba6.pyx │ ├── johnson1.pyx │ ├── johnson2.pyx │ ├── khavkine1.pyx │ ├── kleckner1.pyx │ ├── lepage_2.pyx │ ├── libc_all.pyx │ ├── libc_errno.pyx │ ├── libc_signal.pyx │ ├── libc_stdio.pyx │ ├── longunsigned.pyx │ ├── magcmp.pyx │ ├── min_async.pyx │ ├── module_name_arg.srctree │ ├── msvc_strings.pyx │ ├── nogil.h │ ├── nogil.pyx │ ├── nonctypedefclass.pyx │ ├── none.pyx │ ├── notnonearg.pyx │ ├── nullptr.pyx │ ├── omittedargnames.pyx │ ├── operators.h │ ├── packed_structs.pyx │ ├── parallel_compile_float_rank.pyx │ ├── pinard4.pyx │ ├── point.h │ ├── posix_pxds.pyx │ ├── publicapi_api.pyx │ ├── publicapi_cimport.pyx │ ├── publicapi_mix.pyx │ ├── publicapi_pub.pyx │ ├── publicapi_pxd_mix.pxd │ ├── publicapi_pxd_mix.pyx │ ├── pxd_mangling_names.srctree │ ├── pxd_override_T230.pxd │ ├── pxd_override_T230.py │ ├── pyclass.pyx │ ├── pylong.pyx │ ├── r_pernici1.pyx │ ├── signedtypes.pyx │ ├── slicex.pyx │ ├── specialfloatvals.pyx │ ├── specmethargdefault.pyx │ ├── specmethdocstring.pyx │ ├── specmethextarg.pyx │ ├── stop_async_iteration_exception_pep492.pyx │ ├── templates.h │ ├── traceback.pyx │ ├── tree_assertions.pyx │ ├── tryexcept.pyx │ ├── tryfinally.pyx │ ├── typecast.pyx │ ├── types_and_names.pxd │ ├── types_and_names.pyx │ ├── utf8bom.pyx │ ├── vector_include.pyx │ ├── verbatiminclude_cimport.srctree │ ├── volatile.pyx │ ├── watts2.pyx │ ├── weakref_T276.pyx │ ├── while.pyx │ └── withgil.pyx ├── cygwin_bugs.txt ├── errors │ ├── break_outside_loop.pyx │ ├── bufaccess_noassignT444.pyx │ ├── buffertypedef_T117.pyx │ ├── builtin_type_inheritance.pyx │ ├── callargs.pyx │ ├── callingnonexisting_T307.pyx │ ├── cdef_class_properties_decorated.pyx │ ├── cdef_func_decorators.pyx │ ├── cdef_func_syntax.pyx │ ├── cdef_in_pyclass.pyx │ ├── cdef_members_T517.pyx │ ├── cdef_syntax.pyx │ ├── cdefkwargs.pyx │ ├── cdefoptargs.pyx │ ├── cdefspecial.pyx │ ├── cfunc_directive_in_pyclass.pyx │ ├── cfuncptr.pyx │ ├── charptr_from_temp.pyx │ ├── cimport_attributes.pyx │ ├── cmethbasematch.pxd │ ├── cmethbasematch.pyx │ ├── compile_time_unraisable_T370.pyx │ ├── const_decl_errors.pyx │ ├── continue_outside_loop.pyx │ ├── cpdef_syntax.pyx │ ├── cpdef_vars.pyx │ ├── cpp_bool.pyx │ ├── cpp_class_gil_GH1986.pyx │ ├── cpp_comparison.pyx │ ├── cpp_enum_redeclare.pyx │ ├── cpp_increment.pyx │ ├── cpp_no_auto_conversion.pyx │ ├── cpp_no_const_iterator_conversion.pyx │ ├── cpp_no_constructor.pyx │ ├── cpp_object_template.pyx │ ├── cpp_rvalue_reference_support.pyx │ ├── cppexc_non_extern.pyx │ ├── cython3_bytes.pyx │ ├── dataclass_e1.pyx │ ├── dataclass_e4.pyx │ ├── dataclass_e5.pyx │ ├── dataclass_e6.pyx │ ├── dataclass_w1.pyx │ ├── dataclass_w1_othermod.pxd │ ├── declareafteruse_T158.pyx │ ├── dotted.module.pxd │ ├── dotted_filenames.pyx │ ├── duplicate_const.pyx │ ├── e2_packedstruct_T290.pyx │ ├── e_addop.pyx │ ├── e_addressof.pyx │ ├── e_argdefault.pyx │ ├── e_arrayassign.pyx │ ├── e_ass.pyx │ ├── e_assert.pyx │ ├── e_assnone.pyx │ ├── e_autotestdict.pyx │ ├── e_badexcvaltype.pyx │ ├── e_badfuncargtype.pyx │ ├── e_badpyparam.pyx │ ├── e_badtypeuse.pyx │ ├── e_binop_and.pyx │ ├── e_binop_or.pyx │ ├── e_bitop.pyx │ ├── e_boolcoerce.pyx │ ├── e_bufaccess.pyx │ ├── e_bufaccess2.pyx │ ├── e_bufaccess_pxd.pxd │ ├── e_callnonfunction.pyx │ ├── e_callspec.pyx │ ├── e_cdef_closure.pyx │ ├── e_cdef_in_py.py │ ├── e_cdef_keywords_T241.pyx │ ├── e_cdef_missing_declarator.pyx │ ├── e_cdef_yield.pyx │ ├── e_cdefassign.pyx │ ├── e_cdefemptysue.pyx │ ├── e_cenum.pyx │ ├── e_cenum_with_type.pyx │ ├── e_cmp.pyx │ ├── e_cpp_nogil.pyx │ ├── e_cpp_only_features.pyx │ ├── e_cpp_references.pyx │ ├── e_cstruct.pyx │ ├── e_ctypedefornot.pyx │ ├── e_cunion.pyx │ ├── e_cython_parallel.pyx │ ├── e_declarations.pyx │ ├── e_del.pyx │ ├── e_directives.pyx │ ├── e_exceptclause.pyx │ ├── e_excvalfunctype.pyx │ ├── e_exttype_freelist.pyx │ ├── e_exttype_total_ordering.pyx │ ├── e_extweakref.pyx │ ├── e_fstring.pyx │ ├── e_func_in_pxd.pyx │ ├── e_func_in_pxd_support.pxd │ ├── e_fused_closure.pyx │ ├── e_generators.pyx │ ├── e_index.pyx │ ├── e_int_literals_py2.py │ ├── e_int_literals_py3.py │ ├── e_invalid_num_threads.pyx │ ├── e_invalid_special_cython_modules.py │ ├── e_multass.pyx │ ├── e_nargs.pyx │ ├── e_nogilcmeth.pxd │ ├── e_nogilcmeth.pyx │ ├── e_nogilfunctype.pyx │ ├── e_nonlocal_T490.pyx │ ├── e_nosignword.pyx │ ├── e_notnone.pyx │ ├── e_notnone2.pyx │ ├── e_numop.pyx │ ├── e_powop.pyx │ ├── e_public_cdef_private_types.pyx │ ├── e_pure_cimports.pyx │ ├── e_pxdimpl.pyx │ ├── e_pxdimpl_imported.pxd │ ├── e_pyobinstruct.pyx │ ├── e_relative_cimport.pyx │ ├── e_return.pyx │ ├── e_sizeofincomplete.pyx │ ├── e_slice.pyx │ ├── e_strcoerce.pyx │ ├── e_subop.pyx │ ├── e_switch.pyx │ ├── e_switch_transform.pyx │ ├── e_tempcast.pyx │ ├── e_tuple_args_T692.py │ ├── e_typing_errors.pyx │ ├── e_typing_optional.py │ ├── e_undefexttype.pyx │ ├── e_unop.pyx │ ├── e_while.pyx │ ├── empty.pyx │ ├── encoding.pyx │ ├── exec_errors.pyx │ ├── extclassattrsetting.pyx │ ├── extended_unpacking.pyx │ ├── extended_unpacking_notuple.pyx │ ├── extended_unpacking_parser.pyx │ ├── extended_unpacking_parser2.pyx │ ├── final_methods.pyx │ ├── fused_syntax.pyx │ ├── fused_syntax_ctypedef.pyx │ ├── fused_types.pyx │ ├── futurebraces.pyx │ ├── incomplete_varadic.pyx │ ├── incorrectly_nested_gil_blocks.pyx │ ├── invalid_cast.pyx │ ├── invalid_hex_escape0.pyx │ ├── invalid_hex_escape1.pyx │ ├── invalid_syntax_py.pyx │ ├── invalid_uescape.pyx │ ├── invalid_uescape0.pyx │ ├── invalid_uescape2.pyx │ ├── invalid_uescapeN.pyx │ ├── literal_lists.pyx │ ├── missing_baseclass_in_predecl_T262.pyx │ ├── missing_self_in_cpdef_method_T156.pyx │ ├── missing_self_in_cpdef_method_T165.pyx │ ├── mod_errors.pyx │ ├── nogil.pyx │ ├── nogil_buffer_acquisition.pyx │ ├── nogil_conditional.pyx │ ├── nogilcmeth.pxd │ ├── nogilcmeth.pyx │ ├── nogilfunctype.pyx │ ├── nonconst_def.pyx │ ├── nonconst_def_tuple.pyx │ ├── nonconst_excval.pyx │ ├── notcimportedT418.pyx │ ├── parsed_directive.pyx │ ├── pep448_syntax_1.pyx │ ├── pep448_syntax_2.pyx │ ├── pep448_syntax_3.pyx │ ├── pep487_exttype.pyx │ ├── pep492_badsyntax_async1.pyx │ ├── pep492_badsyntax_async4.pyx │ ├── pep492_badsyntax_async5.pyx │ ├── pep492_badsyntax_async7.pyx │ ├── pep492_badsyntax_async8.pyx │ ├── pep492_badsyntax_async9.pyx │ ├── posonly.pyx │ ├── posonly2.pyx │ ├── posonly3.pyx │ ├── posonly4.pyx │ ├── posonly5.pyx │ ├── pure_cclass_without_body.pxd │ ├── pure_cclass_without_body.py │ ├── pure_errors.py │ ├── pure_nogil_conditional.py │ ├── pure_warnings.py │ ├── pxd_cdef_class_declaration_T286.pxd │ ├── pxd_cdef_class_declaration_T286.pyx │ ├── pxd_signature_mismatch.pxd │ ├── pxd_signature_mismatch.pyx │ ├── py_ucs4_type_errors.pyx │ ├── py_unicode_type_errors.pyx │ ├── pyobjcastdisallow_T313.pyx │ ├── redeclaration_of_var_by_cfunc_T600.pyx │ ├── return_outside_function_T135.pyx │ ├── reversed_literal_pyobjs.pyx │ ├── se_badindent.pyx │ ├── se_badindent2.pyx │ ├── se_mixtabspace.pyx │ ├── se_multass.pyx │ ├── string_assignments.pyx │ ├── subtyping_final_class.pyx │ ├── syntax_warnings.pyx │ ├── tree_assert.pyx │ ├── typoT304.pyx │ ├── undefinedname.pyx │ ├── unicode_identifiers_e1.pyx │ ├── unicode_identifiers_e2.pyx │ ├── unicode_identifiers_e3.pyx │ ├── unicode_identifiers_e4.pyx │ ├── uninitialized_lhs.pyx │ ├── void_as_arg.pyx │ ├── w_cdef_override.pyx │ ├── w_numpy_arr_as_cppvec_ref.pyx │ ├── w_python_list_as_cppset_ref.pyx │ ├── w_undeclared.pyx │ ├── w_uninitialized.pyx │ ├── w_uninitialized_cpp.pyx │ ├── w_uninitialized_del.pyx │ ├── w_uninitialized_exc.pyx │ ├── w_uninitialized_for.pyx │ ├── w_uninitialized_generators.pyx │ ├── w_uninitialized_py2.pyx │ ├── w_uninitialized_py3.pyx │ ├── w_uninitialized_while.pyx │ ├── w_uninitialized_with.pyx │ ├── w_unreachable.pyx │ ├── w_unreachable_cf.pyx │ ├── w_unused.pyx │ └── wraparound_warnings.pyx ├── graal_bugs.txt ├── limited_api_bugs.txt ├── macos_cpp_bugs.txt ├── memoryview │ ├── bufaccess.h │ ├── cfunc_convert_with_memoryview.pyx │ ├── compile_declarations.pyx │ ├── contig_check.pyx │ ├── cythonarray.pyx │ ├── error_declarations.pyx │ ├── extension_type_memoryview.pyx │ ├── memoryview.pxd │ ├── memoryview.pyx │ ├── memoryview_acq_count.srctree │ ├── memoryview_annotation_typing.py │ ├── memoryview_cache_builtins.srctree │ ├── memoryview_compare_type_pointers.srctree │ ├── memoryview_in_subclasses.pyx │ ├── memoryview_inline_pxd.srctree │ ├── memoryview_inplace_division.pyx │ ├── memoryview_no_binding_T3613.pyx │ ├── memoryview_no_withgil_check.pyx │ ├── memoryview_pep484_typing.pyx │ ├── memoryviewattrs.pyx │ ├── memslice.pyx │ ├── memview_assignments.pyx │ ├── numpy_memoryview.pyx │ ├── numpy_memoryview_readonly.pyx │ ├── parallel_refcounting_stress_test.pyx │ ├── relaxed_strides.pyx │ ├── transpose_refcount.pyx │ └── view_return_errors.pyx ├── pypy2_bugs.txt ├── pypy_bugs.txt ├── pypy_crash_bugs.txt ├── pypy_implementation_detail_bugs.txt ├── pyximport │ ├── pyximport_basic.srctree │ ├── pyximport_errors.srctree │ ├── pyximport_namespace.srctree │ ├── pyximport_pyimport.srctree │ ├── pyximport_pyimport_only.srctree │ └── pyximport_pyxbld.srctree ├── run │ ├── __debug__.srctree │ ├── __getattribute__.pyx │ ├── __getattribute_subclasses__.pyx │ ├── absolute_import.srctree │ ├── addloop.pyx │ ├── addop.pyx │ ├── addressof.pyx │ ├── all.pyx │ ├── altet2.pyx │ ├── always_allow_keywords_T295.pyx │ ├── and.pyx │ ├── annotate_html.pyx │ ├── annotation_typing.pyx │ ├── anonymousenum.pyx │ ├── any.pyx │ ├── append.pyx │ ├── arg_incref.pyx │ ├── argdefault.pyx │ ├── argerrors.py │ ├── args_unpacking_in_closure_T658.pyx │ ├── argument_unpacking_closure_T736.py │ ├── arithmetic_analyse_types.pyx │ ├── arithmetic_analyse_types_helper.h │ ├── array_address.pyx │ ├── array_cimport.srctree │ ├── arrayassign.pyx │ ├── ass2cglobal.pyx │ ├── ass2global.py │ ├── ass2local.pyx │ ├── assert.pyx │ ├── assigned_builtin_methods.pyx │ ├── async_def.pyx │ ├── async_globals.pyx │ ├── async_iter_pep492.pyx │ ├── asyncio_generators.srctree │ ├── attr.pyx │ ├── attribute_and_lambda.pyx │ ├── auto_cpdef.py │ ├── auto_cpdef_closures.py │ ├── autotestdict.pxd │ ├── autotestdict.pyx │ ├── autotestdict_all.pyx │ ├── autotestdict_cdef.pyx │ ├── autotestdict_skip.pyx │ ├── baas3.pyx │ ├── backquote.pyx │ ├── bad_c_struct_T252.pyx │ ├── behnel1.pyx │ ├── behnel2.pyx │ ├── behnel3.pyx │ ├── big_indices.pyx │ ├── binop_reverse_methods_GH2056.pyx │ ├── bint.pyx │ ├── bint_binop_T145.pyx │ ├── bint_property_T354.pyx │ ├── bishop1.pyx │ ├── bishop2.pyx │ ├── boolean_context.pyx │ ├── boolop.pyx │ ├── boolop_py.py │ ├── bound_builtin_methods_T589.pyx │ ├── broken_exception.pyx │ ├── buffer_n_overflowcheck_T5356.pyx │ ├── builtin_abs.pyx │ ├── builtin_basestring.pyx │ ├── builtin_callable.pyx │ ├── builtin_float.py │ ├── builtin_globals.py │ ├── builtin_len.pyx │ ├── builtin_memory_view.pyx │ ├── builtin_methods_return_values.pyx │ ├── builtin_min_max.pyx │ ├── builtin_next.pyx │ ├── builtin_ord.pyx │ ├── builtin_pow.pyx │ ├── builtin_py3.pyx │ ├── builtin_slice.pyx │ ├── builtin_sorted.pyx │ ├── builtin_subtype_methods_T653.pyx │ ├── builtin_subtype_methods_cy3.pyx │ ├── builtin_type.pyx │ ├── builtin_type_inheritance_T608.pyx │ ├── builtin_type_inheritance_T608_py2only.pyx │ ├── builtin_types_class.py │ ├── builtin_types_none_T166.pyx │ ├── builtincomplex.pyx │ ├── builtinnames.pyx │ ├── builtins_truth_test.pyx │ ├── builtinslice.pyx │ ├── bytearray_ascii_auto_encoding.pyx │ ├── bytearray_coercion.pyx │ ├── bytearray_default_auto_encoding.pyx │ ├── bytearray_iter.py │ ├── bytearraymethods.pyx │ ├── bytes_char_coercion.pyx │ ├── bytes_formatting.pyx │ ├── bytes_indexing.pyx │ ├── bytesmethods.pyx │ ├── c_file_validation.srctree │ ├── c_int_types_T255.pyx │ ├── c_type_methods_T236.pyx │ ├── call_crash.pyx │ ├── call_py_cy.pyx │ ├── callargs.pyx │ ├── capiimpl.pyx │ ├── carray_coercion.pyx │ ├── carray_slicing.pyx │ ├── carrays.pyx │ ├── cascaded_list_unpacking_T467.pyx │ ├── cascaded_typed_assignments_T466.pyx │ ├── cascadedassignment.pyx │ ├── cascmp.pyx │ ├── cclass_assign_attr_GH3100.pyx │ ├── cdef_bool_T227.pyx │ ├── cdef_class_dataclass.pyx │ ├── cdef_class_field.pyx │ ├── cdef_class_order.pyx │ ├── cdef_class_property_decorator_T264.pyx │ ├── cdef_classmethod.pyx │ ├── cdef_cpdef_override_GH543.srctree │ ├── cdef_decorator_directives_T183.pyx │ ├── cdef_function_kwargs.pyx │ ├── cdef_locals_decorator_T477.pyx │ ├── cdef_members_T517.pyx │ ├── cdef_members_binding_properties.pyx │ ├── cdef_methods_T462.pyx │ ├── cdef_multiple_inheritance.pyx │ ├── cdef_multiple_inheritance_cimport.srctree │ ├── cdef_multiple_inheritance_errors.srctree │ ├── cdef_multiple_inheritance_nodict.pyx │ ├── cdef_opt.pxd │ ├── cdef_opt.pyx │ ├── cdef_setitem_T284.pyx │ ├── cdefassign.pyx │ ├── cdefoptargs.pyx │ ├── cdivision_CEP_516.pyx │ ├── cf_none.pyx │ ├── cfunc_call_tuple_args_T408.pyx │ ├── cfunc_convert.pyx │ ├── cfuncdef.pyx │ ├── cfuncptr.pyx │ ├── char_constants_T99.pyx │ ├── charcomparisonT412.pyx │ ├── charencoding.pyx │ ├── charescape.pyx │ ├── charptr_comparison_T582.pyx │ ├── charptr_decode.pyx │ ├── charptr_from_temp.pyx │ ├── charptr_len.pyx │ ├── check_fused_types.pyx │ ├── check_fused_types_pxd.pxd │ ├── check_size.srctree │ ├── cimport.srctree │ ├── cimport_alias_subclass.pyx │ ├── cimport_alias_subclass_helper.pxd │ ├── cimport_cython_T505.pyx │ ├── cimport_from_pyx.srctree │ ├── cimport_from_sys_path.srctree │ ├── cintop.pyx │ ├── class_attribute_init_values_T18.pyx │ ├── class_func_in_control_structures_T87.pyx │ ├── class_redefine.py │ ├── class_scope.py │ ├── class_scope_del_T684.py │ ├── classbody_exec.pyx │ ├── classdecorators_T336.pyx │ ├── classkwonlyargs.pyx │ ├── classmethod.pyx │ ├── classpass.pyx │ ├── clear_to_null.pyx │ ├── clone_type.pyx │ ├── closure_arg_type_error.pyx │ ├── closure_class_T596.pyx │ ├── closure_decorators_T478.pyx │ ├── closure_in_derived_class_T2967.pyx │ ├── closure_inlining.pyx │ ├── closure_inside_cdef_T554.pyx │ ├── closure_leak_1.pyx │ ├── closure_name_mangling_T537.pyx │ ├── closure_names.pyx │ ├── closure_self.pyx │ ├── closure_tests_1.pyx │ ├── closure_tests_2.pyx │ ├── closure_tests_3.pyx │ ├── closure_tests_4.pyx │ ├── closures_T82.pyx │ ├── cmethod_inline_T474.pxd │ ├── cmethod_inline_T474.pyx │ ├── cmp.pyx │ ├── code_object_cache.pyx │ ├── coercearraytoptr.pyx │ ├── common_utility_types.srctree │ ├── compiledef.pyx │ ├── complex_cast_T445.pyx │ ├── complex_coercion_sideeffects_T693.pyx │ ├── complex_extern_GH1433.pyx │ ├── complex_int_T446.pyx │ ├── complex_numbers_T305.pyx │ ├── complex_numbers_T305_long_double.pyx │ ├── complex_numbers_c89_T398.h │ ├── complex_numbers_c89_T398.pyx │ ├── complex_numbers_c89_T398_long_double.pyx │ ├── complex_numbers_c99_T398.h │ ├── complex_numbers_c99_T398.pyx │ ├── complex_numbers_cmath_T2891.pyx │ ├── complex_numbers_cpp.pyx │ ├── complex_numbers_cxx_T398.h │ ├── complex_numbers_cxx_T398.pyx │ ├── concatcstrings.pyx │ ├── constant_folding.py │ ├── constant_folding_cy.pyx │ ├── constants.pyx │ ├── contains_T455.pyx │ ├── control_flow_except_T725.pyx │ ├── control_flow_loop.pyx │ ├── control_flow_stack_allocation.pyx │ ├── coroutines.py │ ├── coverage_api.srctree │ ├── coverage_cmd.srctree │ ├── coverage_cmd_src_layout.srctree │ ├── coverage_cmd_src_pkg_layout.srctree │ ├── coverage_installed_pkg.srctree │ ├── coverage_nogil.srctree │ ├── cpdef_enums.pxd │ ├── cpdef_enums.pyx │ ├── cpdef_enums_import.srctree │ ├── cpdef_extern_func.pxd │ ├── cpdef_extern_func.pyx │ ├── cpdef_extern_func_in_py.pxd │ ├── cpdef_extern_func_in_py.py │ ├── cpdef_method_override.pyx │ ├── cpdef_method_override_recursion.pyx │ ├── cpdef_nogil.pyx │ ├── cpdef_optargs.pyx │ ├── cpdef_optargs_pure.pxd │ ├── cpdef_optargs_pure.py │ ├── cpdef_pickle.srctree │ ├── cpdef_scoped_enums.pyx │ ├── cpdef_scoped_enums_import.srctree │ ├── cpdef_temps_T411.pyx │ ├── cpdef_void_return.pyx │ ├── cpow.pyx │ ├── cpp_assignment_overload.srctree │ ├── cpp_bool.pyx │ ├── cpp_bool_template_return.pyx │ ├── cpp_call_stack_allocated.srctree │ ├── cpp_class_attrib.srctree │ ├── cpp_class_redef.pxd │ ├── cpp_class_redef.pyx │ ├── cpp_classes.pyx │ ├── cpp_classes_def.pyx │ ├── cpp_const_method.pyx │ ├── cpp_custom_string.srctree │ ├── cpp_enums.pyx │ ├── cpp_exceptions.pyx │ ├── cpp_exceptions_helper.h │ ├── cpp_exceptions_nogil.pyx │ ├── cpp_exceptions_nogil_helper.h │ ├── cpp_exceptions_utility_code.pyx │ ├── cpp_extern.srctree │ ├── cpp_forwarding_ref.pyx │ ├── cpp_function_lib.cpp │ ├── cpp_function_lib.h │ ├── cpp_function_lib.pxd │ ├── cpp_iterators.pyx │ ├── cpp_iterators_over_attribute_of_rvalue_support.h │ ├── cpp_iterators_simple.h │ ├── cpp_locals_directive.pyx │ ├── cpp_locals_directive_unused.pyx │ ├── cpp_locals_parallel.pyx │ ├── cpp_move.pyx │ ├── cpp_namespaces.pyx │ ├── cpp_namespaces_helper.h │ ├── cpp_nested_classes.pyx │ ├── cpp_nested_classes_support.h │ ├── cpp_nested_names.pxd │ ├── cpp_nested_names_helper.h │ ├── cpp_nested_templates.pyx │ ├── cpp_nonstdint.h │ ├── cpp_nonstdint.pyx │ ├── cpp_operator_exc_handling.pyx │ ├── cpp_operator_exc_handling_helper.hpp │ ├── cpp_operators.pyx │ ├── cpp_operators_helper.h │ ├── cpp_scoped_enums.pyx │ ├── cpp_smart_ptr.pyx │ ├── cpp_smart_ptr_helper.h │ ├── cpp_static_method_overload.pyx │ ├── cpp_stl.pyx │ ├── cpp_stl_algo_comparison_ops.pyx │ ├── cpp_stl_algo_execpolicies.pyx │ ├── cpp_stl_algo_minmax_ops.pyx │ ├── cpp_stl_algo_modifying_sequence_ops.pyx │ ├── cpp_stl_algo_nonmodifying_sequence_ops.pyx │ ├── cpp_stl_algo_partitioning_ops.pyx │ ├── cpp_stl_algo_permutation_ops.pyx │ ├── cpp_stl_algo_sample.pyx │ ├── cpp_stl_algo_sorted_ranges_other_ops.pyx │ ├── cpp_stl_algo_sorted_ranges_set_ops.pyx │ ├── cpp_stl_algo_sorting_ops.pyx │ ├── cpp_stl_any.pyx │ ├── cpp_stl_associated_containers_contains_cpp20.pyx │ ├── cpp_stl_atomic.pyx │ ├── cpp_stl_bit_cpp20.pyx │ ├── cpp_stl_cmath_cpp17.pyx │ ├── cpp_stl_cmath_cpp20.pyx │ ├── cpp_stl_conversion.pyx │ ├── cpp_stl_cpp11.pyx │ ├── cpp_stl_forward_list.pyx │ ├── cpp_stl_function.pyx │ ├── cpp_stl_list.pyx │ ├── cpp_stl_list_cpp11.pyx │ ├── cpp_stl_map.pyx │ ├── cpp_stl_multimap.pyx │ ├── cpp_stl_multiset.pyx │ ├── cpp_stl_numbers.pyx │ ├── cpp_stl_numeric_ops.pyx │ ├── cpp_stl_numeric_ops_cpp17.pyx │ ├── cpp_stl_numeric_ops_cpp20.pyx │ ├── cpp_stl_optional.pyx │ ├── cpp_stl_random.pyx │ ├── cpp_stl_set.pyx │ ├── cpp_stl_string.pyx │ ├── cpp_stl_string_ascii_auto_encoding.pyx │ ├── cpp_stl_string_ascii_auto_encoding_str.pyx │ ├── cpp_stl_string_cpp11.pyx │ ├── cpp_stl_string_cpp20.pyx │ ├── cpp_stl_string_utf8_auto_encoding.pyx │ ├── cpp_stl_vector.pyx │ ├── cpp_stl_vector_cpp11.pyx │ ├── cpp_template_functions.pyx │ ├── cpp_template_functions_helper.h │ ├── cpp_template_ref_args.h │ ├── cpp_template_ref_args.pyx │ ├── cpp_template_subclasses.pyx │ ├── cpp_template_subclasses_helper.h │ ├── cpp_templates.pyx │ ├── cpp_templates_helper.h │ ├── cpp_type_inference.pyx │ ├── cpp_unordered_map_helper.h │ ├── cpp_vector_in_generator.pyx │ ├── cpython_capi.pyx │ ├── cpython_capi_py35.pyx │ ├── crashT245.h │ ├── crashT245.pyx │ ├── crashT245_pxd.pxd │ ├── cross_closure_type_inference.pyx │ ├── cstringmeth.pyx │ ├── cstringmul.pyx │ ├── cstruct.pyx │ ├── ct_DEF.pyx │ ├── ct_IF.pyx │ ├── ctruthtests.pyx │ ├── ctuple.pyx │ ├── ctypedef_bint.pyx │ ├── ctypedef_char_types.pyx │ ├── ctypedef_delegation.pyx │ ├── ctypedef_int_types_T333.pyx │ ├── ctypedef_int_types_chdr_T333.h │ ├── ctypedef_int_types_defs_T333.pxd │ ├── cunion.pyx │ ├── curiously_recurring_template_pattern_GH1458.pyx │ ├── curiously_recurring_template_pattern_GH1458_suport.h │ ├── cyclic_gc.pyx │ ├── cyfunction.pyx │ ├── cyfunction_METH_O_GH1728.pyx │ ├── cyfunction_defaults.pyx │ ├── cyfunction_defaults_cpp.pyx │ ├── cython2_bytes.pyx │ ├── cython3.pyx │ ├── cython3_no_unicode_literals.pyx │ ├── cython_includes.pyx │ ├── cython_no_files.srctree │ ├── cythonscope.pyx │ ├── datetime_cimport.pyx │ ├── datetime_members.pyx │ ├── datetime_pxd.pyx │ ├── decorator_lambda.pyx │ ├── decorators.pyx │ ├── decorators_T593.pyx │ ├── decorators_py_T593.py │ ├── default_args_T674.py │ ├── default_optional_gh5643.py │ ├── define_macro.pyx │ ├── define_macro_helper.h │ ├── defnode_err_val.pyx │ ├── delete.pyx │ ├── delslice.py │ ├── dict.pyx │ ├── dict_get.pyx │ ├── dict_getitem.pyx │ ├── dict_iter_unpack.pyx │ ├── dict_pop.pyx │ ├── dict_setdefault.py │ ├── dict_values_in_expression.pyx │ ├── dictcomp.pyx │ ├── dictintindex.pyx │ ├── dietachmayer1.pyx │ ├── different_package_names.srctree │ ├── directive_locals_in_pxd.pxd │ ├── directive_locals_in_pxd.py │ ├── division_T384.pyx │ ├── dotted_filenames.srctree │ ├── double_dealloc_T796.pyx │ ├── duplicate_keyword_in_call.py │ ├── duplicate_utilitycode_from_pyx.srctree │ ├── dynamic_args.pyx │ ├── dynamic_attributes.pxd │ ├── dynamic_attributes.pyx │ ├── ellipsis_T488.pyx │ ├── embedsignatures.pyx │ ├── embedsignatures_clinic.pyx │ ├── embedsignatures_python.pyx │ ├── empty_builtin_constructors.pyx │ ├── empty_declarators.pyx │ ├── empty_for_loop_T208.pyx │ ├── enumboolctx.pyx │ ├── enumerate_T316.pyx │ ├── error_pos.srctree │ ├── eval.pyx │ ├── exarkun.pyx │ ├── exceptionpropagation.pyx │ ├── exceptionrefcount.pyx │ ├── exceptions_nogil.pyx │ ├── exec_noargs.pyx │ ├── exectest.pyx │ ├── existing_output_files.srctree │ ├── ext_attr_assign.pyx │ ├── ext_attr_getter.srctree │ ├── ext_attribute_cache.pyx │ ├── ext_auto_richcmp.py │ ├── ext_instance_type_T232.pyx │ ├── ext_type_none_arg.pyx │ ├── extclassbody.pyx │ ├── extclasspass.pyx │ ├── extcmethod.pyx │ ├── extended_unpacking_T235.pyx │ ├── extended_unpacking_T409.pyx │ ├── extern_builtins_T258.pyx │ ├── extern_impl.srctree │ ├── extern_impl_excvalue.srctree │ ├── extern_include_order.srctree │ ├── extern_varobject_extensions.srctree │ ├── external_defs.h │ ├── external_inline_declaration.srctree │ ├── external_ref_reassignment.pyx │ ├── extinherit.pyx │ ├── extinstantiate.pyx │ ├── extkwonlyargs.pyx │ ├── extlen.pyx │ ├── extmember.pxd │ ├── extmember.pyx │ ├── extpropertyref.pyx │ ├── extra_walrus.py │ ├── extstarargs.pyx │ ├── exttype.pyx │ ├── exttype_dealloc.pyx │ ├── exttype_freelist.pyx │ ├── exttype_gc.pyx │ ├── exttype_total_ordering.pyx │ ├── fastcall.pyx │ ├── file_encoding_T740.py │ ├── filenames.pxi │ ├── filenames.pyx │ ├── final_cdef_class.pyx │ ├── final_in_pxd.srctree │ ├── final_method_T586.pyx │ ├── flatin.pyx │ ├── float_division.pyx │ ├── float_floor_division_T260.pyx │ ├── float_len_T480.pyx │ ├── fmod.pyx │ ├── for_decrement.pyx │ ├── for_from_float_T254.pyx │ ├── for_from_pyvar_loop_T601.pyx │ ├── for_in_break_continue_T533.pyx │ ├── for_in_iter.py │ ├── for_in_range_T372.pyx │ ├── for_in_string.pyx │ ├── forfrom.pyx │ ├── fstring.pyx │ ├── funcexc_iter_T228.pyx │ ├── funcexcept.pyx │ ├── funcexceptchained.pyx │ ├── funcexceptcypy.pyx │ ├── funcexceptraise.pyx │ ├── funcexceptraisefrom.pyx │ ├── funcexceptreplace.pyx │ ├── funcexceptreraise.pyx │ ├── funcexceptreturn.pyx │ ├── function_as_method_T494.pyx │ ├── function_as_method_py_T494.py │ ├── function_binding_T494.pyx │ ├── function_self.py │ ├── fused_bound_functions.py │ ├── fused_cmethods.srctree │ ├── fused_cpdef.pyx │ ├── fused_cpp.pyx │ ├── fused_def.pyx │ ├── fused_types.pyx │ ├── fused_types_complex.pyx │ ├── future_division.pyx │ ├── future_unicode_literals.pyx │ ├── generator_expressions.pyx │ ├── generator_expressions_and_locals.pyx │ ├── generator_expressions_in_class.py │ ├── generator_expressions_nested.pyx │ ├── generator_frame_cycle.py │ ├── generator_type_inference.pyx │ ├── generators.pyx │ ├── generators_GH1731.pyx │ ├── generators_in_refcycles.pyx │ ├── generators_pep479.pyx │ ├── generators_py.py │ ├── generators_py35.py │ ├── genexpr_T491.pyx │ ├── genexpr_T715.pyx │ ├── genexpr_arg_order.py │ ├── genexpr_iterable_lookup_T600.pyx │ ├── getattr3call.pyx │ ├── hasattr.pyx │ ├── hash_T326.pyx │ ├── if.pyx │ ├── if_and_or.pyx │ ├── if_const.pyx │ ├── if_else_expr.pyx │ ├── if_else_expr_cpp.pyx │ ├── if_else_expr_cpp_helper.h │ ├── ifelseexpr_T267.pyx │ ├── import_error_T734.py │ ├── import_star.pyx │ ├── importas.pyx │ ├── importas_from_package.srctree │ ├── importfrom.pyx │ ├── in_list_with_side_effects_T544.pyx │ ├── include.pyx │ ├── include_multiple_modules.srctree │ ├── includes │ │ ├── a.h │ │ ├── all.pyx │ │ ├── b.h │ │ ├── b.pxd │ │ ├── c.h │ │ ├── d.h │ │ ├── d.pxd │ │ ├── e.h │ │ ├── includefile.pxi │ │ └── indirect_d.pxd │ ├── index.pyx │ ├── inhcmethcall.pyx │ ├── inherited_final_method.pyx │ ├── initial_file_path.srctree │ ├── inline.pyx │ ├── inlined_context_manager.pyx │ ├── inlined_generator_expressions.pyx │ ├── inlinepxd.pxd │ ├── inlinepxd.pyx │ ├── inlinepxd_support.pxd │ ├── inop.pyx │ ├── inplace.pyx │ ├── int128.pyx │ ├── int_float_builtins_as_casts_T400.pyx │ ├── int_float_builtins_as_casts_T400_long_double.pyx │ ├── int_literals.pyx │ ├── intern_T431.pyx │ ├── internal_cdef_class.pyx │ ├── ipow_crash_T562.pyx │ ├── ishimoto2.pyx │ ├── ishimoto3.pyx │ ├── isinstance.pyx │ ├── isnonebool.pyx │ ├── isnot.pyx │ ├── isolated_limited_api_tests.srctree │ ├── iter.pyx │ ├── iteratorexception.pyx │ ├── iterdict.pyx │ ├── jarausch1.pyx │ ├── king1.pyx │ ├── knuth_man_or_boy_test.pyx │ ├── kostyrka.pyx │ ├── kostyrka2.pyx │ ├── kwargproblems.pyx │ ├── kwargs_passthrough.pyx │ ├── kwonlyargs.pyx │ ├── kwonlyargscall.pyx │ ├── lambda_T195.pyx │ ├── lambda_T723.pyx │ ├── lambda_class_T605.pyx │ ├── lambda_module_T603.pyx │ ├── lambda_tests.pyx │ ├── language_level.srctree │ ├── large_consts_T237.pyx │ ├── large_integer_T5290.py │ ├── legacy_implicit_noexcept.pyx │ ├── legacy_implicit_noexcept_build.srctree │ ├── lepage_1.pyx │ ├── letnode_T766.pyx │ ├── libc_math.pyx │ ├── libc_stdlib.pyx │ ├── libc_time.pyx │ ├── libcpp_algo.pyx │ ├── libcpp_all.pyx │ ├── line_profile_test.srctree │ ├── line_trace.pyx │ ├── list.pyx │ ├── list_comp_in_closure_T598.pyx │ ├── list_pop.pyx │ ├── listcomp.pyx │ ├── literal_lists.pyx │ ├── literals.pyx │ ├── literalslice.pyx │ ├── locals.pyx │ ├── locals_T732.pyx │ ├── locals_expressions_T430.pyx │ ├── locals_rebind_T429.pyx │ ├── longintrepr.pyx │ ├── longlongindex.pyx │ ├── lvalue_refs.pyx │ ├── mangle_c_keywords.pyx │ ├── matrix_multiplier.pyx │ ├── memoryview_namespace_T775.pyx │ ├── memview_vector.pyx │ ├── menten1.pyx │ ├── metaclass.pyx │ ├── method_module_name_T422.pyx │ ├── methodmangling_T5.py │ ├── methodmangling_cdef.pxd │ ├── methodmangling_cdef.pyx │ ├── methodmangling_pure.py │ ├── methodmangling_unknown_names.py │ ├── mod__name__.pyx │ ├── mod__spec__.pyx │ ├── modbody.pyx │ ├── modop.pyx │ ├── module_init_error.srctree │ ├── moduletryexcept.pyx │ ├── mulop.pyx │ ├── multass.pyx │ ├── new_as_nonkeyword.pyx │ ├── new_style_exceptions.pyx │ ├── no_gc.pyx │ ├── no_gc_clear.pyx │ ├── nogil.pyx │ ├── nogil_conditional.pyx │ ├── non_const_as_const_arg.pyx │ ├── non_dict_kwargs_T470.pyx │ ├── non_future_division.pyx │ ├── nonecheck.pyx │ ├── nonlocal_T490.pyx │ ├── nononetypecheck.pyx │ ├── notinop.pyx │ ├── numpy_ValueError_T172.pyx │ ├── numpy_attributes.pyx │ ├── numpy_bufacc_T155.pyx │ ├── numpy_cimport.pyx │ ├── numpy_cimport_1.pyx │ ├── numpy_cimport_2.pyx │ ├── numpy_cimport_3.pyx │ ├── numpy_cimport_4.pyx │ ├── numpy_cimport_5.pyx │ ├── numpy_cimport_6.pyx │ ├── numpy_import_array_error.srctree │ ├── numpy_math.pyx │ ├── numpy_parallel.pyx │ ├── numpy_pythran.pyx │ ├── numpy_pythran_unit.pyx │ ├── numpy_subarray.pyx │ ├── numpy_test.pyx │ ├── onelinesuite.py │ ├── ooo_base_classes.pyx │ ├── or.pyx │ ├── overflow_check.pxi │ ├── overflow_check_int.pyx │ ├── overflow_check_longlong.pyx │ ├── overflow_check_uint.pyx │ ├── overflow_check_ulonglong.pyx │ ├── owned_arg_refs.pyx │ ├── packedstruct_T290.pyx │ ├── parallel.pyx │ ├── parallel_swap_assign_T425.pyx │ ├── partial_circular_import.srctree │ ├── pass.pyx │ ├── pep442_tp_finalize.pyx │ ├── pep442_tp_finalize_cimport.srctree │ ├── pep448_extended_unpacking.pyx │ ├── pep448_test_extcall.pyx │ ├── pep526_variable_annotations.py │ ├── pep526_variable_annotations_cy.pyx │ ├── pep557_dataclasses.py │ ├── pep563_annotations.py │ ├── pinard5.pyx │ ├── pinard6.pyx │ ├── pinard7.pyx │ ├── pinard8.pyx │ ├── pointers.pyx │ ├── posix_resource.pyx │ ├── posix_test.pyx │ ├── posix_time.pyx │ ├── posonly.py │ ├── powop.pyx │ ├── print.pyx │ ├── print_function.pyx │ ├── print_refcount.pyx │ ├── property_decorator_T593.py │ ├── pstats_profile_test.pyx │ ├── pstats_profile_test_py.py │ ├── pstats_profile_test_pycfunc.pyx │ ├── ptr_warning_T714.pyx │ ├── ptrdiff_t.pyx │ ├── public_enum.pyx │ ├── public_fused_types.srctree │ ├── pure.pyx │ ├── pure_cdef_class_dataclass.py │ ├── pure_cdef_class_property_decorator_T264.pxd │ ├── pure_cdef_class_property_decorator_T264.py │ ├── pure_fused.pxd │ ├── pure_fused.py │ ├── pure_mode_cmethod_inheritance_T583.pxd │ ├── pure_mode_cmethod_inheritance_T583.py │ ├── pure_nogil_conditional.pyx │ ├── pure_parallel.py │ ├── pure_pxd.srctree │ ├── pure_py.py │ ├── pure_py3.py │ ├── pure_py_cimports.py │ ├── pure_pyx_cimports.pyx │ ├── purecdef.py │ ├── pxd_argument_names.srctree │ ├── pxd_signature_excvalue.srctree │ ├── pxd_syntax.srctree │ ├── py2_super.pyx │ ├── py34_signature.pyx │ ├── py35_asyncio_async_def.srctree │ ├── py35_pep492_interop.pyx │ ├── py3k_super.pyx │ ├── py_classbody.py │ ├── py_hash_t.pyx │ ├── py_ucs4_type.pyx │ ├── py_unicode_strings.pyx │ ├── py_unicode_type.pyx │ ├── pyarray.pyx │ ├── pycapsule.pyx │ ├── pyclass_annotations_pep526.py │ ├── pyclass_dynamic_bases.pyx │ ├── pyclass_scope_T671.py │ ├── pyclass_special_methods.pyx │ ├── pycmp.pyx │ ├── pycontextvar.pyx │ ├── pyextattrref.pyx │ ├── pyfunction_redefine_T489.pyx │ ├── pyintop.pyx │ ├── pylistsubtype.pyx │ ├── pynumber_subtype_conversion.pyx │ ├── pynumop.pyx │ ├── pyobjcast_T313.pyx │ ├── pyparam_nogil.pyx │ ├── python_bool_type.pyx │ ├── pytype.pyx │ ├── qualname.py │ ├── r_addint.pyx │ ├── r_argdefault.pyx │ ├── r_barbieri1.pyx │ ├── r_bishop3.pyx │ ├── r_bowden1.pyx │ ├── r_delgado_1.pyx │ ├── r_docstrings.pyx │ ├── r_extcomplex2.pyx │ ├── r_extstarargs.pyx │ ├── r_forloop.pyx │ ├── r_hordijk1.pyx │ ├── r_huss3.pyx │ ├── r_jeff_epler_1.pyx │ ├── r_jiba1.pxd │ ├── r_jiba1.pyx │ ├── r_lepage_3.pyx │ ├── r_mang1.pyx │ ├── r_mcintyre1.pyx │ ├── r_mitch_chapman_2.pyx │ ├── r_primes.pyx │ ├── r_print.pyx │ ├── r_pyclass.pyx │ ├── r_pyclassdefault.pyx │ ├── r_pythonapi.pyx │ ├── r_spamtype.pyx │ ├── r_starargcall.pyx │ ├── r_starargs.pyx │ ├── r_starargsonly.pyx │ ├── r_toofewargs.pyx │ ├── r_typecast.pyx │ ├── r_uintindex.pyx │ ├── r_vree_1.pyx │ ├── raise_memory_error_T650.pyx │ ├── range_optimisation_T203.pyx │ ├── reduce_pickle.pyx │ ├── ref2global.py │ ├── ref2local.pyx │ ├── refcount_in_meth.pyx │ ├── reimport.pyx │ ├── reimport_failure.srctree │ ├── reimport_from_package.srctree │ ├── reimport_from_subinterpreter.srctree │ ├── relative_cimport.srctree │ ├── relative_cimport_compare.srctree │ ├── relative_import_leak.srctree │ ├── relativeimport_T542.srctree │ ├── relativeimport_star_T542.pyx │ ├── reload_ext_module.pyx │ ├── reraise.py │ ├── reraise_3args.pyx │ ├── return.pyx │ ├── reversed_iteration.pyx │ ├── richcmp_str_equals.py │ ├── rodriguez_1.pyx │ ├── scanner_trace.srctree │ ├── self_in_ext_type_closure.pyx │ ├── seq_mul.py │ ├── sequential_parallel.pyx │ ├── set.pyx │ ├── set_discard_remove.py │ ├── set_item.pyx │ ├── set_iter.pyx │ ├── set_literals.py │ ├── set_new.py │ ├── setcomp.pyx │ ├── setjmp.pyx │ ├── shapes.h │ ├── short_circuit_T404.pyx │ ├── simpcall.pyx │ ├── size_t.pyx │ ├── sizeof.pyx │ ├── slice2.pyx │ ├── slice2_T636.py │ ├── slice2b.pyx │ ├── slice3.pyx │ ├── slice_charptr.pyx │ ├── slice_ptr.pyx │ ├── special_method_docstrings.pyx │ ├── special_methods_T561.pyx │ ├── special_methods_T561_py2.pyx │ ├── special_methods_T561_py3.pyx │ ├── special_methods_T561_py38.pyx │ ├── specialfloat.pyx │ ├── ssize_t_T399.pyx │ ├── starargs.pyx │ ├── starimport_cimport.srctree │ ├── starred_target_T664.pyx │ ├── static_methods.pxd │ ├── static_methods.pyx │ ├── staticmethod.pyx │ ├── str_ascii_auto_encoding.pyx │ ├── str_char_coercion_T412.pyx │ ├── str_default_auto_encoding.pyx │ ├── str_encoding_latin1.pyx │ ├── str_subclass_kwargs.pyx │ ├── strconstinclass.pyx │ ├── strescapes.pyx │ ├── strfunction.pyx │ ├── string_comparison.pyx │ ├── strliterals.pyx │ ├── strmethods.pyx │ ├── struct_conversion.pyx │ ├── struct_conversion_extern.pyx │ ├── struct_conversion_extern_header.h │ ├── subclasses.pyx │ ├── subop.pyx │ ├── switch.pyx │ ├── switch_transform.pyx │ ├── tandemstats.pyx │ ├── temp_alloc_T409.pyx │ ├── temp_sideeffects_T654.pyx │ ├── temps_corner1.pyx │ ├── test_asyncgen.py │ ├── test_call.py │ ├── test_coroutines_pep492.pyx │ ├── test_dataclasses.pxi │ ├── test_dataclasses.pyx │ ├── test_dictviews.pyx │ ├── test_exceptions.pyx │ ├── test_fstring.pyx │ ├── test_genericclass.py │ ├── test_genericclass_exttype.pyx │ ├── test_grammar.py │ ├── test_named_expressions.py │ ├── test_raisefrom.pyx │ ├── test_shadow_error.py │ ├── test_subclassinit.py │ ├── test_unicode.pyx │ ├── test_unicode_string_tests.pxi │ ├── testinclude.pxi │ ├── ticket_123.pyx │ ├── ticket_124.pyx │ ├── time_pxd.pyx │ ├── tp_new.pyx │ ├── tp_new_T454.pyx │ ├── tp_new_cimport.srctree │ ├── trace_nogil.pyx │ ├── tracebacks.pyx │ ├── trashcan.pyx │ ├── trybreak.pyx │ ├── tryexcept.pyx │ ├── tryfinally.pyx │ ├── tryfinallychaining.pyx │ ├── tss.pyx │ ├── tuple.pyx │ ├── tuple_constants.pyx │ ├── tuple_unpack_string.pyx │ ├── tupleassign.pyx │ ├── tuplereassign.pyx │ ├── tupleunpack_T298.pyx │ ├── tupleunpack_T712.pyx │ ├── type_inference.pyx │ ├── type_inference_T768.pyx │ ├── type_inference_T768_cpp.pyx │ ├── type_inference_new.pyx │ ├── type_slots_int_long_T287.pyx │ ├── type_slots_nonzero_bool.pyx │ ├── typed_slice.pyx │ ├── typeddefaultargT373.pyx │ ├── typedfieldbug_T303.pyx │ ├── typeof.pyx │ ├── typeofexttype.pyx │ ├── types.h │ ├── typetest_T417.pyx │ ├── typing_module.py │ ├── typing_module_cy.pyx │ ├── ufunc.pyx │ ├── unbound_builtin_methods.pyx │ ├── unbound_special_methods.pyx │ ├── unicode_ascii_auto_encoding.pyx │ ├── unicode_default_auto_encoding.pyx │ ├── unicode_formatting.pyx │ ├── unicode_identifiers.pxd │ ├── unicode_identifiers.pyx │ ├── unicode_identifiers_import.pyx │ ├── unicode_identifiers_normalization.srctree │ ├── unicode_imports.srctree │ ├── unicode_indexing.pyx │ ├── unicode_kwargs.pyx │ ├── unicode_slicing.pyx │ ├── unicodeencode.pyx │ ├── unicodefunction.pyx │ ├── unicodeliterals.pyx │ ├── unicodeliteralsdefault.pyx │ ├── unicodeliteralslatin1.pyx │ ├── unicodemethods.pyx │ ├── uninitialized.py │ ├── unop.pyx │ ├── unop_extras.pyx │ ├── unpack.pyx │ ├── unpack_fused.pyx │ ├── unpacklistcomp.pyx │ ├── unreachable.pyx │ ├── unsigned.pyx │ ├── unsigned_char_ptr_bytes_conversion_T359.pyx │ ├── unsignedbehaviour_T184.pyx │ ├── unused.pyx │ ├── unused_args.pyx │ ├── varargcall.pyx │ ├── varargdecl.pyx │ ├── verbatiminclude.h │ ├── verbatiminclude.pyx │ ├── versioned_pxds.srctree │ ├── voidstarcast.pyx │ ├── watts1.pyx │ ├── weakfail.pyx │ ├── with_gil.pyx │ ├── with_gil_automatic.pyx │ ├── with_statement_module_level_T536.pyx │ ├── withnogil.pyx │ ├── withstat.pyx │ ├── withstat_py.py │ ├── withstat_py27.py │ ├── wundram1.pyx │ ├── yield_from_pep380.pyx │ ├── yield_from_py33.pyx │ └── yield_inside_lambda.py ├── testsupport │ └── cythonarrayutil.pxi ├── windows_bugs.txt ├── windows_bugs_39.txt └── wrappers │ ├── cpp_overload_wrapper.pyx │ ├── cpp_overload_wrapper_lib.cpp │ ├── cpp_overload_wrapper_lib.h │ ├── cpp_overload_wrapper_lib.pxd │ ├── cpp_references.pyx │ ├── cpp_references_helper.h │ ├── cppwrap.pyx │ ├── cppwrap_lib.cpp │ ├── cppwrap_lib.h │ └── cppwrap_lib.pxd └── tox.ini /.codespellrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/.codespellrc -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/code-of-conduct.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/.github/code-of-conduct.md -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/wheels.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/.github/workflows/wheels.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/.gitignore -------------------------------------------------------------------------------- /.hgignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/.hgignore -------------------------------------------------------------------------------- /.hgtags: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/.hgtags -------------------------------------------------------------------------------- /.mailmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/.mailmap -------------------------------------------------------------------------------- /.readthedocs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/.readthedocs.yaml -------------------------------------------------------------------------------- /BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/BUILD.bazel -------------------------------------------------------------------------------- /CHANGES.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/CHANGES.rst -------------------------------------------------------------------------------- /COPYING.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/COPYING.txt -------------------------------------------------------------------------------- /Cython/Build/Cythonize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/Cython/Build/Cythonize.py -------------------------------------------------------------------------------- /Cython/Build/Dependencies.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/Cython/Build/Dependencies.py -------------------------------------------------------------------------------- /Cython/Build/Distutils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/Cython/Build/Distutils.py -------------------------------------------------------------------------------- /Cython/Build/Inline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/Cython/Build/Inline.py -------------------------------------------------------------------------------- /Cython/Build/IpythonMagic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/Cython/Build/IpythonMagic.py -------------------------------------------------------------------------------- /Cython/Build/Tests/__init__.py: -------------------------------------------------------------------------------- 1 | # empty file 2 | -------------------------------------------------------------------------------- /Cython/Build/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/Cython/Build/__init__.py -------------------------------------------------------------------------------- /Cython/CodeWriter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/Cython/CodeWriter.py -------------------------------------------------------------------------------- /Cython/Compiler/Annotate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/Cython/Compiler/Annotate.py -------------------------------------------------------------------------------- /Cython/Compiler/Buffer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/Cython/Compiler/Buffer.py -------------------------------------------------------------------------------- /Cython/Compiler/Builtin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/Cython/Compiler/Builtin.py -------------------------------------------------------------------------------- /Cython/Compiler/CmdLine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/Cython/Compiler/CmdLine.py -------------------------------------------------------------------------------- /Cython/Compiler/Code.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/Cython/Compiler/Code.pxd -------------------------------------------------------------------------------- /Cython/Compiler/Code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/Cython/Compiler/Code.py -------------------------------------------------------------------------------- /Cython/Compiler/Dataclass.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/Cython/Compiler/Dataclass.py -------------------------------------------------------------------------------- /Cython/Compiler/DebugFlags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/Cython/Compiler/DebugFlags.py -------------------------------------------------------------------------------- /Cython/Compiler/Errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/Cython/Compiler/Errors.py -------------------------------------------------------------------------------- /Cython/Compiler/ExprNodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/Cython/Compiler/ExprNodes.py -------------------------------------------------------------------------------- /Cython/Compiler/FusedNode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/Cython/Compiler/FusedNode.py -------------------------------------------------------------------------------- /Cython/Compiler/Future.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/Cython/Compiler/Future.py -------------------------------------------------------------------------------- /Cython/Compiler/Lexicon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/Cython/Compiler/Lexicon.py -------------------------------------------------------------------------------- /Cython/Compiler/Main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/Cython/Compiler/Main.py -------------------------------------------------------------------------------- /Cython/Compiler/MemoryView.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/Cython/Compiler/MemoryView.py -------------------------------------------------------------------------------- /Cython/Compiler/ModuleNode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/Cython/Compiler/ModuleNode.py -------------------------------------------------------------------------------- /Cython/Compiler/Naming.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/Cython/Compiler/Naming.py -------------------------------------------------------------------------------- /Cython/Compiler/Nodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/Cython/Compiler/Nodes.py -------------------------------------------------------------------------------- /Cython/Compiler/Optimize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/Cython/Compiler/Optimize.py -------------------------------------------------------------------------------- /Cython/Compiler/Options.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/Cython/Compiler/Options.py -------------------------------------------------------------------------------- /Cython/Compiler/Parsing.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/Cython/Compiler/Parsing.pxd -------------------------------------------------------------------------------- /Cython/Compiler/Parsing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/Cython/Compiler/Parsing.py -------------------------------------------------------------------------------- /Cython/Compiler/Pipeline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/Cython/Compiler/Pipeline.py -------------------------------------------------------------------------------- /Cython/Compiler/PyrexTypes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/Cython/Compiler/PyrexTypes.py -------------------------------------------------------------------------------- /Cython/Compiler/Pythran.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/Cython/Compiler/Pythran.py -------------------------------------------------------------------------------- /Cython/Compiler/Scanning.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/Cython/Compiler/Scanning.pxd -------------------------------------------------------------------------------- /Cython/Compiler/Scanning.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/Cython/Compiler/Scanning.py -------------------------------------------------------------------------------- /Cython/Compiler/Symtab.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/Cython/Compiler/Symtab.py -------------------------------------------------------------------------------- /Cython/Compiler/Tests/__init__.py: -------------------------------------------------------------------------------- 1 | # empty file 2 | -------------------------------------------------------------------------------- /Cython/Compiler/TreePath.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/Cython/Compiler/TreePath.py -------------------------------------------------------------------------------- /Cython/Compiler/TypeSlots.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/Cython/Compiler/TypeSlots.py -------------------------------------------------------------------------------- /Cython/Compiler/UFuncs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/Cython/Compiler/UFuncs.py -------------------------------------------------------------------------------- /Cython/Compiler/UtilNodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/Cython/Compiler/UtilNodes.py -------------------------------------------------------------------------------- /Cython/Compiler/Version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/Cython/Compiler/Version.py -------------------------------------------------------------------------------- /Cython/Compiler/Visitor.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/Cython/Compiler/Visitor.pxd -------------------------------------------------------------------------------- /Cython/Compiler/Visitor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/Cython/Compiler/Visitor.py -------------------------------------------------------------------------------- /Cython/Compiler/__init__.py: -------------------------------------------------------------------------------- 1 | # empty file 2 | -------------------------------------------------------------------------------- /Cython/Coverage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/Cython/Coverage.py -------------------------------------------------------------------------------- /Cython/Debugger/Cygdb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/Cython/Debugger/Cygdb.py -------------------------------------------------------------------------------- /Cython/Debugger/Tests/__init__.py: -------------------------------------------------------------------------------- 1 | # empty file 2 | -------------------------------------------------------------------------------- /Cython/Debugger/Tests/cfuncs.h: -------------------------------------------------------------------------------- 1 | void some_c_function(void); 2 | -------------------------------------------------------------------------------- /Cython/Debugger/__init__.py: -------------------------------------------------------------------------------- 1 | # empty file 2 | -------------------------------------------------------------------------------- /Cython/Debugger/libcython.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/Cython/Debugger/libcython.py -------------------------------------------------------------------------------- /Cython/Debugger/libpython.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/Cython/Debugger/libpython.py -------------------------------------------------------------------------------- /Cython/Debugging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/Cython/Debugging.py -------------------------------------------------------------------------------- /Cython/Distutils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/Cython/Distutils/__init__.py -------------------------------------------------------------------------------- /Cython/Distutils/build_ext.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/Cython/Distutils/build_ext.py -------------------------------------------------------------------------------- /Cython/Distutils/extension.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/Cython/Distutils/extension.py -------------------------------------------------------------------------------- /Cython/Includes/libc/__init__.pxd: -------------------------------------------------------------------------------- 1 | # empty file 2 | -------------------------------------------------------------------------------- /Cython/Includes/libc/math.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/Cython/Includes/libc/math.pxd -------------------------------------------------------------------------------- /Cython/Includes/libc/time.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/Cython/Includes/libc/time.pxd -------------------------------------------------------------------------------- /Cython/Includes/libcpp/pair.pxd: -------------------------------------------------------------------------------- 1 | from .utility cimport pair 2 | -------------------------------------------------------------------------------- /Cython/Includes/openmp.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/Cython/Includes/openmp.pxd -------------------------------------------------------------------------------- /Cython/Includes/posix/__init__.pxd: -------------------------------------------------------------------------------- 1 | # empty file 2 | -------------------------------------------------------------------------------- /Cython/Includes/posix/uio.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/Cython/Includes/posix/uio.pxd -------------------------------------------------------------------------------- /Cython/Parser/Grammar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/Cython/Parser/Grammar -------------------------------------------------------------------------------- /Cython/Parser/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Cython/Plex/Actions.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/Cython/Plex/Actions.pxd -------------------------------------------------------------------------------- /Cython/Plex/Actions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/Cython/Plex/Actions.py -------------------------------------------------------------------------------- /Cython/Plex/DFA.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/Cython/Plex/DFA.pxd -------------------------------------------------------------------------------- /Cython/Plex/DFA.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/Cython/Plex/DFA.py -------------------------------------------------------------------------------- /Cython/Plex/Errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/Cython/Plex/Errors.py -------------------------------------------------------------------------------- /Cython/Plex/Lexicons.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/Cython/Plex/Lexicons.py -------------------------------------------------------------------------------- /Cython/Plex/Machines.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/Cython/Plex/Machines.pxd -------------------------------------------------------------------------------- /Cython/Plex/Machines.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/Cython/Plex/Machines.py -------------------------------------------------------------------------------- /Cython/Plex/Regexps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/Cython/Plex/Regexps.py -------------------------------------------------------------------------------- /Cython/Plex/Scanners.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/Cython/Plex/Scanners.pxd -------------------------------------------------------------------------------- /Cython/Plex/Scanners.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/Cython/Plex/Scanners.py -------------------------------------------------------------------------------- /Cython/Plex/Transitions.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/Cython/Plex/Transitions.pxd -------------------------------------------------------------------------------- /Cython/Plex/Transitions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/Cython/Plex/Transitions.py -------------------------------------------------------------------------------- /Cython/Plex/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/Cython/Plex/__init__.py -------------------------------------------------------------------------------- /Cython/Runtime/__init__.py: -------------------------------------------------------------------------------- 1 | # empty file 2 | -------------------------------------------------------------------------------- /Cython/Runtime/refnanny.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/Cython/Runtime/refnanny.pyx -------------------------------------------------------------------------------- /Cython/Shadow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/Cython/Shadow.py -------------------------------------------------------------------------------- /Cython/Shadow.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/Cython/Shadow.pyi -------------------------------------------------------------------------------- /Cython/StringIOTree.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/Cython/StringIOTree.pxd -------------------------------------------------------------------------------- /Cython/StringIOTree.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/Cython/StringIOTree.py -------------------------------------------------------------------------------- /Cython/Tempita/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/Cython/Tempita/__init__.py -------------------------------------------------------------------------------- /Cython/Tempita/_looper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/Cython/Tempita/_looper.py -------------------------------------------------------------------------------- /Cython/Tempita/_tempita.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/Cython/Tempita/_tempita.py -------------------------------------------------------------------------------- /Cython/Tempita/compat3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/Cython/Tempita/compat3.py -------------------------------------------------------------------------------- /Cython/TestUtils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/Cython/TestUtils.py -------------------------------------------------------------------------------- /Cython/Tests/TestJediTyper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/Cython/Tests/TestJediTyper.py -------------------------------------------------------------------------------- /Cython/Tests/TestTestUtils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/Cython/Tests/TestTestUtils.py -------------------------------------------------------------------------------- /Cython/Tests/__init__.py: -------------------------------------------------------------------------------- 1 | # empty file 2 | -------------------------------------------------------------------------------- /Cython/Tests/xmlrunner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/Cython/Tests/xmlrunner.py -------------------------------------------------------------------------------- /Cython/Utility/AsyncGen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/Cython/Utility/AsyncGen.c -------------------------------------------------------------------------------- /Cython/Utility/Buffer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/Cython/Utility/Buffer.c -------------------------------------------------------------------------------- /Cython/Utility/Builtins.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/Cython/Utility/Builtins.c -------------------------------------------------------------------------------- /Cython/Utility/CConvert.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/Cython/Utility/CConvert.pyx -------------------------------------------------------------------------------- /Cython/Utility/CMath.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/Cython/Utility/CMath.c -------------------------------------------------------------------------------- /Cython/Utility/Complex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/Cython/Utility/Complex.c -------------------------------------------------------------------------------- /Cython/Utility/Coroutine.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/Cython/Utility/Coroutine.c -------------------------------------------------------------------------------- /Cython/Utility/CpdefEnums.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/Cython/Utility/CpdefEnums.pyx -------------------------------------------------------------------------------- /Cython/Utility/CppConvert.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/Cython/Utility/CppConvert.pyx -------------------------------------------------------------------------------- /Cython/Utility/CppSupport.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/Cython/Utility/CppSupport.cpp -------------------------------------------------------------------------------- /Cython/Utility/Dataclasses.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/Cython/Utility/Dataclasses.c -------------------------------------------------------------------------------- /Cython/Utility/Dataclasses.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/Cython/Utility/Dataclasses.py -------------------------------------------------------------------------------- /Cython/Utility/Embed.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/Cython/Utility/Embed.c -------------------------------------------------------------------------------- /Cython/Utility/Exceptions.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/Cython/Utility/Exceptions.c -------------------------------------------------------------------------------- /Cython/Utility/ImportExport.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/Cython/Utility/ImportExport.c -------------------------------------------------------------------------------- /Cython/Utility/MemoryView.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/Cython/Utility/MemoryView.pyx -------------------------------------------------------------------------------- /Cython/Utility/MemoryView_C.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/Cython/Utility/MemoryView_C.c -------------------------------------------------------------------------------- /Cython/Utility/Optimize.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/Cython/Utility/Optimize.c -------------------------------------------------------------------------------- /Cython/Utility/Overflow.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/Cython/Utility/Overflow.c -------------------------------------------------------------------------------- /Cython/Utility/Printing.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/Cython/Utility/Printing.c -------------------------------------------------------------------------------- /Cython/Utility/Profile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/Cython/Utility/Profile.c -------------------------------------------------------------------------------- /Cython/Utility/StringTools.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/Cython/Utility/StringTools.c -------------------------------------------------------------------------------- /Cython/Utility/UFuncs.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/Cython/Utility/UFuncs.pyx -------------------------------------------------------------------------------- /Cython/Utility/UFuncs_C.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/Cython/Utility/UFuncs_C.c -------------------------------------------------------------------------------- /Cython/Utility/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/Cython/Utility/__init__.py -------------------------------------------------------------------------------- /Cython/Utility/arrayarray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/Cython/Utility/arrayarray.h -------------------------------------------------------------------------------- /Cython/Utils.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/Cython/Utils.pxd -------------------------------------------------------------------------------- /Cython/Utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/Cython/Utils.py -------------------------------------------------------------------------------- /Cython/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/Cython/__init__.py -------------------------------------------------------------------------------- /Demos/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/Demos/Makefile -------------------------------------------------------------------------------- /Demos/Makefile.nodistutils: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/Demos/Makefile.nodistutils -------------------------------------------------------------------------------- /Demos/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/Demos/README.rst -------------------------------------------------------------------------------- /Demos/benchmarks/bpnn3.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/Demos/benchmarks/bpnn3.pxd -------------------------------------------------------------------------------- /Demos/benchmarks/bpnn3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/Demos/benchmarks/bpnn3.py -------------------------------------------------------------------------------- /Demos/benchmarks/chaos.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/Demos/benchmarks/chaos.pxd -------------------------------------------------------------------------------- /Demos/benchmarks/chaos.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/Demos/benchmarks/chaos.py -------------------------------------------------------------------------------- /Demos/benchmarks/fstrings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/Demos/benchmarks/fstrings.py -------------------------------------------------------------------------------- /Demos/benchmarks/hexiom2.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/Demos/benchmarks/hexiom2.pxd -------------------------------------------------------------------------------- /Demos/benchmarks/hexiom2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/Demos/benchmarks/hexiom2.py -------------------------------------------------------------------------------- /Demos/benchmarks/nbody.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/Demos/benchmarks/nbody.pxd -------------------------------------------------------------------------------- /Demos/benchmarks/nbody.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/Demos/benchmarks/nbody.py -------------------------------------------------------------------------------- /Demos/benchmarks/nqueens.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/Demos/benchmarks/nqueens.py -------------------------------------------------------------------------------- /Demos/benchmarks/richards.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/Demos/benchmarks/richards.pxd -------------------------------------------------------------------------------- /Demos/benchmarks/richards.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/Demos/benchmarks/richards.py -------------------------------------------------------------------------------- /Demos/benchmarks/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/Demos/benchmarks/setup.py -------------------------------------------------------------------------------- /Demos/benchmarks/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/Demos/benchmarks/util.py -------------------------------------------------------------------------------- /Demos/callback/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/Demos/callback/Makefile -------------------------------------------------------------------------------- /Demos/callback/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/Demos/callback/README.rst -------------------------------------------------------------------------------- /Demos/callback/Setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/Demos/callback/Setup.py -------------------------------------------------------------------------------- /Demos/callback/cheese.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/Demos/callback/cheese.pyx -------------------------------------------------------------------------------- /Demos/callback/cheesefinder.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/Demos/callback/cheesefinder.c -------------------------------------------------------------------------------- /Demos/callback/cheesefinder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/Demos/callback/cheesefinder.h -------------------------------------------------------------------------------- /Demos/callback/run_cheese.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/Demos/callback/run_cheese.py -------------------------------------------------------------------------------- /Demos/embed/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/Demos/embed/Makefile -------------------------------------------------------------------------------- /Demos/embed/Makefile.msc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/Demos/embed/Makefile.msc -------------------------------------------------------------------------------- /Demos/embed/Makefile.unix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/Demos/embed/Makefile.unix -------------------------------------------------------------------------------- /Demos/embed/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/Demos/embed/README.rst -------------------------------------------------------------------------------- /Demos/embed/assert_equal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/Demos/embed/assert_equal.py -------------------------------------------------------------------------------- /Demos/embed/embedded.output: -------------------------------------------------------------------------------- 1 | __main__ 2 | Hi, I'm embedded. 3 | -------------------------------------------------------------------------------- /Demos/embed/embedded.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/Demos/embed/embedded.pyx -------------------------------------------------------------------------------- /Demos/freeze/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/Demos/freeze/Makefile -------------------------------------------------------------------------------- /Demos/freeze/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/Demos/freeze/README.rst -------------------------------------------------------------------------------- /Demos/freeze/lcmath.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/Demos/freeze/lcmath.pyx -------------------------------------------------------------------------------- /Demos/integrate0.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/Demos/integrate0.py -------------------------------------------------------------------------------- /Demos/integrate1.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/Demos/integrate1.pyx -------------------------------------------------------------------------------- /Demos/integrate2.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/Demos/integrate2.pyx -------------------------------------------------------------------------------- /Demos/integrate_timing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/Demos/integrate_timing.py -------------------------------------------------------------------------------- /Demos/libraries/mymath.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/Demos/libraries/mymath.c -------------------------------------------------------------------------------- /Demos/libraries/mymath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/Demos/libraries/mymath.h -------------------------------------------------------------------------------- /Demos/libraries/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/Demos/libraries/setup.py -------------------------------------------------------------------------------- /Demos/numpy_demo.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/Demos/numpy_demo.pyx -------------------------------------------------------------------------------- /Demos/overflow_perf.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/Demos/overflow_perf.pyx -------------------------------------------------------------------------------- /Demos/overflow_perf_run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/Demos/overflow_perf_run.py -------------------------------------------------------------------------------- /Demos/primes.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/Demos/primes.pyx -------------------------------------------------------------------------------- /Demos/pyprimes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/Demos/pyprimes.py -------------------------------------------------------------------------------- /Demos/run_numeric_demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/Demos/run_numeric_demo.py -------------------------------------------------------------------------------- /Demos/run_primes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/Demos/run_primes.py -------------------------------------------------------------------------------- /Demos/run_spam.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/Demos/run_spam.py -------------------------------------------------------------------------------- /Demos/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/Demos/setup.py -------------------------------------------------------------------------------- /Demos/spam.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/Demos/spam.pyx -------------------------------------------------------------------------------- /Doc/s5/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/Doc/s5/Makefile -------------------------------------------------------------------------------- /Doc/s5/cython-ep2008.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/Doc/s5/cython-ep2008.txt -------------------------------------------------------------------------------- /Doc/s5/ep2008/worker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/Doc/s5/ep2008/worker.py -------------------------------------------------------------------------------- /Doc/s5/ui/default/blank.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/Doc/s5/ui/default/blank.gif -------------------------------------------------------------------------------- /Doc/s5/ui/default/bodybg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/Doc/s5/ui/default/bodybg.gif -------------------------------------------------------------------------------- /Doc/s5/ui/default/framing.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/Doc/s5/ui/default/framing.css -------------------------------------------------------------------------------- /Doc/s5/ui/default/opera.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/Doc/s5/ui/default/opera.css -------------------------------------------------------------------------------- /Doc/s5/ui/default/outline.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/Doc/s5/ui/default/outline.css -------------------------------------------------------------------------------- /Doc/s5/ui/default/pretty.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/Doc/s5/ui/default/pretty.css -------------------------------------------------------------------------------- /Doc/s5/ui/default/print.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/Doc/s5/ui/default/print.css -------------------------------------------------------------------------------- /Doc/s5/ui/default/s5-core.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/Doc/s5/ui/default/s5-core.css -------------------------------------------------------------------------------- /Doc/s5/ui/default/slides.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/Doc/s5/ui/default/slides.css -------------------------------------------------------------------------------- /Doc/s5/ui/default/slides.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/Doc/s5/ui/default/slides.js -------------------------------------------------------------------------------- /INSTALL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/INSTALL.txt -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/Makefile -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/README.rst -------------------------------------------------------------------------------- /ToDo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/ToDo.txt -------------------------------------------------------------------------------- /Tools/BUILD.bazel: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Tools/cevaltrace.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/Tools/cevaltrace.py -------------------------------------------------------------------------------- /Tools/ci-run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/Tools/ci-run.sh -------------------------------------------------------------------------------- /Tools/cystdlib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/Tools/cystdlib.py -------------------------------------------------------------------------------- /Tools/cython-epydoc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/Tools/cython-epydoc.py -------------------------------------------------------------------------------- /Tools/cython.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/Tools/cython.st -------------------------------------------------------------------------------- /Tools/dump_github_issues.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/Tools/dump_github_issues.py -------------------------------------------------------------------------------- /Tools/jedityper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/Tools/jedityper.py -------------------------------------------------------------------------------- /Tools/kate.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/Tools/kate.diff -------------------------------------------------------------------------------- /Tools/make_dataclass_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/Tools/make_dataclass_tests.py -------------------------------------------------------------------------------- /Tools/rules.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/Tools/rules.bzl -------------------------------------------------------------------------------- /USAGE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/USAGE.txt -------------------------------------------------------------------------------- /appveyor/install.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/appveyor/install.ps1 -------------------------------------------------------------------------------- /appveyor/run_with_env.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/appveyor/run_with_env.cmd -------------------------------------------------------------------------------- /bin/cygdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/bin/cygdb -------------------------------------------------------------------------------- /bin/cython: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/bin/cython -------------------------------------------------------------------------------- /bin/cython.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/bin/cython.bat -------------------------------------------------------------------------------- /bin/cython_freeze: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/bin/cython_freeze -------------------------------------------------------------------------------- /bin/cythonize: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/bin/cythonize -------------------------------------------------------------------------------- /bin/cythonrun: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/bin/cythonrun -------------------------------------------------------------------------------- /bin/move-declarators.sed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/bin/move-declarators.sed -------------------------------------------------------------------------------- /bin/pcython: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/bin/pcython -------------------------------------------------------------------------------- /cygdb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/cygdb.py -------------------------------------------------------------------------------- /cython.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/cython.py -------------------------------------------------------------------------------- /cythonize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/cythonize.py -------------------------------------------------------------------------------- /doc-requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/doc-requirements.txt -------------------------------------------------------------------------------- /docs/.hgignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/docs/.hgignore -------------------------------------------------------------------------------- /docs/CONTRIBUTING.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/docs/CONTRIBUTING.rst -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/docs/TODO -------------------------------------------------------------------------------- /docs/_static/css/tabs.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/docs/_static/css/tabs.css -------------------------------------------------------------------------------- /docs/_static/cython-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/docs/_static/cython-logo.svg -------------------------------------------------------------------------------- /docs/_static/cythonlogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/docs/_static/cythonlogo.png -------------------------------------------------------------------------------- /docs/_static/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/docs/_static/favicon.ico -------------------------------------------------------------------------------- /docs/_templates/layout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/docs/_templates/layout.html -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/examples/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/docs/examples/README.rst -------------------------------------------------------------------------------- /docs/examples/tutorial/pxd_files/integrate.pyx: -------------------------------------------------------------------------------- 1 | from cmath cimport sin 2 | -------------------------------------------------------------------------------- /docs/examples/tutorial/string/to_unicode.pxd: -------------------------------------------------------------------------------- 1 | cdef unicode _text(s) 2 | -------------------------------------------------------------------------------- /docs/examples/userguide/sharing_declarations/c_lunch.pxd: -------------------------------------------------------------------------------- 1 | cdef extern from "lunch.h": 2 | void eject_tomato(float) 3 | -------------------------------------------------------------------------------- /docs/examples/userguide/sharing_declarations/lunch.h: -------------------------------------------------------------------------------- 1 | void eject_tomato(float speed); 2 | -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/docs/make.bat -------------------------------------------------------------------------------- /docs/src/changes.rst: -------------------------------------------------------------------------------- 1 | .. include:: ../../CHANGES.rst 2 | -------------------------------------------------------------------------------- /docs/src/cimport-warning: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/docs/src/cimport-warning -------------------------------------------------------------------------------- /docs/src/donating.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/docs/src/donating.rst -------------------------------------------------------------------------------- /docs/src/quickstart/build.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/docs/src/quickstart/build.rst -------------------------------------------------------------------------------- /docs/src/quickstart/demo.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/docs/src/quickstart/demo.pyx -------------------------------------------------------------------------------- /docs/src/quickstart/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/docs/src/quickstart/index.rst -------------------------------------------------------------------------------- /docs/src/tutorial/array.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/docs/src/tutorial/array.rst -------------------------------------------------------------------------------- /docs/src/tutorial/data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/docs/src/tutorial/data.py -------------------------------------------------------------------------------- /docs/src/tutorial/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/docs/src/tutorial/index.rst -------------------------------------------------------------------------------- /docs/src/tutorial/numpy.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/docs/src/tutorial/numpy.rst -------------------------------------------------------------------------------- /docs/src/tutorial/pure.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/docs/src/tutorial/pure.rst -------------------------------------------------------------------------------- /docs/src/userguide/faq.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/docs/src/userguide/faq.rst -------------------------------------------------------------------------------- /docs/src/userguide/pypy.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/docs/src/userguide/pypy.rst -------------------------------------------------------------------------------- /pylintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/pylintrc -------------------------------------------------------------------------------- /pyximport/PKG-INFO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/pyximport/PKG-INFO -------------------------------------------------------------------------------- /pyximport/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/pyximport/README.rst -------------------------------------------------------------------------------- /pyximport/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/pyximport/__init__.py -------------------------------------------------------------------------------- /pyximport/_pyximport2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/pyximport/_pyximport2.py -------------------------------------------------------------------------------- /pyximport/_pyximport3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/pyximport/_pyximport3.py -------------------------------------------------------------------------------- /pyximport/pyxbuild.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/pyximport/pyxbuild.py -------------------------------------------------------------------------------- /pyximport/pyximport.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/pyximport/pyximport.py -------------------------------------------------------------------------------- /runtests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/runtests.py -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/setup.py -------------------------------------------------------------------------------- /setupegg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/setupegg.py -------------------------------------------------------------------------------- /test-requirements-27.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/test-requirements-27.txt -------------------------------------------------------------------------------- /test-requirements-312.txt: -------------------------------------------------------------------------------- 1 | numpy 2 | coverage 3 | pycodestyle 4 | setuptools 5 | -------------------------------------------------------------------------------- /test-requirements-34.txt: -------------------------------------------------------------------------------- 1 | numpy<1.16.0 2 | coverage 3 | pycodestyle 4 | -------------------------------------------------------------------------------- /test-requirements-36.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/test-requirements-36.txt -------------------------------------------------------------------------------- /test-requirements-pypy27.txt: -------------------------------------------------------------------------------- 1 | -r test-requirements.txt 2 | mock==3.0.5 3 | -------------------------------------------------------------------------------- /test-requirements.txt: -------------------------------------------------------------------------------- 1 | numpy 2 | coverage 3 | pycodestyle 4 | setuptools<60 5 | -------------------------------------------------------------------------------- /tests/broken/big_t.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/broken/big_t.pyx -------------------------------------------------------------------------------- /tests/broken/cimport.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/broken/cimport.pyx -------------------------------------------------------------------------------- /tests/broken/externfunc.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/broken/externfunc.pyx -------------------------------------------------------------------------------- /tests/broken/externsue.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/broken/externsue.pyx -------------------------------------------------------------------------------- /tests/broken/getattr.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/broken/getattr.pyx -------------------------------------------------------------------------------- /tests/broken/getattr3ref.pyx: -------------------------------------------------------------------------------- 1 | cdef int f() except -1: 2 | g = getattr3 3 | -------------------------------------------------------------------------------- /tests/broken/i_public.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/broken/i_public.pyx -------------------------------------------------------------------------------- /tests/broken/includepublic.pyx: -------------------------------------------------------------------------------- 1 | include "i_public.pxi" 2 | 3 | -------------------------------------------------------------------------------- /tests/broken/intindex.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/broken/intindex.pyx -------------------------------------------------------------------------------- /tests/broken/invalid-module-name.pyx: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/broken/l_capi.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/broken/l_capi.pyx -------------------------------------------------------------------------------- /tests/broken/naanou_1.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/broken/naanou_1.pyx -------------------------------------------------------------------------------- /tests/broken/plex2.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/broken/plex2.pyx -------------------------------------------------------------------------------- /tests/broken/r_capi.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/broken/r_capi.pyx -------------------------------------------------------------------------------- /tests/broken/r_classdoc.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/broken/r_classdoc.pyx -------------------------------------------------------------------------------- /tests/broken/r_excval.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/broken/r_excval.pyx -------------------------------------------------------------------------------- /tests/broken/r_getattr3.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/broken/r_getattr3.pyx -------------------------------------------------------------------------------- /tests/broken/r_import.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/broken/r_import.pyx -------------------------------------------------------------------------------- /tests/broken/r_simpcall.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/broken/r_simpcall.pyx -------------------------------------------------------------------------------- /tests/broken/r_tbfilename.pyx: -------------------------------------------------------------------------------- 1 | def foo(): 2 | raise Exception 3 | -------------------------------------------------------------------------------- /tests/broken/r_unpack.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/broken/r_unpack.pyx -------------------------------------------------------------------------------- /tests/broken/raise.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/broken/raise.pyx -------------------------------------------------------------------------------- /tests/broken/retconvert.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/broken/retconvert.pyx -------------------------------------------------------------------------------- /tests/broken/tslots.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/broken/tslots.pyx -------------------------------------------------------------------------------- /tests/buffers/bufaccess.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/buffers/bufaccess.h -------------------------------------------------------------------------------- /tests/buffers/bufaccess.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/buffers/bufaccess.pyx -------------------------------------------------------------------------------- /tests/buffers/buffer.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/buffers/buffer.pyx -------------------------------------------------------------------------------- /tests/buffers/buffmt.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/buffers/buffmt.pyx -------------------------------------------------------------------------------- /tests/bugs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/bugs.txt -------------------------------------------------------------------------------- /tests/build/depfile.srctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/build/depfile.srctree -------------------------------------------------------------------------------- /tests/build/dotted.filename.modules.pxd: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/compile/a/__init__.py: -------------------------------------------------------------------------------- 1 | # empty file 2 | -------------------------------------------------------------------------------- /tests/compile/a/b.pxd: -------------------------------------------------------------------------------- 1 | cdef int **foo(void*) 2 | -------------------------------------------------------------------------------- /tests/compile/a_capi.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/compile/a_capi.pyx -------------------------------------------------------------------------------- /tests/compile/altet1.h: -------------------------------------------------------------------------------- 1 | typedef int blarg; 2 | 3 | -------------------------------------------------------------------------------- /tests/compile/arrayargs.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/compile/arrayargs.pyx -------------------------------------------------------------------------------- /tests/compile/assert2.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/compile/assert2.pyx -------------------------------------------------------------------------------- /tests/compile/behnel4.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/compile/behnel4.pyx -------------------------------------------------------------------------------- /tests/compile/belchenko2.h: -------------------------------------------------------------------------------- 1 | void c_func(unsigned char pixel); 2 | -------------------------------------------------------------------------------- /tests/compile/buildenv.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/compile/buildenv.pyx -------------------------------------------------------------------------------- /tests/compile/builtin.pyx: -------------------------------------------------------------------------------- 1 | # mode: compile 2 | 3 | def f(): 4 | x = open("foo") 5 | -------------------------------------------------------------------------------- /tests/compile/cargdef.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/compile/cargdef.pyx -------------------------------------------------------------------------------- /tests/compile/carrdecl.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/compile/carrdecl.pyx -------------------------------------------------------------------------------- /tests/compile/cassign.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/compile/cassign.pyx -------------------------------------------------------------------------------- /tests/compile/cdefexternempty.pyx: -------------------------------------------------------------------------------- 1 | # mode: compile 2 | 3 | cdef extern from "cheese.h": 4 | pass 5 | 6 | -------------------------------------------------------------------------------- /tests/compile/cdefexternfromstar.pyx: -------------------------------------------------------------------------------- 1 | # mode: compile 2 | 3 | cdef extern from *: 4 | int spam 5 | 6 | -------------------------------------------------------------------------------- /tests/compile/cenum.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/compile/cenum.pyx -------------------------------------------------------------------------------- /tests/compile/cheese.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/compile/cnamespec.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/compile/cnamespec.pyx -------------------------------------------------------------------------------- /tests/compile/cnumop.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/compile/cnumop.pyx -------------------------------------------------------------------------------- /tests/compile/constcast.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/compile/constcast.pyx -------------------------------------------------------------------------------- /tests/compile/constexpr.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/compile/constexpr.pyx -------------------------------------------------------------------------------- /tests/compile/coventry1.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/compile/coventry1.pyx -------------------------------------------------------------------------------- /tests/compile/cpdef.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/compile/cpdef.pyx -------------------------------------------------------------------------------- /tests/compile/cpp_nogil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/compile/cpp_nogil.h -------------------------------------------------------------------------------- /tests/compile/cpp_nogil.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/compile/cpp_nogil.pyx -------------------------------------------------------------------------------- /tests/compile/cppenum.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/compile/cppenum.pyx -------------------------------------------------------------------------------- /tests/compile/ctypedef.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/compile/ctypedef.pyx -------------------------------------------------------------------------------- /tests/compile/cvardef.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/compile/cvardef.pyx -------------------------------------------------------------------------------- /tests/compile/cython_compiled_folding.pxd: -------------------------------------------------------------------------------- 1 | from libc.math cimport sin, cos, sqrt, tan, log 2 | -------------------------------------------------------------------------------- /tests/compile/del.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/compile/del.pyx -------------------------------------------------------------------------------- /tests/compile/doda1.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/compile/doda1.pyx -------------------------------------------------------------------------------- /tests/compile/dotted_cimport_submodule/__init__.pyx: -------------------------------------------------------------------------------- 1 | # empty file 2 | -------------------------------------------------------------------------------- /tests/compile/dotted_cimport_submodule/a.pxd: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/compile/drake1.pyx: -------------------------------------------------------------------------------- 1 | # mode: compile 2 | 3 | cdef char *s 4 | s = r'\"HT\"' 5 | -------------------------------------------------------------------------------- /tests/compile/emptytry.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/compile/emptytry.pyx -------------------------------------------------------------------------------- /tests/compile/eqcmp.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/compile/eqcmp.pyx -------------------------------------------------------------------------------- /tests/compile/ewing1.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/compile/ewing1.pyx -------------------------------------------------------------------------------- /tests/compile/ewing3.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/compile/ewing3.pyx -------------------------------------------------------------------------------- /tests/compile/ewing4.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/compile/ewing4.pyx -------------------------------------------------------------------------------- /tests/compile/ewing5.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/compile/ewing5.pyx -------------------------------------------------------------------------------- /tests/compile/ewing6.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/compile/ewing6.pyx -------------------------------------------------------------------------------- /tests/compile/ewing7.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/compile/ewing7.pyx -------------------------------------------------------------------------------- /tests/compile/ewing8.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/compile/ewing8.pxd -------------------------------------------------------------------------------- /tests/compile/ewing8.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/compile/ewing8.pyx -------------------------------------------------------------------------------- /tests/compile/ewing9.pxd: -------------------------------------------------------------------------------- 1 | cdef struct xmlDoc 2 | -------------------------------------------------------------------------------- /tests/compile/ewing9.pyx: -------------------------------------------------------------------------------- 1 | # mode: compile 2 | 3 | cdef struct xmlDoc: 4 | int i 5 | -------------------------------------------------------------------------------- /tests/compile/excvalcheck.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/compile/excvalcheck.h -------------------------------------------------------------------------------- /tests/compile/extcoerce.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/compile/extcoerce.pyx -------------------------------------------------------------------------------- /tests/compile/extern.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/compile/extern.pyx -------------------------------------------------------------------------------- /tests/compile/exthash.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/compile/exthash.pyx -------------------------------------------------------------------------------- /tests/compile/extindex.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/compile/extindex.pyx -------------------------------------------------------------------------------- /tests/compile/food.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/compile/food.h -------------------------------------------------------------------------------- /tests/compile/for.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/compile/for.pyx -------------------------------------------------------------------------------- /tests/compile/forward.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/compile/forward.pyx -------------------------------------------------------------------------------- /tests/compile/gencall.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/compile/gencall.pyx -------------------------------------------------------------------------------- /tests/compile/hinsen1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/compile/hinsen1.h -------------------------------------------------------------------------------- /tests/compile/hinsen2.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/compile/hinsen2.pyx -------------------------------------------------------------------------------- /tests/compile/huss2.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/compile/huss2.pyx -------------------------------------------------------------------------------- /tests/compile/import.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/compile/import.pyx -------------------------------------------------------------------------------- /tests/compile/index.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/compile/index.pyx -------------------------------------------------------------------------------- /tests/compile/indices.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/compile/indices.pyx -------------------------------------------------------------------------------- /tests/compile/ishimoto1.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/compile/ishimoto1.pyx -------------------------------------------------------------------------------- /tests/compile/ishimoto4.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/compile/ishimoto4.pyx -------------------------------------------------------------------------------- /tests/compile/jiba3.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/compile/jiba3.pyx -------------------------------------------------------------------------------- /tests/compile/jiba4.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/compile/jiba4.pyx -------------------------------------------------------------------------------- /tests/compile/jiba5.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/compile/jiba5.pyx -------------------------------------------------------------------------------- /tests/compile/jiba6.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/compile/jiba6.pyx -------------------------------------------------------------------------------- /tests/compile/johnson1.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/compile/johnson1.pyx -------------------------------------------------------------------------------- /tests/compile/johnson2.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/compile/johnson2.pyx -------------------------------------------------------------------------------- /tests/compile/khavkine1.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/compile/khavkine1.pyx -------------------------------------------------------------------------------- /tests/compile/kleckner1.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/compile/kleckner1.pyx -------------------------------------------------------------------------------- /tests/compile/lepage_2.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/compile/lepage_2.pyx -------------------------------------------------------------------------------- /tests/compile/libc_all.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/compile/libc_all.pyx -------------------------------------------------------------------------------- /tests/compile/magcmp.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/compile/magcmp.pyx -------------------------------------------------------------------------------- /tests/compile/min_async.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/compile/min_async.pyx -------------------------------------------------------------------------------- /tests/compile/nogil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/compile/nogil.h -------------------------------------------------------------------------------- /tests/compile/nogil.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/compile/nogil.pyx -------------------------------------------------------------------------------- /tests/compile/none.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/compile/none.pyx -------------------------------------------------------------------------------- /tests/compile/nullptr.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/compile/nullptr.pyx -------------------------------------------------------------------------------- /tests/compile/omittedargnames.pyx: -------------------------------------------------------------------------------- 1 | # mode: compile 2 | 3 | cdef extern void spam(int, char *) 4 | 5 | -------------------------------------------------------------------------------- /tests/compile/operators.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/compile/operators.h -------------------------------------------------------------------------------- /tests/compile/pinard4.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/compile/pinard4.pyx -------------------------------------------------------------------------------- /tests/compile/point.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/compile/point.h -------------------------------------------------------------------------------- /tests/compile/pyclass.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/compile/pyclass.pyx -------------------------------------------------------------------------------- /tests/compile/pylong.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/compile/pylong.pyx -------------------------------------------------------------------------------- /tests/compile/slicex.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/compile/slicex.pyx -------------------------------------------------------------------------------- /tests/compile/templates.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/compile/templates.h -------------------------------------------------------------------------------- /tests/compile/traceback.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/compile/traceback.pyx -------------------------------------------------------------------------------- /tests/compile/tryexcept.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/compile/tryexcept.pyx -------------------------------------------------------------------------------- /tests/compile/typecast.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/compile/typecast.pyx -------------------------------------------------------------------------------- /tests/compile/utf8bom.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/compile/utf8bom.pyx -------------------------------------------------------------------------------- /tests/compile/volatile.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/compile/volatile.pyx -------------------------------------------------------------------------------- /tests/compile/watts2.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/compile/watts2.pyx -------------------------------------------------------------------------------- /tests/compile/while.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/compile/while.pyx -------------------------------------------------------------------------------- /tests/compile/withgil.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/compile/withgil.pyx -------------------------------------------------------------------------------- /tests/cygwin_bugs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/cygwin_bugs.txt -------------------------------------------------------------------------------- /tests/errors/callargs.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/errors/callargs.pyx -------------------------------------------------------------------------------- /tests/errors/cdefkwargs.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/errors/cdefkwargs.pyx -------------------------------------------------------------------------------- /tests/errors/cfuncptr.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/errors/cfuncptr.pyx -------------------------------------------------------------------------------- /tests/errors/cpdef_vars.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/errors/cpdef_vars.pyx -------------------------------------------------------------------------------- /tests/errors/cpp_bool.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/errors/cpp_bool.pyx -------------------------------------------------------------------------------- /tests/errors/e_addop.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/errors/e_addop.pyx -------------------------------------------------------------------------------- /tests/errors/e_ass.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/errors/e_ass.pyx -------------------------------------------------------------------------------- /tests/errors/e_assert.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/errors/e_assert.pyx -------------------------------------------------------------------------------- /tests/errors/e_assnone.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/errors/e_assnone.pyx -------------------------------------------------------------------------------- /tests/errors/e_binop_or.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/errors/e_binop_or.pyx -------------------------------------------------------------------------------- /tests/errors/e_bitop.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/errors/e_bitop.pyx -------------------------------------------------------------------------------- /tests/errors/e_bufaccess_pxd.pxd: -------------------------------------------------------------------------------- 1 | # See e_bufaccess2.pyx 2 | 3 | ctypedef nothing T 4 | -------------------------------------------------------------------------------- /tests/errors/e_callspec.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/errors/e_callspec.pyx -------------------------------------------------------------------------------- /tests/errors/e_cenum.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/errors/e_cenum.pyx -------------------------------------------------------------------------------- /tests/errors/e_cmp.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/errors/e_cmp.pyx -------------------------------------------------------------------------------- /tests/errors/e_cstruct.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/errors/e_cstruct.pyx -------------------------------------------------------------------------------- /tests/errors/e_cunion.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/errors/e_cunion.pyx -------------------------------------------------------------------------------- /tests/errors/e_del.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/errors/e_del.pyx -------------------------------------------------------------------------------- /tests/errors/e_fstring.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/errors/e_fstring.pyx -------------------------------------------------------------------------------- /tests/errors/e_index.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/errors/e_index.pyx -------------------------------------------------------------------------------- /tests/errors/e_multass.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/errors/e_multass.pyx -------------------------------------------------------------------------------- /tests/errors/e_nargs.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/errors/e_nargs.pyx -------------------------------------------------------------------------------- /tests/errors/e_notnone.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/errors/e_notnone.pyx -------------------------------------------------------------------------------- /tests/errors/e_notnone2.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/errors/e_notnone2.pyx -------------------------------------------------------------------------------- /tests/errors/e_numop.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/errors/e_numop.pyx -------------------------------------------------------------------------------- /tests/errors/e_powop.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/errors/e_powop.pyx -------------------------------------------------------------------------------- /tests/errors/e_pxdimpl.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/errors/e_pxdimpl.pyx -------------------------------------------------------------------------------- /tests/errors/e_return.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/errors/e_return.pyx -------------------------------------------------------------------------------- /tests/errors/e_slice.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/errors/e_slice.pyx -------------------------------------------------------------------------------- /tests/errors/e_subop.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/errors/e_subop.pyx -------------------------------------------------------------------------------- /tests/errors/e_switch.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/errors/e_switch.pyx -------------------------------------------------------------------------------- /tests/errors/e_tempcast.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/errors/e_tempcast.pyx -------------------------------------------------------------------------------- /tests/errors/e_unop.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/errors/e_unop.pyx -------------------------------------------------------------------------------- /tests/errors/e_while.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/errors/e_while.pyx -------------------------------------------------------------------------------- /tests/errors/empty.pyx: -------------------------------------------------------------------------------- 1 | # cython: autotestdict=False 2 | # mode: error 3 | -------------------------------------------------------------------------------- /tests/errors/encoding.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/errors/encoding.pyx -------------------------------------------------------------------------------- /tests/errors/mod_errors.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/errors/mod_errors.pyx -------------------------------------------------------------------------------- /tests/errors/nogil.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/errors/nogil.pyx -------------------------------------------------------------------------------- /tests/errors/nogilcmeth.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/errors/nogilcmeth.pxd -------------------------------------------------------------------------------- /tests/errors/nogilcmeth.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/errors/nogilcmeth.pyx -------------------------------------------------------------------------------- /tests/errors/posonly.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/errors/posonly.pyx -------------------------------------------------------------------------------- /tests/errors/posonly2.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/errors/posonly2.pyx -------------------------------------------------------------------------------- /tests/errors/posonly3.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/errors/posonly3.pyx -------------------------------------------------------------------------------- /tests/errors/posonly4.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/errors/posonly4.pyx -------------------------------------------------------------------------------- /tests/errors/posonly5.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/errors/posonly5.pyx -------------------------------------------------------------------------------- /tests/errors/pure_cclass_without_body.pxd: -------------------------------------------------------------------------------- 1 | # mode: error 2 | 3 | cdef class Test 4 | -------------------------------------------------------------------------------- /tests/errors/pure_errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/errors/pure_errors.py -------------------------------------------------------------------------------- /tests/errors/pxd_cdef_class_declaration_T286.pxd: -------------------------------------------------------------------------------- 1 | cdef class A 2 | -------------------------------------------------------------------------------- /tests/errors/se_multass.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/errors/se_multass.pyx -------------------------------------------------------------------------------- /tests/errors/typoT304.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/errors/typoT304.pyx -------------------------------------------------------------------------------- /tests/errors/w_unused.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/errors/w_unused.pyx -------------------------------------------------------------------------------- /tests/graal_bugs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/graal_bugs.txt -------------------------------------------------------------------------------- /tests/limited_api_bugs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/limited_api_bugs.txt -------------------------------------------------------------------------------- /tests/macos_cpp_bugs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/macos_cpp_bugs.txt -------------------------------------------------------------------------------- /tests/pypy2_bugs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/pypy2_bugs.txt -------------------------------------------------------------------------------- /tests/pypy_bugs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/pypy_bugs.txt -------------------------------------------------------------------------------- /tests/pypy_crash_bugs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/pypy_crash_bugs.txt -------------------------------------------------------------------------------- /tests/run/__debug__.srctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/run/__debug__.srctree -------------------------------------------------------------------------------- /tests/run/addloop.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/run/addloop.pyx -------------------------------------------------------------------------------- /tests/run/addop.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/run/addop.pyx -------------------------------------------------------------------------------- /tests/run/addressof.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/run/addressof.pyx -------------------------------------------------------------------------------- /tests/run/all.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/run/all.pyx -------------------------------------------------------------------------------- /tests/run/altet2.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/run/altet2.pyx -------------------------------------------------------------------------------- /tests/run/and.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/run/and.pyx -------------------------------------------------------------------------------- /tests/run/annotate_html.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/run/annotate_html.pyx -------------------------------------------------------------------------------- /tests/run/anonymousenum.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/run/anonymousenum.pyx -------------------------------------------------------------------------------- /tests/run/any.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/run/any.pyx -------------------------------------------------------------------------------- /tests/run/append.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/run/append.pyx -------------------------------------------------------------------------------- /tests/run/arg_incref.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/run/arg_incref.pyx -------------------------------------------------------------------------------- /tests/run/argdefault.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/run/argdefault.pyx -------------------------------------------------------------------------------- /tests/run/argerrors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/run/argerrors.py -------------------------------------------------------------------------------- /tests/run/array_address.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/run/array_address.pyx -------------------------------------------------------------------------------- /tests/run/arrayassign.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/run/arrayassign.pyx -------------------------------------------------------------------------------- /tests/run/ass2cglobal.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/run/ass2cglobal.pyx -------------------------------------------------------------------------------- /tests/run/ass2global.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/run/ass2global.py -------------------------------------------------------------------------------- /tests/run/ass2local.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/run/ass2local.pyx -------------------------------------------------------------------------------- /tests/run/assert.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/run/assert.pyx -------------------------------------------------------------------------------- /tests/run/async_def.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/run/async_def.pyx -------------------------------------------------------------------------------- /tests/run/async_globals.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/run/async_globals.pyx -------------------------------------------------------------------------------- /tests/run/attr.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/run/attr.pyx -------------------------------------------------------------------------------- /tests/run/auto_cpdef.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/run/auto_cpdef.py -------------------------------------------------------------------------------- /tests/run/autotestdict.pxd: -------------------------------------------------------------------------------- 1 | # I just exist 2 | -------------------------------------------------------------------------------- /tests/run/autotestdict.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/run/autotestdict.pyx -------------------------------------------------------------------------------- /tests/run/baas3.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/run/baas3.pyx -------------------------------------------------------------------------------- /tests/run/backquote.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/run/backquote.pyx -------------------------------------------------------------------------------- /tests/run/behnel1.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/run/behnel1.pyx -------------------------------------------------------------------------------- /tests/run/behnel2.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/run/behnel2.pyx -------------------------------------------------------------------------------- /tests/run/behnel3.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/run/behnel3.pyx -------------------------------------------------------------------------------- /tests/run/big_indices.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/run/big_indices.pyx -------------------------------------------------------------------------------- /tests/run/bint.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/run/bint.pyx -------------------------------------------------------------------------------- /tests/run/bishop1.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/run/bishop1.pyx -------------------------------------------------------------------------------- /tests/run/bishop2.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/run/bishop2.pyx -------------------------------------------------------------------------------- /tests/run/boolop.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/run/boolop.pyx -------------------------------------------------------------------------------- /tests/run/boolop_py.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/run/boolop_py.py -------------------------------------------------------------------------------- /tests/run/builtin_abs.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/run/builtin_abs.pyx -------------------------------------------------------------------------------- /tests/run/builtin_float.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/run/builtin_float.py -------------------------------------------------------------------------------- /tests/run/builtin_len.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/run/builtin_len.pyx -------------------------------------------------------------------------------- /tests/run/builtin_next.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/run/builtin_next.pyx -------------------------------------------------------------------------------- /tests/run/builtin_ord.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/run/builtin_ord.pyx -------------------------------------------------------------------------------- /tests/run/builtin_pow.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/run/builtin_pow.pyx -------------------------------------------------------------------------------- /tests/run/builtin_py3.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/run/builtin_py3.pyx -------------------------------------------------------------------------------- /tests/run/builtin_slice.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/run/builtin_slice.pyx -------------------------------------------------------------------------------- /tests/run/builtin_type.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/run/builtin_type.pyx -------------------------------------------------------------------------------- /tests/run/builtinnames.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/run/builtinnames.pyx -------------------------------------------------------------------------------- /tests/run/builtinslice.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/run/builtinslice.pyx -------------------------------------------------------------------------------- /tests/run/bytearray_iter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/run/bytearray_iter.py -------------------------------------------------------------------------------- /tests/run/bytesmethods.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/run/bytesmethods.pyx -------------------------------------------------------------------------------- /tests/run/call_crash.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/run/call_crash.pyx -------------------------------------------------------------------------------- /tests/run/call_py_cy.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/run/call_py_cy.pyx -------------------------------------------------------------------------------- /tests/run/callargs.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/run/callargs.pyx -------------------------------------------------------------------------------- /tests/run/capiimpl.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/run/capiimpl.pyx -------------------------------------------------------------------------------- /tests/run/carrays.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/run/carrays.pyx -------------------------------------------------------------------------------- /tests/run/cascmp.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/run/cascmp.pyx -------------------------------------------------------------------------------- /tests/run/cdef_opt.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/run/cdef_opt.pxd -------------------------------------------------------------------------------- /tests/run/cdef_opt.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/run/cdef_opt.pyx -------------------------------------------------------------------------------- /tests/run/cdefassign.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/run/cdefassign.pyx -------------------------------------------------------------------------------- /tests/run/cdefoptargs.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/run/cdefoptargs.pyx -------------------------------------------------------------------------------- /tests/run/cf_none.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/run/cf_none.pyx -------------------------------------------------------------------------------- /tests/run/cfunc_convert.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/run/cfunc_convert.pyx -------------------------------------------------------------------------------- /tests/run/cfuncdef.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/run/cfuncdef.pyx -------------------------------------------------------------------------------- /tests/run/cfuncptr.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/run/cfuncptr.pyx -------------------------------------------------------------------------------- /tests/run/charencoding.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/run/charencoding.pyx -------------------------------------------------------------------------------- /tests/run/charescape.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/run/charescape.pyx -------------------------------------------------------------------------------- /tests/run/charptr_len.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/run/charptr_len.pyx -------------------------------------------------------------------------------- /tests/run/cimport.srctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/run/cimport.srctree -------------------------------------------------------------------------------- /tests/run/cintop.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/run/cintop.pyx -------------------------------------------------------------------------------- /tests/run/class_redefine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/run/class_redefine.py -------------------------------------------------------------------------------- /tests/run/class_scope.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/run/class_scope.py -------------------------------------------------------------------------------- /tests/run/classmethod.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/run/classmethod.pyx -------------------------------------------------------------------------------- /tests/run/classpass.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/run/classpass.pyx -------------------------------------------------------------------------------- /tests/run/clear_to_null.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/run/clear_to_null.pyx -------------------------------------------------------------------------------- /tests/run/clone_type.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/run/clone_type.pyx -------------------------------------------------------------------------------- /tests/run/closure_names.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/run/closure_names.pyx -------------------------------------------------------------------------------- /tests/run/closure_self.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/run/closure_self.pyx -------------------------------------------------------------------------------- /tests/run/closures_T82.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/run/closures_T82.pyx -------------------------------------------------------------------------------- /tests/run/cmp.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/run/cmp.pyx -------------------------------------------------------------------------------- /tests/run/compiledef.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/run/compiledef.pyx -------------------------------------------------------------------------------- /tests/run/complex_numbers_c89_T398.h: -------------------------------------------------------------------------------- 1 | #define CYTHON_CCOMPLEX 0 2 | -------------------------------------------------------------------------------- /tests/run/constants.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/run/constants.pyx -------------------------------------------------------------------------------- /tests/run/contains_T455.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/run/contains_T455.pyx -------------------------------------------------------------------------------- /tests/run/coroutines.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/run/coroutines.py -------------------------------------------------------------------------------- /tests/run/cpdef_enums.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/run/cpdef_enums.pxd -------------------------------------------------------------------------------- /tests/run/cpdef_enums.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/run/cpdef_enums.pyx -------------------------------------------------------------------------------- /tests/run/cpdef_nogil.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/run/cpdef_nogil.pyx -------------------------------------------------------------------------------- /tests/run/cpdef_optargs.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/run/cpdef_optargs.pyx -------------------------------------------------------------------------------- /tests/run/cpdef_optargs_pure.pxd: -------------------------------------------------------------------------------- 1 | cpdef func(x, y=*, z=*) 2 | -------------------------------------------------------------------------------- /tests/run/cpow.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/run/cpow.pyx -------------------------------------------------------------------------------- /tests/run/cpp_bool.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/run/cpp_bool.pyx -------------------------------------------------------------------------------- /tests/run/cpp_classes.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/run/cpp_classes.pyx -------------------------------------------------------------------------------- /tests/run/cpp_enums.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/run/cpp_enums.pyx -------------------------------------------------------------------------------- /tests/run/cpp_iterators.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/run/cpp_iterators.pyx -------------------------------------------------------------------------------- /tests/run/cpp_move.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/run/cpp_move.pyx -------------------------------------------------------------------------------- /tests/run/cpp_nonstdint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/run/cpp_nonstdint.h -------------------------------------------------------------------------------- /tests/run/cpp_nonstdint.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/run/cpp_nonstdint.pyx -------------------------------------------------------------------------------- /tests/run/cpp_operators.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/run/cpp_operators.pyx -------------------------------------------------------------------------------- /tests/run/cpp_smart_ptr.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/run/cpp_smart_ptr.pyx -------------------------------------------------------------------------------- /tests/run/cpp_stl.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/run/cpp_stl.pyx -------------------------------------------------------------------------------- /tests/run/cpp_stl_any.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/run/cpp_stl_any.pyx -------------------------------------------------------------------------------- /tests/run/cpp_stl_cpp11.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/run/cpp_stl_cpp11.pyx -------------------------------------------------------------------------------- /tests/run/cpp_stl_list.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/run/cpp_stl_list.pyx -------------------------------------------------------------------------------- /tests/run/cpp_stl_map.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/run/cpp_stl_map.pyx -------------------------------------------------------------------------------- /tests/run/cpp_stl_set.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/run/cpp_stl_set.pyx -------------------------------------------------------------------------------- /tests/run/cpp_templates.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/run/cpp_templates.pyx -------------------------------------------------------------------------------- /tests/run/cpython_capi.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/run/cpython_capi.pyx -------------------------------------------------------------------------------- /tests/run/crashT245.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/run/crashT245.h -------------------------------------------------------------------------------- /tests/run/crashT245.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/run/crashT245.pyx -------------------------------------------------------------------------------- /tests/run/crashT245_pxd.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/run/crashT245_pxd.pxd -------------------------------------------------------------------------------- /tests/run/cstringmeth.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/run/cstringmeth.pyx -------------------------------------------------------------------------------- /tests/run/cstringmul.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/run/cstringmul.pyx -------------------------------------------------------------------------------- /tests/run/cstruct.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/run/cstruct.pyx -------------------------------------------------------------------------------- /tests/run/ct_DEF.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/run/ct_DEF.pyx -------------------------------------------------------------------------------- /tests/run/ct_IF.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/run/ct_IF.pyx -------------------------------------------------------------------------------- /tests/run/ctruthtests.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/run/ctruthtests.pyx -------------------------------------------------------------------------------- /tests/run/ctuple.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/run/ctuple.pyx -------------------------------------------------------------------------------- /tests/run/ctypedef_bint.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/run/ctypedef_bint.pyx -------------------------------------------------------------------------------- /tests/run/cunion.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/run/cunion.pyx -------------------------------------------------------------------------------- /tests/run/cyclic_gc.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/run/cyclic_gc.pyx -------------------------------------------------------------------------------- /tests/run/cyfunction.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/run/cyfunction.pyx -------------------------------------------------------------------------------- /tests/run/cython2_bytes.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/run/cython2_bytes.pyx -------------------------------------------------------------------------------- /tests/run/cython3.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/run/cython3.pyx -------------------------------------------------------------------------------- /tests/run/cythonscope.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/run/cythonscope.pyx -------------------------------------------------------------------------------- /tests/run/datetime_pxd.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/run/datetime_pxd.pyx -------------------------------------------------------------------------------- /tests/run/decorators.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/run/decorators.pyx -------------------------------------------------------------------------------- /tests/run/define_macro.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/run/define_macro.pyx -------------------------------------------------------------------------------- /tests/run/delete.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/run/delete.pyx -------------------------------------------------------------------------------- /tests/run/delslice.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/run/delslice.py -------------------------------------------------------------------------------- /tests/run/dict.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/run/dict.pyx -------------------------------------------------------------------------------- /tests/run/dict_get.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/run/dict_get.pyx -------------------------------------------------------------------------------- /tests/run/dict_getitem.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/run/dict_getitem.pyx -------------------------------------------------------------------------------- /tests/run/dict_pop.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/run/dict_pop.pyx -------------------------------------------------------------------------------- /tests/run/dictcomp.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/run/dictcomp.pyx -------------------------------------------------------------------------------- /tests/run/dictintindex.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/run/dictintindex.pyx -------------------------------------------------------------------------------- /tests/run/dietachmayer1.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/run/dietachmayer1.pyx -------------------------------------------------------------------------------- /tests/run/division_T384.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/run/division_T384.pyx -------------------------------------------------------------------------------- /tests/run/dynamic_args.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/run/dynamic_args.pyx -------------------------------------------------------------------------------- /tests/run/ellipsis_T488.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/run/ellipsis_T488.pyx -------------------------------------------------------------------------------- /tests/run/enumboolctx.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/run/enumboolctx.pyx -------------------------------------------------------------------------------- /tests/run/error_pos.srctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/run/error_pos.srctree -------------------------------------------------------------------------------- /tests/run/eval.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/run/eval.pyx -------------------------------------------------------------------------------- /tests/run/exarkun.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/run/exarkun.pyx -------------------------------------------------------------------------------- /tests/run/exec_noargs.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/run/exec_noargs.pyx -------------------------------------------------------------------------------- /tests/run/exectest.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/run/exectest.pyx -------------------------------------------------------------------------------- /tests/run/extclassbody.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/run/extclassbody.pyx -------------------------------------------------------------------------------- /tests/run/extclasspass.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/run/extclasspass.pyx -------------------------------------------------------------------------------- /tests/run/extcmethod.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/run/extcmethod.pyx -------------------------------------------------------------------------------- /tests/run/external_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/run/external_defs.h -------------------------------------------------------------------------------- /tests/run/extinherit.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/run/extinherit.pyx -------------------------------------------------------------------------------- /tests/run/extkwonlyargs.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/run/extkwonlyargs.pyx -------------------------------------------------------------------------------- /tests/run/extlen.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/run/extlen.pyx -------------------------------------------------------------------------------- /tests/run/extmember.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/run/extmember.pxd -------------------------------------------------------------------------------- /tests/run/extmember.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/run/extmember.pyx -------------------------------------------------------------------------------- /tests/run/extra_walrus.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/run/extra_walrus.py -------------------------------------------------------------------------------- /tests/run/extstarargs.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/run/extstarargs.pyx -------------------------------------------------------------------------------- /tests/run/exttype.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/run/exttype.pyx -------------------------------------------------------------------------------- /tests/run/exttype_gc.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/run/exttype_gc.pyx -------------------------------------------------------------------------------- /tests/run/fastcall.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/run/fastcall.pyx -------------------------------------------------------------------------------- /tests/run/filenames.pxi: -------------------------------------------------------------------------------- 1 | spam = u"ftang" 2 | -------------------------------------------------------------------------------- /tests/run/filenames.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/run/filenames.pyx -------------------------------------------------------------------------------- /tests/run/flatin.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/run/flatin.pyx -------------------------------------------------------------------------------- /tests/run/fmod.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/run/fmod.pyx -------------------------------------------------------------------------------- /tests/run/for_decrement.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/run/for_decrement.pyx -------------------------------------------------------------------------------- /tests/run/for_in_iter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/run/for_in_iter.py -------------------------------------------------------------------------------- /tests/run/for_in_string.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/run/for_in_string.pyx -------------------------------------------------------------------------------- /tests/run/forfrom.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/run/forfrom.pyx -------------------------------------------------------------------------------- /tests/run/fstring.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/run/fstring.pyx -------------------------------------------------------------------------------- /tests/run/funcexcept.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/run/funcexcept.pyx -------------------------------------------------------------------------------- /tests/run/function_self.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/run/function_self.py -------------------------------------------------------------------------------- /tests/run/fused_cpdef.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/run/fused_cpdef.pyx -------------------------------------------------------------------------------- /tests/run/fused_cpp.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/run/fused_cpp.pyx -------------------------------------------------------------------------------- /tests/run/fused_def.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/run/fused_def.pyx -------------------------------------------------------------------------------- /tests/run/fused_types.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/run/fused_types.pyx -------------------------------------------------------------------------------- /tests/run/generators.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/run/generators.pyx -------------------------------------------------------------------------------- /tests/run/generators_py.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/run/generators_py.py -------------------------------------------------------------------------------- /tests/run/genexpr_T491.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/run/genexpr_T491.pyx -------------------------------------------------------------------------------- /tests/run/genexpr_T715.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/run/genexpr_T715.pyx -------------------------------------------------------------------------------- /tests/run/getattr3call.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/run/getattr3call.pyx -------------------------------------------------------------------------------- /tests/run/hasattr.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/run/hasattr.pyx -------------------------------------------------------------------------------- /tests/run/hash_T326.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/run/hash_T326.pyx -------------------------------------------------------------------------------- /tests/run/if.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/run/if.pyx -------------------------------------------------------------------------------- /tests/run/if_and_or.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/run/if_and_or.pyx -------------------------------------------------------------------------------- /tests/run/if_const.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/run/if_const.pyx -------------------------------------------------------------------------------- /tests/run/if_else_expr.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/run/if_else_expr.pyx -------------------------------------------------------------------------------- /tests/run/import_star.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/run/import_star.pyx -------------------------------------------------------------------------------- /tests/run/importas.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/run/importas.pyx -------------------------------------------------------------------------------- /tests/run/importfrom.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/run/importfrom.pyx -------------------------------------------------------------------------------- /tests/run/include.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/run/include.pyx -------------------------------------------------------------------------------- /tests/run/includes/a.h: -------------------------------------------------------------------------------- 1 | int a = 1; -------------------------------------------------------------------------------- /tests/run/includes/all.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/run/includes/all.pyx -------------------------------------------------------------------------------- /tests/run/includes/b.h: -------------------------------------------------------------------------------- 1 | int b = a+1; -------------------------------------------------------------------------------- /tests/run/includes/b.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/run/includes/b.pxd -------------------------------------------------------------------------------- /tests/run/includes/c.h: -------------------------------------------------------------------------------- 1 | int c = b+1; -------------------------------------------------------------------------------- /tests/run/includes/d.h: -------------------------------------------------------------------------------- 1 | int d = c+1; -------------------------------------------------------------------------------- /tests/run/includes/d.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/run/includes/d.pxd -------------------------------------------------------------------------------- /tests/run/includes/e.h: -------------------------------------------------------------------------------- 1 | int e = d+1; -------------------------------------------------------------------------------- /tests/run/includes/includefile.pxi: -------------------------------------------------------------------------------- 1 | # this file will be included 2 | 3 | XYZ = 5 4 | -------------------------------------------------------------------------------- /tests/run/includes/indirect_d.pxd: -------------------------------------------------------------------------------- 1 | from d cimport d 2 | -------------------------------------------------------------------------------- /tests/run/index.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/run/index.pyx -------------------------------------------------------------------------------- /tests/run/inhcmethcall.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/run/inhcmethcall.pyx -------------------------------------------------------------------------------- /tests/run/inline.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/run/inline.pyx -------------------------------------------------------------------------------- /tests/run/inlinepxd.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/run/inlinepxd.pxd -------------------------------------------------------------------------------- /tests/run/inlinepxd.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/run/inlinepxd.pyx -------------------------------------------------------------------------------- /tests/run/inop.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/run/inop.pyx -------------------------------------------------------------------------------- /tests/run/inplace.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/run/inplace.pyx -------------------------------------------------------------------------------- /tests/run/int128.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/run/int128.pyx -------------------------------------------------------------------------------- /tests/run/int_literals.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/run/int_literals.pyx -------------------------------------------------------------------------------- /tests/run/intern_T431.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/run/intern_T431.pyx -------------------------------------------------------------------------------- /tests/run/ishimoto2.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/run/ishimoto2.pyx -------------------------------------------------------------------------------- /tests/run/ishimoto3.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/run/ishimoto3.pyx -------------------------------------------------------------------------------- /tests/run/isinstance.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/run/isinstance.pyx -------------------------------------------------------------------------------- /tests/run/isnonebool.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/run/isnonebool.pyx -------------------------------------------------------------------------------- /tests/run/isnot.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/run/isnot.pyx -------------------------------------------------------------------------------- /tests/run/iter.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/run/iter.pyx -------------------------------------------------------------------------------- /tests/run/iterdict.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/run/iterdict.pyx -------------------------------------------------------------------------------- /tests/run/jarausch1.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/run/jarausch1.pyx -------------------------------------------------------------------------------- /tests/run/king1.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/run/king1.pyx -------------------------------------------------------------------------------- /tests/run/kostyrka.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/run/kostyrka.pyx -------------------------------------------------------------------------------- /tests/run/kostyrka2.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/run/kostyrka2.pyx -------------------------------------------------------------------------------- /tests/run/kwargproblems.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/run/kwargproblems.pyx -------------------------------------------------------------------------------- /tests/run/kwonlyargs.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/run/kwonlyargs.pyx -------------------------------------------------------------------------------- /tests/run/lambda_T195.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/run/lambda_T195.pyx -------------------------------------------------------------------------------- /tests/run/lambda_T723.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/run/lambda_T723.pyx -------------------------------------------------------------------------------- /tests/run/lambda_tests.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/run/lambda_tests.pyx -------------------------------------------------------------------------------- /tests/run/lepage_1.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/run/lepage_1.pyx -------------------------------------------------------------------------------- /tests/run/letnode_T766.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/run/letnode_T766.pyx -------------------------------------------------------------------------------- /tests/run/libc_math.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/run/libc_math.pyx -------------------------------------------------------------------------------- /tests/run/libc_stdlib.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/run/libc_stdlib.pyx -------------------------------------------------------------------------------- /tests/run/libc_time.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/run/libc_time.pyx -------------------------------------------------------------------------------- /tests/run/libcpp_algo.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/run/libcpp_algo.pyx -------------------------------------------------------------------------------- /tests/run/libcpp_all.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/run/libcpp_all.pyx -------------------------------------------------------------------------------- /tests/run/line_trace.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/run/line_trace.pyx -------------------------------------------------------------------------------- /tests/run/list.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/run/list.pyx -------------------------------------------------------------------------------- /tests/run/list_pop.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/run/list_pop.pyx -------------------------------------------------------------------------------- /tests/run/listcomp.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/run/listcomp.pyx -------------------------------------------------------------------------------- /tests/run/literal_lists.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/run/literal_lists.pyx -------------------------------------------------------------------------------- /tests/run/literals.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/run/literals.pyx -------------------------------------------------------------------------------- /tests/run/literalslice.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/run/literalslice.pyx -------------------------------------------------------------------------------- /tests/run/locals.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/run/locals.pyx -------------------------------------------------------------------------------- /tests/run/locals_T732.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/run/locals_T732.pyx -------------------------------------------------------------------------------- /tests/run/longintrepr.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/run/longintrepr.pyx -------------------------------------------------------------------------------- /tests/run/longlongindex.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/run/longlongindex.pyx -------------------------------------------------------------------------------- /tests/run/lvalue_refs.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/run/lvalue_refs.pyx -------------------------------------------------------------------------------- /tests/run/menten1.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/run/menten1.pyx -------------------------------------------------------------------------------- /tests/run/metaclass.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/run/metaclass.pyx -------------------------------------------------------------------------------- /tests/run/mod__name__.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/run/mod__name__.pyx -------------------------------------------------------------------------------- /tests/run/mod__spec__.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/run/mod__spec__.pyx -------------------------------------------------------------------------------- /tests/run/modbody.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/run/modbody.pyx -------------------------------------------------------------------------------- /tests/run/modop.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/run/modop.pyx -------------------------------------------------------------------------------- /tests/run/mulop.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/run/mulop.pyx -------------------------------------------------------------------------------- /tests/run/multass.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/run/multass.pyx -------------------------------------------------------------------------------- /tests/run/no_gc.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/run/no_gc.pyx -------------------------------------------------------------------------------- /tests/run/no_gc_clear.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/run/no_gc_clear.pyx -------------------------------------------------------------------------------- /tests/run/nogil.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/run/nogil.pyx -------------------------------------------------------------------------------- /tests/run/nonecheck.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/run/nonecheck.pyx -------------------------------------------------------------------------------- /tests/run/nonlocal_T490.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/run/nonlocal_T490.pyx -------------------------------------------------------------------------------- /tests/run/notinop.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/run/notinop.pyx -------------------------------------------------------------------------------- /tests/run/numpy_cimport.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/run/numpy_cimport.pyx -------------------------------------------------------------------------------- /tests/run/numpy_math.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/run/numpy_math.pyx -------------------------------------------------------------------------------- /tests/run/numpy_pythran.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/run/numpy_pythran.pyx -------------------------------------------------------------------------------- /tests/run/numpy_test.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/run/numpy_test.pyx -------------------------------------------------------------------------------- /tests/run/onelinesuite.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/run/onelinesuite.py -------------------------------------------------------------------------------- /tests/run/or.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/run/or.pyx -------------------------------------------------------------------------------- /tests/run/parallel.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/run/parallel.pyx -------------------------------------------------------------------------------- /tests/run/pass.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/run/pass.pyx -------------------------------------------------------------------------------- /tests/run/pinard5.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/run/pinard5.pyx -------------------------------------------------------------------------------- /tests/run/pinard6.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/run/pinard6.pyx -------------------------------------------------------------------------------- /tests/run/pinard7.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/run/pinard7.pyx -------------------------------------------------------------------------------- /tests/run/pinard8.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/run/pinard8.pyx -------------------------------------------------------------------------------- /tests/run/pointers.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/run/pointers.pyx -------------------------------------------------------------------------------- /tests/run/posix_test.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/run/posix_test.pyx -------------------------------------------------------------------------------- /tests/run/posix_time.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/run/posix_time.pyx -------------------------------------------------------------------------------- /tests/run/posonly.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/run/posonly.py -------------------------------------------------------------------------------- /tests/run/powop.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/run/powop.pyx -------------------------------------------------------------------------------- /tests/run/print.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/run/print.pyx -------------------------------------------------------------------------------- /tests/run/ptrdiff_t.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/run/ptrdiff_t.pyx -------------------------------------------------------------------------------- /tests/run/public_enum.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/run/public_enum.pyx -------------------------------------------------------------------------------- /tests/run/pure.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/run/pure.pyx -------------------------------------------------------------------------------- /tests/run/pure_fused.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/run/pure_fused.pxd -------------------------------------------------------------------------------- /tests/run/pure_fused.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/run/pure_fused.py -------------------------------------------------------------------------------- /tests/run/pure_parallel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/run/pure_parallel.py -------------------------------------------------------------------------------- /tests/run/pure_pxd.srctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/run/pure_pxd.srctree -------------------------------------------------------------------------------- /tests/run/pure_py.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/run/pure_py.py -------------------------------------------------------------------------------- /tests/run/pure_py3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/run/pure_py3.py -------------------------------------------------------------------------------- /tests/run/purecdef.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/run/purecdef.py -------------------------------------------------------------------------------- /tests/run/py2_super.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/run/py2_super.pyx -------------------------------------------------------------------------------- /tests/run/py3k_super.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/run/py3k_super.pyx -------------------------------------------------------------------------------- /tests/run/py_classbody.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/run/py_classbody.py -------------------------------------------------------------------------------- /tests/run/py_hash_t.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/run/py_hash_t.pyx -------------------------------------------------------------------------------- /tests/run/py_ucs4_type.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/run/py_ucs4_type.pyx -------------------------------------------------------------------------------- /tests/run/pyarray.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/run/pyarray.pyx -------------------------------------------------------------------------------- /tests/run/pycapsule.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/run/pycapsule.pyx -------------------------------------------------------------------------------- /tests/run/pycmp.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/run/pycmp.pyx -------------------------------------------------------------------------------- /tests/run/pycontextvar.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/run/pycontextvar.pyx -------------------------------------------------------------------------------- /tests/run/pyextattrref.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/run/pyextattrref.pyx -------------------------------------------------------------------------------- /tests/run/pyintop.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/run/pyintop.pyx -------------------------------------------------------------------------------- /tests/run/pylistsubtype.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/run/pylistsubtype.pyx -------------------------------------------------------------------------------- /tests/run/pynumop.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/run/pynumop.pyx -------------------------------------------------------------------------------- /tests/run/pyparam_nogil.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/run/pyparam_nogil.pyx -------------------------------------------------------------------------------- /tests/run/pytype.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/run/pytype.pyx -------------------------------------------------------------------------------- /tests/run/qualname.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/run/qualname.py -------------------------------------------------------------------------------- /tests/run/r_addint.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/run/r_addint.pyx -------------------------------------------------------------------------------- /tests/run/r_argdefault.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/run/r_argdefault.pyx -------------------------------------------------------------------------------- /tests/run/r_barbieri1.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/run/r_barbieri1.pyx -------------------------------------------------------------------------------- /tests/run/r_bishop3.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/run/r_bishop3.pyx -------------------------------------------------------------------------------- /tests/run/r_bowden1.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/run/r_bowden1.pyx -------------------------------------------------------------------------------- /tests/run/r_delgado_1.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/run/r_delgado_1.pyx -------------------------------------------------------------------------------- /tests/run/r_docstrings.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/run/r_docstrings.pyx -------------------------------------------------------------------------------- /tests/run/r_extcomplex2.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/run/r_extcomplex2.pyx -------------------------------------------------------------------------------- /tests/run/r_extstarargs.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/run/r_extstarargs.pyx -------------------------------------------------------------------------------- /tests/run/r_forloop.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/run/r_forloop.pyx -------------------------------------------------------------------------------- /tests/run/r_hordijk1.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/run/r_hordijk1.pyx -------------------------------------------------------------------------------- /tests/run/r_huss3.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/run/r_huss3.pyx -------------------------------------------------------------------------------- /tests/run/r_jiba1.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/run/r_jiba1.pxd -------------------------------------------------------------------------------- /tests/run/r_jiba1.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/run/r_jiba1.pyx -------------------------------------------------------------------------------- /tests/run/r_lepage_3.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/run/r_lepage_3.pyx -------------------------------------------------------------------------------- /tests/run/r_mang1.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/run/r_mang1.pyx -------------------------------------------------------------------------------- /tests/run/r_mcintyre1.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/run/r_mcintyre1.pyx -------------------------------------------------------------------------------- /tests/run/r_primes.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/run/r_primes.pyx -------------------------------------------------------------------------------- /tests/run/r_print.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/run/r_print.pyx -------------------------------------------------------------------------------- /tests/run/r_pyclass.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/run/r_pyclass.pyx -------------------------------------------------------------------------------- /tests/run/r_pythonapi.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/run/r_pythonapi.pyx -------------------------------------------------------------------------------- /tests/run/r_spamtype.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/run/r_spamtype.pyx -------------------------------------------------------------------------------- /tests/run/r_starargcall.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/run/r_starargcall.pyx -------------------------------------------------------------------------------- /tests/run/r_starargs.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/run/r_starargs.pyx -------------------------------------------------------------------------------- /tests/run/r_toofewargs.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/run/r_toofewargs.pyx -------------------------------------------------------------------------------- /tests/run/r_typecast.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/run/r_typecast.pyx -------------------------------------------------------------------------------- /tests/run/r_uintindex.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/run/r_uintindex.pyx -------------------------------------------------------------------------------- /tests/run/r_vree_1.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/run/r_vree_1.pyx -------------------------------------------------------------------------------- /tests/run/reduce_pickle.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/run/reduce_pickle.pyx -------------------------------------------------------------------------------- /tests/run/ref2global.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/run/ref2global.py -------------------------------------------------------------------------------- /tests/run/ref2local.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/run/ref2local.pyx -------------------------------------------------------------------------------- /tests/run/reimport.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/run/reimport.pyx -------------------------------------------------------------------------------- /tests/run/reraise.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/run/reraise.py -------------------------------------------------------------------------------- /tests/run/reraise_3args.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/run/reraise_3args.pyx -------------------------------------------------------------------------------- /tests/run/return.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/run/return.pyx -------------------------------------------------------------------------------- /tests/run/rodriguez_1.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/run/rodriguez_1.pyx -------------------------------------------------------------------------------- /tests/run/seq_mul.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/run/seq_mul.py -------------------------------------------------------------------------------- /tests/run/set.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/run/set.pyx -------------------------------------------------------------------------------- /tests/run/set_item.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/run/set_item.pyx -------------------------------------------------------------------------------- /tests/run/set_iter.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/run/set_iter.pyx -------------------------------------------------------------------------------- /tests/run/set_literals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/run/set_literals.py -------------------------------------------------------------------------------- /tests/run/set_new.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/run/set_new.py -------------------------------------------------------------------------------- /tests/run/setcomp.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/run/setcomp.pyx -------------------------------------------------------------------------------- /tests/run/setjmp.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/run/setjmp.pyx -------------------------------------------------------------------------------- /tests/run/shapes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/run/shapes.h -------------------------------------------------------------------------------- /tests/run/simpcall.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/run/simpcall.pyx -------------------------------------------------------------------------------- /tests/run/size_t.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/run/size_t.pyx -------------------------------------------------------------------------------- /tests/run/sizeof.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/run/sizeof.pyx -------------------------------------------------------------------------------- /tests/run/slice2.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/run/slice2.pyx -------------------------------------------------------------------------------- /tests/run/slice2_T636.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/run/slice2_T636.py -------------------------------------------------------------------------------- /tests/run/slice2b.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/run/slice2b.pyx -------------------------------------------------------------------------------- /tests/run/slice3.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/run/slice3.pyx -------------------------------------------------------------------------------- /tests/run/slice_charptr.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/run/slice_charptr.pyx -------------------------------------------------------------------------------- /tests/run/slice_ptr.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/run/slice_ptr.pyx -------------------------------------------------------------------------------- /tests/run/specialfloat.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/run/specialfloat.pyx -------------------------------------------------------------------------------- /tests/run/ssize_t_T399.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/run/ssize_t_T399.pyx -------------------------------------------------------------------------------- /tests/run/starargs.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/run/starargs.pyx -------------------------------------------------------------------------------- /tests/run/staticmethod.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/run/staticmethod.pyx -------------------------------------------------------------------------------- /tests/run/strescapes.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/run/strescapes.pyx -------------------------------------------------------------------------------- /tests/run/strfunction.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/run/strfunction.pyx -------------------------------------------------------------------------------- /tests/run/strliterals.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/run/strliterals.pyx -------------------------------------------------------------------------------- /tests/run/strmethods.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/run/strmethods.pyx -------------------------------------------------------------------------------- /tests/run/subclasses.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/run/subclasses.pyx -------------------------------------------------------------------------------- /tests/run/subop.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/run/subop.pyx -------------------------------------------------------------------------------- /tests/run/switch.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/run/switch.pyx -------------------------------------------------------------------------------- /tests/run/tandemstats.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/run/tandemstats.pyx -------------------------------------------------------------------------------- /tests/run/temps_corner1.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/run/temps_corner1.pyx -------------------------------------------------------------------------------- /tests/run/test_asyncgen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/run/test_asyncgen.py -------------------------------------------------------------------------------- /tests/run/test_call.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/run/test_call.py -------------------------------------------------------------------------------- /tests/run/test_fstring.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/run/test_fstring.pyx -------------------------------------------------------------------------------- /tests/run/test_grammar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/run/test_grammar.py -------------------------------------------------------------------------------- /tests/run/test_unicode.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/run/test_unicode.pyx -------------------------------------------------------------------------------- /tests/run/testinclude.pxi: -------------------------------------------------------------------------------- 1 | # this will be included 2 | 3 | D = 2 4 | -------------------------------------------------------------------------------- /tests/run/ticket_123.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/run/ticket_123.pyx -------------------------------------------------------------------------------- /tests/run/ticket_124.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/run/ticket_124.pyx -------------------------------------------------------------------------------- /tests/run/time_pxd.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/run/time_pxd.pyx -------------------------------------------------------------------------------- /tests/run/tp_new.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/run/tp_new.pyx -------------------------------------------------------------------------------- /tests/run/tp_new_T454.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/run/tp_new_T454.pyx -------------------------------------------------------------------------------- /tests/run/trace_nogil.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/run/trace_nogil.pyx -------------------------------------------------------------------------------- /tests/run/tracebacks.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/run/tracebacks.pyx -------------------------------------------------------------------------------- /tests/run/trashcan.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/run/trashcan.pyx -------------------------------------------------------------------------------- /tests/run/trybreak.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/run/trybreak.pyx -------------------------------------------------------------------------------- /tests/run/tryexcept.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/run/tryexcept.pyx -------------------------------------------------------------------------------- /tests/run/tryfinally.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/run/tryfinally.pyx -------------------------------------------------------------------------------- /tests/run/tss.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/run/tss.pyx -------------------------------------------------------------------------------- /tests/run/tuple.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/run/tuple.pyx -------------------------------------------------------------------------------- /tests/run/tupleassign.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/run/tupleassign.pyx -------------------------------------------------------------------------------- /tests/run/tuplereassign.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/run/tuplereassign.pyx -------------------------------------------------------------------------------- /tests/run/typed_slice.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/run/typed_slice.pyx -------------------------------------------------------------------------------- /tests/run/typeof.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/run/typeof.pyx -------------------------------------------------------------------------------- /tests/run/typeofexttype.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/run/typeofexttype.pyx -------------------------------------------------------------------------------- /tests/run/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/run/types.h -------------------------------------------------------------------------------- /tests/run/typetest_T417.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/run/typetest_T417.pyx -------------------------------------------------------------------------------- /tests/run/typing_module.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/run/typing_module.py -------------------------------------------------------------------------------- /tests/run/ufunc.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/run/ufunc.pyx -------------------------------------------------------------------------------- /tests/run/unicodeencode.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/run/unicodeencode.pyx -------------------------------------------------------------------------------- /tests/run/uninitialized.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/run/uninitialized.py -------------------------------------------------------------------------------- /tests/run/unop.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/run/unop.pyx -------------------------------------------------------------------------------- /tests/run/unop_extras.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/run/unop_extras.pyx -------------------------------------------------------------------------------- /tests/run/unpack.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/run/unpack.pyx -------------------------------------------------------------------------------- /tests/run/unpack_fused.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/run/unpack_fused.pyx -------------------------------------------------------------------------------- /tests/run/unreachable.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/run/unreachable.pyx -------------------------------------------------------------------------------- /tests/run/unsigned.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/run/unsigned.pyx -------------------------------------------------------------------------------- /tests/run/unused.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/run/unused.pyx -------------------------------------------------------------------------------- /tests/run/unused_args.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/run/unused_args.pyx -------------------------------------------------------------------------------- /tests/run/varargcall.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/run/varargcall.pyx -------------------------------------------------------------------------------- /tests/run/varargdecl.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/run/varargdecl.pyx -------------------------------------------------------------------------------- /tests/run/verbatiminclude.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/run/verbatiminclude.h -------------------------------------------------------------------------------- /tests/run/voidstarcast.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/run/voidstarcast.pyx -------------------------------------------------------------------------------- /tests/run/watts1.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/run/watts1.pyx -------------------------------------------------------------------------------- /tests/run/weakfail.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/run/weakfail.pyx -------------------------------------------------------------------------------- /tests/run/with_gil.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/run/with_gil.pyx -------------------------------------------------------------------------------- /tests/run/withnogil.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/run/withnogil.pyx -------------------------------------------------------------------------------- /tests/run/withstat.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/run/withstat.pyx -------------------------------------------------------------------------------- /tests/run/withstat_py.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/run/withstat_py.py -------------------------------------------------------------------------------- /tests/run/withstat_py27.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/run/withstat_py27.py -------------------------------------------------------------------------------- /tests/run/wundram1.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/run/wundram1.pyx -------------------------------------------------------------------------------- /tests/windows_bugs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/windows_bugs.txt -------------------------------------------------------------------------------- /tests/windows_bugs_39.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/windows_bugs_39.txt -------------------------------------------------------------------------------- /tests/wrappers/cppwrap.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tests/wrappers/cppwrap.pyx -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/cython/HEAD/tox.ini --------------------------------------------------------------------------------