Imported Upstream version 0.29.0 upstream/0.29.0
authorDongHun Kwak <dh0128.kwak@samsung.com>
Thu, 31 Dec 2020 03:09:13 +0000 (12:09 +0900)
committerDongHun Kwak <dh0128.kwak@samsung.com>
Thu, 31 Dec 2020 03:09:13 +0000 (12:09 +0900)
commit2936a35833c9db59ed3067f73d1ac286616b9967
treea78dfd0d47e1e7147a8ff0430bd13e7efce61eb4
parent01d9e783b3b8cc8c447b79daba32c88bd212f994
Imported Upstream version 0.29.0
396 files changed:
.coveragerc [new file with mode: 0644]
.editorconfig [new file with mode: 0644]
.gitignore
.travis.yml
CHANGES.rst
Cython/Build/Cythonize.py
Cython/Build/Dependencies.py
Cython/Build/Inline.py
Cython/Build/IpythonMagic.py
Cython/Build/Tests/TestCyCache.py [new file with mode: 0644]
Cython/Build/Tests/TestInline.py
Cython/Build/Tests/TestStripLiterals.py
Cython/Compiler/CmdLine.py
Cython/Compiler/Code.pxd
Cython/Compiler/Code.py
Cython/Compiler/ExprNodes.py
Cython/Compiler/Future.py
Cython/Compiler/Lexicon.py
Cython/Compiler/Main.py
Cython/Compiler/ModuleNode.py
Cython/Compiler/Naming.py
Cython/Compiler/Nodes.py
Cython/Compiler/Optimize.py
Cython/Compiler/Options.py
Cython/Compiler/ParseTreeTransforms.pxd
Cython/Compiler/ParseTreeTransforms.py
Cython/Compiler/Parsing.pxd
Cython/Compiler/Parsing.py
Cython/Compiler/Pipeline.py
Cython/Compiler/PyrexTypes.py
Cython/Compiler/Pythran.py
Cython/Compiler/Scanning.pxd
Cython/Compiler/Scanning.py
Cython/Compiler/Symtab.py
Cython/Compiler/TreeFragment.py
Cython/Compiler/Visitor.pxd
Cython/Compiler/Visitor.py
Cython/Coverage.py
Cython/Debugger/DebugWriter.py
Cython/Debugger/libpython.py
Cython/Includes/Deprecated/python2.5.pxd [deleted file]
Cython/Includes/cpython/bytearray.pxd [new file with mode: 0644]
Cython/Includes/cpython/ceval.pxd [new file with mode: 0644]
Cython/Includes/cpython/dict.pxd
Cython/Includes/cpython/exc.pxd
Cython/Includes/cpython/longintrepr.pxd
Cython/Includes/cpython/mem.pxd
Cython/Includes/cpython/module.pxd
Cython/Includes/cpython/object.pxd
Cython/Includes/cpython/pylifecycle.pxd [new file with mode: 0644]
Cython/Includes/cpython/pystate.pxd
Cython/Includes/libc/math.pxd
Cython/Includes/libcpp/deque.pxd
Cython/Includes/libcpp/forward_list.pxd [new file with mode: 0644]
Cython/Includes/libcpp/list.pxd
Cython/Includes/libcpp/map.pxd
Cython/Includes/libcpp/memory.pxd
Cython/Includes/libcpp/queue.pxd
Cython/Includes/libcpp/set.pxd
Cython/Includes/libcpp/unordered_map.pxd
Cython/Includes/libcpp/unordered_set.pxd
Cython/Includes/libcpp/vector.pxd
Cython/Includes/numpy/__init__.pxd
Cython/Plex/Actions.py
Cython/Plex/Scanners.pxd
Cython/Plex/Scanners.py
Cython/Shadow.py
Cython/Shadow.pyi [new file with mode: 0644]
Cython/StringIOTree.py
Cython/Tests/TestCythonUtils.py [new file with mode: 0644]
Cython/Utility/AsyncGen.c
Cython/Utility/Coroutine.c
Cython/Utility/CythonFunction.c
Cython/Utility/Exceptions.c
Cython/Utility/ImportExport.c
Cython/Utility/MemoryView_C.c
Cython/Utility/ModuleSetupCode.c
Cython/Utility/ObjectHandling.c
Cython/Utility/Optimize.c
Cython/Utility/StringTools.c
Cython/Utility/TypeConversion.c
Cython/Utils.py
Demos/overflow_perf_run.py
MANIFEST.in
Makefile
README.rst
appveyor.yml
docs/CONTRIBUTING.rst [new file with mode: 0644]
docs/CONTRIBUTING.txt [deleted file]
docs/README
docs/conf.py
docs/examples/README.rst [new file with mode: 0644]
docs/examples/memoryviews/convolve_fused_types.pyx [deleted file]
docs/examples/memoryviews/convolve_infer_types.pyx [deleted file]
docs/examples/memoryviews/convolve_memview.pyx [deleted file]
docs/examples/memoryviews/convolve_py.py [deleted file]
docs/examples/memoryviews/convolve_typed.pyx [deleted file]
docs/examples/not_in_docs/great_circle/c1.pyx [new file with mode: 0644]
docs/examples/not_in_docs/great_circle/c2.pyx [new file with mode: 0644]
docs/examples/not_in_docs/great_circle/p1.py [new file with mode: 0644]
docs/examples/quickstart/build/hello.pyx [new file with mode: 0644]
docs/examples/quickstart/build/setup.py [new file with mode: 0644]
docs/examples/quickstart/cythonize/cdef_keyword.pyx [new file with mode: 0644]
docs/examples/quickstart/cythonize/integrate.py [new file with mode: 0644]
docs/examples/quickstart/cythonize/integrate_cy.pyx [new file with mode: 0644]
docs/examples/tutorial/array/clone.pyx [new file with mode: 0644]
docs/examples/tutorial/array/overhead.pyx [new file with mode: 0644]
docs/examples/tutorial/array/resize.pyx [new file with mode: 0644]
docs/examples/tutorial/array/safe_usage.pyx [new file with mode: 0644]
docs/examples/tutorial/array/unsafe_usage.pyx [new file with mode: 0644]
docs/examples/tutorial/cdef_classes/integrate.pyx [new file with mode: 0644]
docs/examples/tutorial/cdef_classes/math_function.py [new file with mode: 0644]
docs/examples/tutorial/cdef_classes/math_function_2.pyx [new file with mode: 0644]
docs/examples/tutorial/cdef_classes/nonecheck.pyx [new file with mode: 0644]
docs/examples/tutorial/cdef_classes/sin_of_square.pxd [new file with mode: 0644]
docs/examples/tutorial/cdef_classes/sin_of_square.pyx [new file with mode: 0644]
docs/examples/tutorial/cdef_classes/wave_function.pyx [new file with mode: 0644]
docs/examples/tutorial/clibraries/c-algorithms/src/queue.h [new file with mode: 0644]
docs/examples/tutorial/clibraries/cqueue.pxd [new file with mode: 0644]
docs/examples/tutorial/clibraries/queue.pyx [new file with mode: 0644]
docs/examples/tutorial/clibraries/queue2.pyx [new file with mode: 0644]
docs/examples/tutorial/clibraries/queue3.pyx [new file with mode: 0644]
docs/examples/tutorial/clibraries/test_queue.py [new file with mode: 0644]
docs/examples/tutorial/cython_tutorial/fib.pyx [new file with mode: 0644]
docs/examples/tutorial/cython_tutorial/primes.pyx [new file with mode: 0644]
docs/examples/tutorial/cython_tutorial/primes_cpp.pyx [new file with mode: 0644]
docs/examples/tutorial/cython_tutorial/primes_python.py [new file with mode: 0644]
docs/examples/tutorial/cython_tutorial/setup.py [new file with mode: 0644]
docs/examples/tutorial/external/atoi.pyx [new file with mode: 0644]
docs/examples/tutorial/external/cpdef_sin.pyx [new file with mode: 0644]
docs/examples/tutorial/external/keyword_args.pyx [new file with mode: 0644]
docs/examples/tutorial/external/keyword_args_call.pyx [new file with mode: 0644]
docs/examples/tutorial/external/libc_sin.pyx [new file with mode: 0644]
docs/examples/tutorial/external/py_version_hex.pyx [new file with mode: 0644]
docs/examples/tutorial/external/setup.py [new file with mode: 0644]
docs/examples/tutorial/fib1/fib.pyx [deleted file]
docs/examples/tutorial/fib1/setup.py [deleted file]
docs/examples/tutorial/great_circle/c1.pyx [deleted file]
docs/examples/tutorial/great_circle/c2.pyx [deleted file]
docs/examples/tutorial/great_circle/p1.py [deleted file]
docs/examples/tutorial/memory_allocation/malloc.pyx [new file with mode: 0644]
docs/examples/tutorial/memory_allocation/some_memory.pyx [new file with mode: 0644]
docs/examples/tutorial/numpy/convolve2.pyx [new file with mode: 0644]
docs/examples/tutorial/numpy/convolve_py.py [new file with mode: 0644]
docs/examples/tutorial/primes/primes.py [deleted file]
docs/examples/tutorial/primes/primes.pyx [deleted file]
docs/examples/tutorial/primes/setup.py [deleted file]
docs/examples/tutorial/profiling_tutorial/calc_pi.py [new file with mode: 0644]
docs/examples/tutorial/profiling_tutorial/calc_pi_2.pyx [new file with mode: 0644]
docs/examples/tutorial/profiling_tutorial/calc_pi_3.pyx [new file with mode: 0644]
docs/examples/tutorial/profiling_tutorial/calc_pi_4.pyx [new file with mode: 0644]
docs/examples/tutorial/profiling_tutorial/often_called.pyx [new file with mode: 0644]
docs/examples/tutorial/profiling_tutorial/profile.py [new file with mode: 0644]
docs/examples/tutorial/profiling_tutorial/profile_2.py [new file with mode: 0644]
docs/examples/tutorial/pure/A.pxd [new file with mode: 0644]
docs/examples/tutorial/pure/A.py [new file with mode: 0644]
docs/examples/tutorial/pure/A_equivalent.pyx [new file with mode: 0644]
docs/examples/tutorial/pure/annotations.py [new file with mode: 0644]
docs/examples/tutorial/pure/c_arrays.py [new file with mode: 0644]
docs/examples/tutorial/pure/cclass.py [new file with mode: 0644]
docs/examples/tutorial/pure/compiled_switch.py [new file with mode: 0644]
docs/examples/tutorial/pure/cython_declare.py [new file with mode: 0644]
docs/examples/tutorial/pure/cython_declare2.py [new file with mode: 0644]
docs/examples/tutorial/pure/dostuff.pxd [new file with mode: 0644]
docs/examples/tutorial/pure/dostuff.py [new file with mode: 0644]
docs/examples/tutorial/pure/exceptval.py [new file with mode: 0644]
docs/examples/tutorial/pure/locals.py [new file with mode: 0644]
docs/examples/tutorial/pure/mymodule.pxd [new file with mode: 0644]
docs/examples/tutorial/pure/mymodule.py [new file with mode: 0644]
docs/examples/tutorial/pure/pep_526.py [new file with mode: 0644]
docs/examples/tutorial/string/api_func.pyx [new file with mode: 0644]
docs/examples/tutorial/string/arg_memview.pyx [new file with mode: 0644]
docs/examples/tutorial/string/auto_conversion_1.pyx [new file with mode: 0644]
docs/examples/tutorial/string/auto_conversion_2.pyx [new file with mode: 0644]
docs/examples/tutorial/string/auto_conversion_3.pyx [new file with mode: 0644]
docs/examples/tutorial/string/c_func.pxd [new file with mode: 0644]
docs/examples/tutorial/string/c_func.pyx [new file with mode: 0644]
docs/examples/tutorial/string/const.pyx [new file with mode: 0644]
docs/examples/tutorial/string/cpp_string.pyx [new file with mode: 0644]
docs/examples/tutorial/string/decode.pyx [new file with mode: 0644]
docs/examples/tutorial/string/decode_cpp_string.pyx [new file with mode: 0644]
docs/examples/tutorial/string/for_bytes.pyx [new file with mode: 0644]
docs/examples/tutorial/string/for_char.pyx [new file with mode: 0644]
docs/examples/tutorial/string/for_unicode.pyx [new file with mode: 0644]
docs/examples/tutorial/string/if_char_in.pyx [new file with mode: 0644]
docs/examples/tutorial/string/naive_decode.pyx [new file with mode: 0644]
docs/examples/tutorial/string/return_memview.pyx [new file with mode: 0644]
docs/examples/tutorial/string/slicing_c_string.pyx [new file with mode: 0644]
docs/examples/tutorial/string/someheader.h [new file with mode: 0644]
docs/examples/tutorial/string/to_char.pyx [new file with mode: 0644]
docs/examples/tutorial/string/to_unicode.pxd [new file with mode: 0644]
docs/examples/tutorial/string/to_unicode.pyx [new file with mode: 0644]
docs/examples/tutorial/string/try_finally.pyx [new file with mode: 0644]
docs/examples/tutorial/string/utf_eight.pyx [new file with mode: 0644]
docs/examples/userguide/buffer/matrix.pyx [new file with mode: 0644]
docs/examples/userguide/buffer/matrix_with_buffer.pyx [new file with mode: 0644]
docs/examples/userguide/buffer/view_count.pyx [new file with mode: 0644]
docs/examples/userguide/early_binding_for_speed/rectangle.pyx [new file with mode: 0644]
docs/examples/userguide/early_binding_for_speed/rectangle_cdef.pyx [new file with mode: 0644]
docs/examples/userguide/early_binding_for_speed/rectangle_cpdef.pyx [new file with mode: 0644]
docs/examples/userguide/extension_types/dict_animal.pyx [new file with mode: 0644]
docs/examples/userguide/extension_types/extendable_animal.pyx [new file with mode: 0644]
docs/examples/userguide/extension_types/my_module.pxd [new file with mode: 0644]
docs/examples/userguide/extension_types/my_module.pyx [new file with mode: 0644]
docs/examples/userguide/extension_types/python_access.pyx [new file with mode: 0644]
docs/examples/userguide/extension_types/shrubbery.pyx [new file with mode: 0644]
docs/examples/userguide/extension_types/shrubbery_2.pyx [new file with mode: 0644]
docs/examples/userguide/extension_types/widen_shrubbery.pyx [new file with mode: 0644]
docs/examples/userguide/external_C_code/c_code_docstring.pyx [new file with mode: 0644]
docs/examples/userguide/external_C_code/delorean.pyx [new file with mode: 0644]
docs/examples/userguide/external_C_code/marty.c [new file with mode: 0644]
docs/examples/userguide/fusedtypes/char_or_float.pyx [new file with mode: 0644]
docs/examples/userguide/language_basics/casting_python.pyx [new file with mode: 0644]
docs/examples/userguide/language_basics/cdef_block.pyx [new file with mode: 0644]
docs/examples/userguide/language_basics/compile_time.pyx [new file with mode: 0644]
docs/examples/userguide/language_basics/kwargs_1.pyx [new file with mode: 0644]
docs/examples/userguide/language_basics/kwargs_2.pyx [new file with mode: 0644]
docs/examples/userguide/language_basics/open_file.pyx [new file with mode: 0644]
docs/examples/userguide/language_basics/optional_subclassing.pxd [new file with mode: 0644]
docs/examples/userguide/language_basics/optional_subclassing.pyx [new file with mode: 0644]
docs/examples/userguide/language_basics/override.pyx [new file with mode: 0644]
docs/examples/userguide/language_basics/struct_union_enum.pyx [new file with mode: 0644]
docs/examples/userguide/memoryviews/C_func_file.c [new file with mode: 0644]
docs/examples/userguide/memoryviews/C_func_file.h [new file with mode: 0644]
docs/examples/userguide/memoryviews/add_one.pyx [new file with mode: 0644]
docs/examples/userguide/memoryviews/copy.pyx [new file with mode: 0644]
docs/examples/userguide/memoryviews/memory_layout.pyx [new file with mode: 0644]
docs/examples/userguide/memoryviews/memory_layout_2.pyx [new file with mode: 0644]
docs/examples/userguide/memoryviews/memview_to_c.pyx [new file with mode: 0644]
docs/examples/userguide/memoryviews/not_none.pyx [new file with mode: 0644]
docs/examples/userguide/memoryviews/np_flag_const.pyx [new file with mode: 0644]
docs/examples/userguide/memoryviews/quickstart.pyx [new file with mode: 0644]
docs/examples/userguide/memoryviews/slicing.pyx [new file with mode: 0644]
docs/examples/userguide/memoryviews/transpose.pyx [new file with mode: 0644]
docs/examples/userguide/memoryviews/view_string.pyx [new file with mode: 0644]
docs/examples/userguide/numpy_tutorial/compute_fused_types.pyx [new file with mode: 0644]
docs/examples/userguide/numpy_tutorial/compute_infer_types.pyx [new file with mode: 0644]
docs/examples/userguide/numpy_tutorial/compute_memview.pyx [new file with mode: 0644]
docs/examples/userguide/numpy_tutorial/compute_prange.pyx [new file with mode: 0644]
docs/examples/userguide/numpy_tutorial/compute_py.py [new file with mode: 0644]
docs/examples/userguide/numpy_tutorial/compute_typed.pyx [new file with mode: 0644]
docs/examples/userguide/numpy_tutorial/numpy_and_cython.ipynb [new file with mode: 0644]
docs/examples/userguide/parallelism/breaking_loop.pyx [new file with mode: 0644]
docs/examples/userguide/parallelism/cimport_openmp.pyx [new file with mode: 0644]
docs/examples/userguide/parallelism/setup.py [new file with mode: 0644]
docs/examples/userguide/parallelism/simple_sum.pyx [new file with mode: 0644]
docs/examples/userguide/sharing_declarations/c_lunch.pxd [new file with mode: 0644]
docs/examples/userguide/sharing_declarations/dishes.pxd [new file with mode: 0644]
docs/examples/userguide/sharing_declarations/landscaping.pyx [new file with mode: 0644]
docs/examples/userguide/sharing_declarations/lunch.h [new file with mode: 0644]
docs/examples/userguide/sharing_declarations/lunch.pyx [new file with mode: 0644]
docs/examples/userguide/sharing_declarations/restaurant.pyx [new file with mode: 0644]
docs/examples/userguide/sharing_declarations/setup.py [new file with mode: 0644]
docs/examples/userguide/sharing_declarations/shrubbing.pxd [new file with mode: 0644]
docs/examples/userguide/sharing_declarations/shrubbing.pyx [new file with mode: 0644]
docs/examples/userguide/sharing_declarations/spammery.pyx [new file with mode: 0644]
docs/examples/userguide/sharing_declarations/volume.pxd [new file with mode: 0644]
docs/examples/userguide/sharing_declarations/volume.pyx [new file with mode: 0644]
docs/examples/userguide/wrapping_CPlusPlus/Rectangle.cpp [new file with mode: 0644]
docs/examples/userguide/wrapping_CPlusPlus/Rectangle.h [new file with mode: 0644]
docs/examples/userguide/wrapping_CPlusPlus/Rectangle.pxd [new file with mode: 0644]
docs/examples/userguide/wrapping_CPlusPlus/cython_usage.pyx [new file with mode: 0644]
docs/examples/userguide/wrapping_CPlusPlus/function_templates.pyx [new file with mode: 0644]
docs/examples/userguide/wrapping_CPlusPlus/iterate.pyx [new file with mode: 0644]
docs/examples/userguide/wrapping_CPlusPlus/nested_class.pyx [new file with mode: 0644]
docs/examples/userguide/wrapping_CPlusPlus/python_to_cpp.pyx [new file with mode: 0644]
docs/examples/userguide/wrapping_CPlusPlus/rect.pyx [new file with mode: 0644]
docs/examples/userguide/wrapping_CPlusPlus/rect_ptr.pyx [new file with mode: 0644]
docs/examples/userguide/wrapping_CPlusPlus/rect_with_attributes.pyx [new file with mode: 0644]
docs/examples/userguide/wrapping_CPlusPlus/setup.py [new file with mode: 0644]
docs/examples/userguide/wrapping_CPlusPlus/templates.pyx [new file with mode: 0644]
docs/examples/userguide/wrapping_CPlusPlus/vector_demo.pyx [new file with mode: 0644]
docs/examples/userguide/wrapping_CPlusPlus/wrapper_vector.pyx [new file with mode: 0644]
docs/index.rst
docs/make.bat [new file with mode: 0644]
docs/src/quickstart/build.rst
docs/src/quickstart/cythonize.rst
docs/src/quickstart/install.rst
docs/src/quickstart/overview.rst
docs/src/reference/Makefile [deleted file]
docs/src/reference/compilation.rst
docs/src/reference/extension_types.rst
docs/src/reference/index.rst
docs/src/reference/language_basics.rst
docs/src/reference/special_methods_table.rst
docs/src/tutorial/appendix.rst
docs/src/tutorial/array.rst
docs/src/tutorial/cdef_classes.rst
docs/src/tutorial/clibraries.rst
docs/src/tutorial/cython_tutorial.rst
docs/src/tutorial/external.rst
docs/src/tutorial/memory_allocation.rst
docs/src/tutorial/numpy.rst
docs/src/tutorial/profiling_tutorial.rst
docs/src/tutorial/pure.rst
docs/src/tutorial/pxd_files.rst
docs/src/tutorial/queue_example/cqueue.pxd [deleted file]
docs/src/tutorial/queue_example/queue.pyx [deleted file]
docs/src/tutorial/readings.rst
docs/src/tutorial/related_work.rst
docs/src/tutorial/strings.rst
docs/src/userguide/buffer.rst
docs/src/userguide/compute_typed_html.jpg [new file with mode: 0644]
docs/src/userguide/convolve_types_html.png [deleted file]
docs/src/userguide/debugging.rst
docs/src/userguide/early_binding_for_speed.rst
docs/src/userguide/extension_types.rst
docs/src/userguide/external_C_code.rst
docs/src/userguide/fusedtypes.rst
docs/src/userguide/language_basics.rst
docs/src/userguide/limitations.rst
docs/src/userguide/memoryviews.rst
docs/src/userguide/numpy_tutorial.rst
docs/src/userguide/parallelism.rst
docs/src/userguide/pypy.rst
docs/src/userguide/pyrex_differences.rst
docs/src/userguide/sharing_declarations.rst
docs/src/userguide/source_files_and_compilation.rst
docs/src/userguide/special_methods.rst
docs/src/userguide/wrapping_CPlusPlus.rst
pyximport/pyximport.py
runtests.py
setup.py
test-requirements.txt
tests/buffers/mockbuffers.pxi
tests/build/cythonize_cython.srctree [new file with mode: 0644]
tests/compile/buildenv.pyx [new file with mode: 0644]
tests/compile/builtinbuffer.py [new file with mode: 0644]
tests/compile/future_imports.pyx
tests/errors/cdef_func_syntax.pyx [new file with mode: 0644]
tests/errors/def_nogil.pyx [deleted file]
tests/errors/invalid_syntax_py.pyx [new file with mode: 0644]
tests/errors/nogil.pyx
tests/errors/pure_errors.py [new file with mode: 0644]
tests/memoryview/memoryview_annotation_typing.py [new file with mode: 0644]
tests/memoryview/memoryview_pep489_typing.pyx [new file with mode: 0644]
tests/memoryview/memslice.pyx
tests/pyximport/pyximport_namespace.srctree [new file with mode: 0644]
tests/run/ass2global.py
tests/run/assigned_builtin_methods.pyx
tests/run/async_globals.pyx [new file with mode: 0644]
tests/run/check_size.srctree [new file with mode: 0644]
tests/run/constant_folding.py
tests/run/cpdef_method_override.pyx [new file with mode: 0644]
tests/run/cpdef_method_override_recursion.pyx [new file with mode: 0644]
tests/run/cpp_classes_def.pyx
tests/run/cpp_exceptions.pyx
tests/run/cpp_exceptions_helper.h
tests/run/cpp_smart_ptr.pyx
tests/run/cpp_smart_ptr_helper.h
tests/run/cpp_stl_conversion.pyx
tests/run/cpp_stl_cpp11.pyx
tests/run/cpp_stl_forward_list.pyx [new file with mode: 0644]
tests/run/cpp_stl_function.pyx
tests/run/cpp_stl_list.pyx [new file with mode: 0644]
tests/run/cpp_stl_string_cpp11.pyx
tests/run/cpython_capi.pyx [new file with mode: 0644]
tests/run/cyfunction.pyx
tests/run/cython3.pyx
tests/run/cython3_no_unicode_literals.pyx [new file with mode: 0644]
tests/run/cython_includes.pyx
tests/run/exceptions_nogil.pyx
tests/run/ext_attr_getter.srctree [new file with mode: 0644]
tests/run/exttype_freelist.pyx
tests/run/import_star.pyx
tests/run/longintrepr.pyx
tests/run/numpy_bufacc_T155.pyx
tests/run/numpy_parallel.pyx
tests/run/numpy_pythran.pyx
tests/run/numpy_subarray.pyx
tests/run/numpy_test.pyx
tests/run/posix_time.pyx
tests/run/public_fused_types.srctree
tests/run/pure_parallel.py [new file with mode: 0644]
tests/run/pure_py.py
tests/run/pure_py3.py
tests/run/purecdef.py
tests/run/pyintop.pyx
tests/run/reimport_from_package.srctree
tests/run/reimport_from_subinterpreter.srctree [new file with mode: 0644]
tests/run/reload_ext_module.pyx [new file with mode: 0644]
tests/run/scanner_trace.srctree
tests/run/simpcall.pyx
tests/run/slice2.pyx
tests/run/str_default_auto_encoding.pyx
tests/run/switch.pyx
tests/run/switch_transform.pyx
tests/run/test_coroutines_pep492.pyx
tests/run/test_exceptions.pyx [new file with mode: 0644]
tests/run/test_grammar.py
tests/run/test_unicode.pyx [new file with mode: 0644]
tests/run/test_unicode_string_tests.pxi [new file with mode: 0644]
tests/run/typed_slice.pyx
tests/run/unicode_formatting.pyx [new file with mode: 0644]
tests/windows_bugs.txt
tox.ini