Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Labels
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Commits
Open sidebar
nexedi
cython
Commits
f6762fad
Commit
f6762fad
authored
Dec 13, 2010
by
Robert Bradshaw
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Remove trailing whitespace.
parent
671e6a53
Changes
235
Show whitespace changes
Inline
Side-by-side
Showing
235 changed files
with
2969 additions
and
2969 deletions
+2969
-2969
COPYING.txt
COPYING.txt
+2
-2
Cython/Build/Dependencies.py
Cython/Build/Dependencies.py
+25
-25
Cython/Build/Inline.py
Cython/Build/Inline.py
+3
-3
Cython/Build/Tests/TestInline.py
Cython/Build/Tests/TestInline.py
+1
-1
Cython/CodeWriter.py
Cython/CodeWriter.py
+27
-27
Cython/Compiler/AnalysedTreeTransforms.py
Cython/Compiler/AnalysedTreeTransforms.py
+1
-1
Cython/Compiler/Annotate.py
Cython/Compiler/Annotate.py
+18
-18
Cython/Compiler/AutoDocTransforms.py
Cython/Compiler/AutoDocTransforms.py
+2
-2
Cython/Compiler/Buffer.py
Cython/Compiler/Buffer.py
+28
-28
Cython/Compiler/Builtin.py
Cython/Compiler/Builtin.py
+4
-4
Cython/Compiler/CmdLine.py
Cython/Compiler/CmdLine.py
+4
-4
Cython/Compiler/Code.py
Cython/Compiler/Code.py
+64
-64
Cython/Compiler/ControlFlow.py
Cython/Compiler/ControlFlow.py
+23
-23
Cython/Compiler/CythonScope.py
Cython/Compiler/CythonScope.py
+6
-6
Cython/Compiler/Errors.py
Cython/Compiler/Errors.py
+7
-7
Cython/Compiler/ExprNodes.py
Cython/Compiler/ExprNodes.py
+484
-484
Cython/Compiler/Interpreter.py
Cython/Compiler/Interpreter.py
+2
-2
Cython/Compiler/Lexicon.py
Cython/Compiler/Lexicon.py
+27
-27
Cython/Compiler/Main.py
Cython/Compiler/Main.py
+27
-27
Cython/Compiler/ModuleNode.py
Cython/Compiler/ModuleNode.py
+87
-87
Cython/Compiler/Nodes.py
Cython/Compiler/Nodes.py
+293
-293
Cython/Compiler/Optimize.py
Cython/Compiler/Optimize.py
+19
-19
Cython/Compiler/Options.py
Cython/Compiler/Options.py
+19
-19
Cython/Compiler/ParseTreeTransforms.py
Cython/Compiler/ParseTreeTransforms.py
+81
-81
Cython/Compiler/Parsing.py
Cython/Compiler/Parsing.py
+52
-52
Cython/Compiler/PyrexTypes.py
Cython/Compiler/PyrexTypes.py
+180
-180
Cython/Compiler/Scanning.py
Cython/Compiler/Scanning.py
+26
-26
Cython/Compiler/Symtab.py
Cython/Compiler/Symtab.py
+131
-131
Cython/Compiler/Tests/TestBuffer.py
Cython/Compiler/Tests/TestBuffer.py
+4
-4
Cython/Compiler/Tests/TestDecorators.py
Cython/Compiler/Tests/TestDecorators.py
+1
-1
Cython/Compiler/Tests/TestParseTreeTransforms.py
Cython/Compiler/Tests/TestParseTreeTransforms.py
+14
-14
Cython/Compiler/Tests/TestTreeFragment.py
Cython/Compiler/Tests/TestTreeFragment.py
+3
-3
Cython/Compiler/TreeFragment.py
Cython/Compiler/TreeFragment.py
+13
-13
Cython/Compiler/TreePath.py
Cython/Compiler/TreePath.py
+2
-2
Cython/Compiler/TypeInference.py
Cython/Compiler/TypeInference.py
+22
-22
Cython/Compiler/TypeSlots.py
Cython/Compiler/TypeSlots.py
+53
-53
Cython/Compiler/UtilNodes.py
Cython/Compiler/UtilNodes.py
+13
-13
Cython/Compiler/Visitor.py
Cython/Compiler/Visitor.py
+14
-14
Cython/Debugger/Cygdb.py
Cython/Debugger/Cygdb.py
+11
-11
Cython/Debugger/DebugWriter.py
Cython/Debugger/DebugWriter.py
+7
-7
Cython/Debugger/Tests/TestLibCython.py
Cython/Debugger/Tests/TestLibCython.py
+35
-35
Cython/Debugger/Tests/cfuncs.c
Cython/Debugger/Tests/cfuncs.c
+1
-1
Cython/Debugger/Tests/test_libcython_in_gdb.py
Cython/Debugger/Tests/test_libcython_in_gdb.py
+74
-74
Cython/Debugger/Tests/test_libpython_in_gdb.py
Cython/Debugger/Tests/test_libpython_in_gdb.py
+30
-30
Cython/Debugger/libcython.py
Cython/Debugger/libcython.py
+187
-187
Cython/Debugger/libpython.py
Cython/Debugger/libpython.py
+157
-157
Cython/Distutils/__init__.py
Cython/Distutils/__init__.py
+1
-1
Cython/Distutils/build_ext.py
Cython/Distutils/build_ext.py
+16
-16
Cython/Includes/cpython/__init__.pxd
Cython/Includes/cpython/__init__.pxd
+5
-5
Cython/Includes/cpython/bool.pxd
Cython/Includes/cpython/bool.pxd
+3
-3
Cython/Includes/cpython/buffer.pxd
Cython/Includes/cpython/buffer.pxd
+2
-2
Cython/Includes/cpython/bytes.pxd
Cython/Includes/cpython/bytes.pxd
+8
-8
Cython/Includes/cpython/complex.pxd
Cython/Includes/cpython/complex.pxd
+5
-5
Cython/Includes/cpython/dict.pxd
Cython/Includes/cpython/dict.pxd
+6
-6
Cython/Includes/cpython/exc.pxd
Cython/Includes/cpython/exc.pxd
+3
-3
Cython/Includes/cpython/float.pxd
Cython/Includes/cpython/float.pxd
+4
-4
Cython/Includes/cpython/function.pxd
Cython/Includes/cpython/function.pxd
+4
-4
Cython/Includes/cpython/instance.pxd
Cython/Includes/cpython/instance.pxd
+3
-3
Cython/Includes/cpython/int.pxd
Cython/Includes/cpython/int.pxd
+3
-3
Cython/Includes/cpython/iterator.pxd
Cython/Includes/cpython/iterator.pxd
+1
-1
Cython/Includes/cpython/list.pxd
Cython/Includes/cpython/list.pxd
+5
-5
Cython/Includes/cpython/long.pxd
Cython/Includes/cpython/long.pxd
+9
-9
Cython/Includes/cpython/mem.pxd
Cython/Includes/cpython/mem.pxd
+1
-1
Cython/Includes/cpython/method.pxd
Cython/Includes/cpython/method.pxd
+6
-6
Cython/Includes/cpython/module.pxd
Cython/Includes/cpython/module.pxd
+4
-4
Cython/Includes/cpython/number.pxd
Cython/Includes/cpython/number.pxd
+6
-6
Cython/Includes/cpython/object.pxd
Cython/Includes/cpython/object.pxd
+4
-4
Cython/Includes/cpython/pycapsule.pxd
Cython/Includes/cpython/pycapsule.pxd
+1
-1
Cython/Includes/cpython/ref.pxd
Cython/Includes/cpython/ref.pxd
+1
-1
Cython/Includes/cpython/sequence.pxd
Cython/Includes/cpython/sequence.pxd
+2
-2
Cython/Includes/cpython/set.pxd
Cython/Includes/cpython/set.pxd
+5
-5
Cython/Includes/cpython/string.pxd
Cython/Includes/cpython/string.pxd
+8
-8
Cython/Includes/cpython/tuple.pxd
Cython/Includes/cpython/tuple.pxd
+4
-4
Cython/Includes/cpython/type.pxd
Cython/Includes/cpython/type.pxd
+3
-3
Cython/Includes/cpython/unicode.pxd
Cython/Includes/cpython/unicode.pxd
+14
-14
Cython/Includes/libc/signal.pxd
Cython/Includes/libc/signal.pxd
+1
-1
Cython/Includes/libc/stdio.pxd
Cython/Includes/libc/stdio.pxd
+1
-1
Cython/Includes/libc/stdlib.pxd
Cython/Includes/libc/stdlib.pxd
+2
-2
Cython/Includes/libc/string.pxd
Cython/Includes/libc/string.pxd
+1
-1
Cython/Includes/numpy.pxd
Cython/Includes/numpy.pxd
+19
-19
Cython/Includes/posix/fcntl.pxd
Cython/Includes/posix/fcntl.pxd
+1
-1
Cython/Includes/posix/unistd.pxd
Cython/Includes/posix/unistd.pxd
+1
-1
Cython/Plex/Actions.py
Cython/Plex/Actions.py
+3
-3
Cython/Plex/DFA.py
Cython/Plex/DFA.py
+3
-3
Cython/Plex/Errors.py
Cython/Plex/Errors.py
+1
-1
Cython/Plex/Lexicons.py
Cython/Plex/Lexicons.py
+1
-1
Cython/Plex/Machines.py
Cython/Plex/Machines.py
+14
-14
Cython/Plex/Regexps.py
Cython/Plex/Regexps.py
+19
-19
Cython/Plex/Scanners.pxd
Cython/Plex/Scanners.pxd
+1
-1
Cython/Plex/Scanners.py
Cython/Plex/Scanners.py
+3
-3
Cython/Plex/Traditional.py
Cython/Plex/Traditional.py
+12
-12
Cython/Plex/Transitions.py
Cython/Plex/Transitions.py
+29
-29
Cython/Shadow.py
Cython/Shadow.py
+13
-13
Cython/StringIOTree.py
Cython/StringIOTree.py
+1
-1
Cython/TestUtils.py
Cython/TestUtils.py
+10
-10
Cython/Tests/TestCodeWriter.py
Cython/Tests/TestCodeWriter.py
+5
-5
Cython/Tests/TestStringIOTree.py
Cython/Tests/TestStringIOTree.py
+10
-10
Cython/Tests/xmlrunner.py
Cython/Tests/xmlrunner.py
+54
-54
Cython/Utils.py
Cython/Utils.py
+2
-2
Cython/__init__.py
Cython/__init__.py
+1
-1
INSTALL.txt
INSTALL.txt
+2
-2
ToDo.txt
ToDo.txt
+1
-1
USAGE.txt
USAGE.txt
+1
-1
tests/broken/b_extimpinherit.pyx
tests/broken/b_extimpinherit.pyx
+1
-1
tests/broken/cdefemptysue.pyx
tests/broken/cdefemptysue.pyx
+3
-3
tests/broken/cdefexternblock.pyx
tests/broken/cdefexternblock.pyx
+3
-3
tests/broken/externsue.pyx
tests/broken/externsue.pyx
+2
-2
tests/broken/getattr.pyx
tests/broken/getattr.pyx
+1
-1
tests/broken/r_excval.pyx
tests/broken/r_excval.pyx
+1
-1
tests/broken/r_extcmethod.pyx
tests/broken/r_extcmethod.pyx
+1
-1
tests/broken/r_extimpinherit.pyx
tests/broken/r_extimpinherit.pyx
+1
-1
tests/broken/r_extinherit.pyx
tests/broken/r_extinherit.pyx
+2
-2
tests/broken/r_extmember.pyx
tests/broken/r_extmember.pyx
+2
-2
tests/broken/r_extnumeric2.pyx
tests/broken/r_extnumeric2.pyx
+3
-3
tests/broken/r_extproperty.pyx
tests/broken/r_extproperty.pyx
+4
-4
tests/bugs.txt
tests/bugs.txt
+2
-2
tests/compile/a_capi.pyx
tests/compile/a_capi.pyx
+1
-1
tests/compile/c_directives.pyx
tests/compile/c_directives.pyx
+2
-2
tests/compile/cargdef.pyx
tests/compile/cargdef.pyx
+3
-3
tests/compile/cassign.pyx
tests/compile/cassign.pyx
+2
-2
tests/compile/cast_ctypedef_array_T518.pyx
tests/compile/cast_ctypedef_array_T518.pyx
+4
-4
tests/compile/cenum.pyx
tests/compile/cenum.pyx
+1
-1
tests/compile/docstrings.pyx
tests/compile/docstrings.pyx
+1
-1
tests/compile/extcmethcall.pyx
tests/compile/extcmethcall.pyx
+1
-1
tests/compile/extcoerce.pyx
tests/compile/extcoerce.pyx
+1
-1
tests/compile/extdelattr.pyx
tests/compile/extdelattr.pyx
+1
-1
tests/compile/extdelitem.pyx
tests/compile/extdelitem.pyx
+1
-1
tests/compile/extdelslice.pyx
tests/compile/extdelslice.pyx
+1
-1
tests/compile/extgetattr.pyx
tests/compile/extgetattr.pyx
+1
-1
tests/compile/extinheritdel.pyx
tests/compile/extinheritdel.pyx
+1
-1
tests/compile/extinheritset.pyx
tests/compile/extinheritset.pyx
+1
-1
tests/compile/extpropertyall.pyx
tests/compile/extpropertyall.pyx
+3
-3
tests/compile/extsetattr.pyx
tests/compile/extsetattr.pyx
+1
-1
tests/compile/extsetitem.pyx
tests/compile/extsetitem.pyx
+1
-1
tests/compile/extsetslice.pyx
tests/compile/extsetslice.pyx
+1
-1
tests/compile/for.pyx
tests/compile/for.pyx
+7
-7
tests/compile/fromimport.pyx
tests/compile/fromimport.pyx
+1
-1
tests/compile/gencall.pyx
tests/compile/gencall.pyx
+1
-1
tests/compile/huss2.pyx
tests/compile/huss2.pyx
+1
-1
tests/compile/ia_cdefblock.pyx
tests/compile/ia_cdefblock.pyx
+4
-4
tests/compile/import.pyx
tests/compile/import.pyx
+1
-1
tests/compile/index.pyx
tests/compile/index.pyx
+1
-1
tests/compile/jiba3.pyx
tests/compile/jiba3.pyx
+1
-1
tests/compile/libc_signal.pyx
tests/compile/libc_signal.pyx
+1
-1
tests/compile/point.h
tests/compile/point.h
+1
-1
tests/compile/pylong.pyx
tests/compile/pylong.pyx
+4
-4
tests/compile/tryexcept.pyx
tests/compile/tryexcept.pyx
+11
-11
tests/compile/tryfinally.pyx
tests/compile/tryfinally.pyx
+4
-4
tests/compile/types_and_names.pxd
tests/compile/types_and_names.pxd
+3
-3
tests/compile/types_and_names.pyx
tests/compile/types_and_names.pyx
+2
-2
tests/compile/while.pyx
tests/compile/while.pyx
+5
-5
tests/errors/e_ass.pyx
tests/errors/e_ass.pyx
+1
-1
tests/errors/e_badtypeuse.pyx
tests/errors/e_badtypeuse.pyx
+1
-1
tests/errors/e_bufaccess.pyx
tests/errors/e_bufaccess.pyx
+1
-1
tests/errors/e_cenum.pyx
tests/errors/e_cenum.pyx
+1
-1
tests/errors/e_ctypedefornot.pyx
tests/errors/e_ctypedefornot.pyx
+1
-1
tests/errors/e_slice.pyx
tests/errors/e_slice.pyx
+2
-2
tests/errors/e_tempcast.pyx
tests/errors/e_tempcast.pyx
+1
-1
tests/errors/encoding.pyx
tests/errors/encoding.pyx
+1
-1
tests/errors/nogil.pyx
tests/errors/nogil.pyx
+1
-1
tests/run/__getattribute_subclasses__.pyx
tests/run/__getattribute_subclasses__.pyx
+5
-5
tests/run/autotestdict.pyx
tests/run/autotestdict.pyx
+1
-1
tests/run/autotestdict_all.pyx
tests/run/autotestdict_all.pyx
+1
-1
tests/run/autotestdict_cdef.pyx
tests/run/autotestdict_cdef.pyx
+1
-1
tests/run/bufaccess.pyx
tests/run/bufaccess.pyx
+40
-40
tests/run/buffmt.pyx
tests/run/buffmt.pyx
+15
-15
tests/run/call_crash.pyx
tests/run/call_crash.pyx
+3
-3
tests/run/callargs.pyx
tests/run/callargs.pyx
+2
-2
tests/run/cdefassign.pyx
tests/run/cdefassign.pyx
+1
-1
tests/run/cdefoptargs.pyx
tests/run/cdefoptargs.pyx
+1
-1
tests/run/closure_decorators_T478.pyx
tests/run/closure_decorators_T478.pyx
+4
-4
tests/run/complex_numbers_T305.pyx
tests/run/complex_numbers_T305.pyx
+1
-1
tests/run/cpp_classes.pyx
tests/run/cpp_classes.pyx
+4
-4
tests/run/cpp_exceptions.pyx
tests/run/cpp_exceptions.pyx
+1
-1
tests/run/cpp_namespaces_helper.h
tests/run/cpp_namespaces_helper.h
+10
-10
tests/run/cpp_nested_templates.pyx
tests/run/cpp_nested_templates.pyx
+3
-3
tests/run/cpp_operators.pyx
tests/run/cpp_operators.pyx
+2
-2
tests/run/cpp_operators_helper.h
tests/run/cpp_operators_helper.h
+3
-3
tests/run/cpp_stl.pyx
tests/run/cpp_stl.pyx
+1
-1
tests/run/cpp_templates.pyx
tests/run/cpp_templates.pyx
+1
-1
tests/run/ctruthtests.pyx
tests/run/ctruthtests.pyx
+1
-1
tests/run/cython_includes.pyx
tests/run/cython_includes.pyx
+1
-1
tests/run/dict_getitem.pyx
tests/run/dict_getitem.pyx
+1
-1
tests/run/exceptionrefcount.pyx
tests/run/exceptionrefcount.pyx
+1
-1
tests/run/extcmethod.pyx
tests/run/extcmethod.pyx
+1
-1
tests/run/extern_builtins_T258.pyx
tests/run/extern_builtins_T258.pyx
+1
-1
tests/run/extpropertyref.pyx
tests/run/extpropertyref.pyx
+1
-1
tests/run/exttype.pyx
tests/run/exttype.pyx
+2
-2
tests/run/for_decrement.pyx
tests/run/for_decrement.pyx
+2
-2
tests/run/function_as_method_T494.pyx
tests/run/function_as_method_T494.pyx
+1
-1
tests/run/function_binding_T494.pyx
tests/run/function_binding_T494.pyx
+1
-1
tests/run/hash_T326.pyx
tests/run/hash_T326.pyx
+1
-1
tests/run/if.pyx
tests/run/if.pyx
+1
-1
tests/run/ifelseexpr_T267.pyx
tests/run/ifelseexpr_T267.pyx
+1
-1
tests/run/importfrom.pyx
tests/run/importfrom.pyx
+1
-1
tests/run/index.pyx
tests/run/index.pyx
+1
-1
tests/run/inplace.pyx
tests/run/inplace.pyx
+4
-4
tests/run/int_literals.pyx
tests/run/int_literals.pyx
+2
-2
tests/run/knuth_man_or_boy_test.pyx
tests/run/knuth_man_or_boy_test.pyx
+1
-1
tests/run/large_consts_T237.pyx
tests/run/large_consts_T237.pyx
+1
-1
tests/run/list_pop.pyx
tests/run/list_pop.pyx
+8
-8
tests/run/literals.pyx
tests/run/literals.pyx
+2
-2
tests/run/modbody.pyx
tests/run/modbody.pyx
+1
-1
tests/run/moduletryexcept.pyx
tests/run/moduletryexcept.pyx
+2
-2
tests/run/numpy_common.pxi
tests/run/numpy_common.pxi
+1
-1
tests/run/numpy_test.pyx
tests/run/numpy_test.pyx
+14
-14
tests/run/pinard5.pyx
tests/run/pinard5.pyx
+1
-1
tests/run/pure.pyx
tests/run/pure.pyx
+2
-2
tests/run/pure_py.py
tests/run/pure_py.py
+2
-2
tests/run/r_extcomplex2.pyx
tests/run/r_extcomplex2.pyx
+3
-3
tests/run/r_forloop.pyx
tests/run/r_forloop.pyx
+1
-1
tests/run/r_huss3.pyx
tests/run/r_huss3.pyx
+1
-1
tests/run/r_pythonapi.pyx
tests/run/r_pythonapi.pyx
+1
-1
tests/run/r_spamtype.pyx
tests/run/r_spamtype.pyx
+4
-4
tests/run/shapes.h
tests/run/shapes.h
+4
-4
tests/run/simpcall.pyx
tests/run/simpcall.pyx
+2
-2
tests/run/slice3.pyx
tests/run/slice3.pyx
+1
-1
tests/run/slice_ptr.pyx
tests/run/slice_ptr.pyx
+1
-1
tests/run/special_methods_T561.pyx
tests/run/special_methods_T561.pyx
+5
-5
tests/run/special_methods_T561_py2.pyx
tests/run/special_methods_T561_py2.pyx
+1
-1
tests/run/strfunction.pyx
tests/run/strfunction.pyx
+1
-1
tests/run/strliterals.pyx
tests/run/strliterals.pyx
+1
-1
tests/run/struct_conversion.pyx
tests/run/struct_conversion.pyx
+3
-3
tests/run/subop.pyx
tests/run/subop.pyx
+1
-1
tests/run/temps_corner1.pyx
tests/run/temps_corner1.pyx
+1
-1
tests/run/type_inference.pyx
tests/run/type_inference.pyx
+3
-3
tests/run/typedfieldbug_T303.pyx
tests/run/typedfieldbug_T303.pyx
+1
-1
tests/run/typeof.pyx
tests/run/typeof.pyx
+1
-1
tests/run/unicodemethods.pyx
tests/run/unicodemethods.pyx
+18
-18
tests/run/unsignedbehaviour_T184.pyx
tests/run/unsignedbehaviour_T184.pyx
+1
-1
tests/run/withstat.pyx
tests/run/withstat.pyx
+4
-4
tests/wrappers/cpp_overload_wrapper_lib.cpp
tests/wrappers/cpp_overload_wrapper_lib.cpp
+1
-1
tests/wrappers/cpp_overload_wrapper_lib.h
tests/wrappers/cpp_overload_wrapper_lib.h
+2
-2
tests/wrappers/cpp_references.pyx
tests/wrappers/cpp_references.pyx
+1
-1
tests/wrappers/cppwrap_lib.h
tests/wrappers/cppwrap_lib.h
+2
-2
No files found.
COPYING.txt
View file @
f6762fad
Cython/Build/Dependencies.py
View file @
f6762fad
Cython/Build/Inline.py
View file @
f6762fad
Cython/Build/Tests/TestInline.py
View file @
f6762fad
Cython/CodeWriter.py
View file @
f6762fad
Cython/Compiler/AnalysedTreeTransforms.py
View file @
f6762fad
Cython/Compiler/Annotate.py
View file @
f6762fad
Cython/Compiler/AutoDocTransforms.py
View file @
f6762fad
Cython/Compiler/Buffer.py
View file @
f6762fad
Cython/Compiler/Builtin.py
View file @
f6762fad
Cython/Compiler/CmdLine.py
View file @
f6762fad
Cython/Compiler/Code.py
View file @
f6762fad
Cython/Compiler/ControlFlow.py
View file @
f6762fad
Cython/Compiler/CythonScope.py
View file @
f6762fad
Cython/Compiler/Errors.py
View file @
f6762fad
Cython/Compiler/ExprNodes.py
View file @
f6762fad
Cython/Compiler/Interpreter.py
View file @
f6762fad
Cython/Compiler/Lexicon.py
View file @
f6762fad
Cython/Compiler/Main.py
View file @
f6762fad
Cython/Compiler/ModuleNode.py
View file @
f6762fad
Cython/Compiler/Nodes.py
View file @
f6762fad
Cython/Compiler/Optimize.py
View file @
f6762fad
Cython/Compiler/Options.py
View file @
f6762fad
Cython/Compiler/ParseTreeTransforms.py
View file @
f6762fad
Cython/Compiler/Parsing.py
View file @
f6762fad
Cython/Compiler/PyrexTypes.py
View file @
f6762fad
Cython/Compiler/Scanning.py
View file @
f6762fad
Cython/Compiler/Symtab.py
View file @
f6762fad
Cython/Compiler/Tests/TestBuffer.py
View file @
f6762fad
Cython/Compiler/Tests/TestDecorators.py
View file @
f6762fad
Cython/Compiler/Tests/TestParseTreeTransforms.py
View file @
f6762fad
Cython/Compiler/Tests/TestTreeFragment.py
View file @
f6762fad
Cython/Compiler/TreeFragment.py
View file @
f6762fad
Cython/Compiler/TreePath.py
View file @
f6762fad
Cython/Compiler/TypeInference.py
View file @
f6762fad
Cython/Compiler/TypeSlots.py
View file @
f6762fad
Cython/Compiler/UtilNodes.py
View file @
f6762fad
Cython/Compiler/Visitor.py
View file @
f6762fad
Cython/Debugger/Cygdb.py
View file @
f6762fad
Cython/Debugger/DebugWriter.py
View file @
f6762fad
Cython/Debugger/Tests/TestLibCython.py
View file @
f6762fad
Cython/Debugger/Tests/cfuncs.c
View file @
f6762fad
Cython/Debugger/Tests/test_libcython_in_gdb.py
View file @
f6762fad
Cython/Debugger/Tests/test_libpython_in_gdb.py
View file @
f6762fad
Cython/Debugger/libcython.py
View file @
f6762fad
Cython/Debugger/libpython.py
View file @
f6762fad
Cython/Distutils/__init__.py
View file @
f6762fad
Cython/Distutils/build_ext.py
View file @
f6762fad
Cython/Includes/cpython/__init__.pxd
View file @
f6762fad
Cython/Includes/cpython/bool.pxd
View file @
f6762fad
Cython/Includes/cpython/buffer.pxd
View file @
f6762fad
Cython/Includes/cpython/bytes.pxd
View file @
f6762fad
Cython/Includes/cpython/complex.pxd
View file @
f6762fad
Cython/Includes/cpython/dict.pxd
View file @
f6762fad
Cython/Includes/cpython/exc.pxd
View file @
f6762fad
Cython/Includes/cpython/float.pxd
View file @
f6762fad
Cython/Includes/cpython/function.pxd
View file @
f6762fad
Cython/Includes/cpython/instance.pxd
View file @
f6762fad
Cython/Includes/cpython/int.pxd
View file @
f6762fad
Cython/Includes/cpython/iterator.pxd
View file @
f6762fad
Cython/Includes/cpython/list.pxd
View file @
f6762fad
Cython/Includes/cpython/long.pxd
View file @
f6762fad
Cython/Includes/cpython/mem.pxd
View file @
f6762fad
Cython/Includes/cpython/method.pxd
View file @
f6762fad
Cython/Includes/cpython/module.pxd
View file @
f6762fad
Cython/Includes/cpython/number.pxd
View file @
f6762fad
Cython/Includes/cpython/object.pxd
View file @
f6762fad
Cython/Includes/cpython/pycapsule.pxd
View file @
f6762fad
Cython/Includes/cpython/ref.pxd
View file @
f6762fad
Cython/Includes/cpython/sequence.pxd
View file @
f6762fad
Cython/Includes/cpython/set.pxd
View file @
f6762fad
Cython/Includes/cpython/string.pxd
View file @
f6762fad
Cython/Includes/cpython/tuple.pxd
View file @
f6762fad
Cython/Includes/cpython/type.pxd
View file @
f6762fad
Cython/Includes/cpython/unicode.pxd
View file @
f6762fad
Cython/Includes/libc/signal.pxd
View file @
f6762fad
Cython/Includes/libc/stdio.pxd
View file @
f6762fad
Cython/Includes/libc/stdlib.pxd
View file @
f6762fad
Cython/Includes/libc/string.pxd
View file @
f6762fad
Cython/Includes/numpy.pxd
View file @
f6762fad
Cython/Includes/posix/fcntl.pxd
View file @
f6762fad
Cython/Includes/posix/unistd.pxd
View file @
f6762fad
Cython/Plex/Actions.py
View file @
f6762fad
Cython/Plex/DFA.py
View file @
f6762fad
Cython/Plex/Errors.py
View file @
f6762fad
Cython/Plex/Lexicons.py
View file @
f6762fad
Cython/Plex/Machines.py
View file @
f6762fad
Cython/Plex/Regexps.py
View file @
f6762fad
Cython/Plex/Scanners.pxd
View file @
f6762fad
Cython/Plex/Scanners.py
View file @
f6762fad
Cython/Plex/Traditional.py
View file @
f6762fad
Cython/Plex/Transitions.py
View file @
f6762fad
Cython/Shadow.py
View file @
f6762fad
Cython/StringIOTree.py
View file @
f6762fad
Cython/TestUtils.py
View file @
f6762fad
Cython/Tests/TestCodeWriter.py
View file @
f6762fad
Cython/Tests/TestStringIOTree.py
View file @
f6762fad
Cython/Tests/xmlrunner.py
View file @
f6762fad
Cython/Utils.py
View file @
f6762fad
Cython/__init__.py
View file @
f6762fad
INSTALL.txt
View file @
f6762fad
ToDo.txt
View file @
f6762fad
USAGE.txt
View file @
f6762fad
tests/broken/b_extimpinherit.pyx
View file @
f6762fad
tests/broken/cdefemptysue.pyx
View file @
f6762fad
tests/broken/cdefexternblock.pyx
View file @
f6762fad
tests/broken/externsue.pyx
View file @
f6762fad
tests/broken/getattr.pyx
View file @
f6762fad
tests/broken/r_excval.pyx
View file @
f6762fad
tests/broken/r_extcmethod.pyx
View file @
f6762fad
tests/broken/r_extimpinherit.pyx
View file @
f6762fad
tests/broken/r_extinherit.pyx
View file @
f6762fad
tests/broken/r_extmember.pyx
View file @
f6762fad
tests/broken/r_extnumeric2.pyx
View file @
f6762fad
tests/broken/r_extproperty.pyx
View file @
f6762fad
tests/bugs.txt
View file @
f6762fad
tests/compile/a_capi.pyx
View file @
f6762fad
tests/compile/c_directives.pyx
View file @
f6762fad
tests/compile/cargdef.pyx
View file @
f6762fad
tests/compile/cassign.pyx
View file @
f6762fad
tests/compile/cast_ctypedef_array_T518.pyx
View file @
f6762fad
tests/compile/cenum.pyx
View file @
f6762fad
tests/compile/docstrings.pyx
View file @
f6762fad
tests/compile/extcmethcall.pyx
View file @
f6762fad
tests/compile/extcoerce.pyx
View file @
f6762fad
tests/compile/extdelattr.pyx
View file @
f6762fad
tests/compile/extdelitem.pyx
View file @
f6762fad
tests/compile/extdelslice.pyx
View file @
f6762fad
tests/compile/extgetattr.pyx
View file @
f6762fad
tests/compile/extinheritdel.pyx
View file @
f6762fad
tests/compile/extinheritset.pyx
View file @
f6762fad
tests/compile/extpropertyall.pyx
View file @
f6762fad
tests/compile/extsetattr.pyx
View file @
f6762fad
tests/compile/extsetitem.pyx
View file @
f6762fad
tests/compile/extsetslice.pyx
View file @
f6762fad
tests/compile/for.pyx
View file @
f6762fad
tests/compile/fromimport.pyx
View file @
f6762fad
tests/compile/gencall.pyx
View file @
f6762fad
tests/compile/huss2.pyx
View file @
f6762fad
tests/compile/ia_cdefblock.pyx
View file @
f6762fad
tests/compile/import.pyx
View file @
f6762fad
tests/compile/index.pyx
View file @
f6762fad
tests/compile/jiba3.pyx
View file @
f6762fad
tests/compile/libc_signal.pyx
View file @
f6762fad
tests/compile/point.h
View file @
f6762fad
tests/compile/pylong.pyx
View file @
f6762fad
tests/compile/tryexcept.pyx
View file @
f6762fad
tests/compile/tryfinally.pyx
View file @
f6762fad
tests/compile/types_and_names.pxd
View file @
f6762fad
tests/compile/types_and_names.pyx
View file @
f6762fad
tests/compile/while.pyx
View file @
f6762fad
tests/errors/e_ass.pyx
View file @
f6762fad
tests/errors/e_badtypeuse.pyx
View file @
f6762fad
tests/errors/e_bufaccess.pyx
View file @
f6762fad
tests/errors/e_cenum.pyx
View file @
f6762fad
tests/errors/e_ctypedefornot.pyx
View file @
f6762fad
tests/errors/e_slice.pyx
View file @
f6762fad
tests/errors/e_tempcast.pyx
View file @
f6762fad
tests/errors/encoding.pyx
View file @
f6762fad
tests/errors/nogil.pyx
View file @
f6762fad
tests/run/__getattribute_subclasses__.pyx
View file @
f6762fad
tests/run/autotestdict.pyx
View file @
f6762fad
tests/run/autotestdict_all.pyx
View file @
f6762fad
tests/run/autotestdict_cdef.pyx
View file @
f6762fad
tests/run/bufaccess.pyx
View file @
f6762fad
tests/run/buffmt.pyx
View file @
f6762fad
tests/run/call_crash.pyx
View file @
f6762fad
tests/run/callargs.pyx
View file @
f6762fad
tests/run/cdefassign.pyx
View file @
f6762fad
tests/run/cdefoptargs.pyx
View file @
f6762fad
tests/run/closure_decorators_T478.pyx
View file @
f6762fad
tests/run/complex_numbers_T305.pyx
View file @
f6762fad
tests/run/cpp_classes.pyx
View file @
f6762fad
tests/run/cpp_exceptions.pyx
View file @
f6762fad
tests/run/cpp_namespaces_helper.h
View file @
f6762fad
tests/run/cpp_nested_templates.pyx
View file @
f6762fad
tests/run/cpp_operators.pyx
View file @
f6762fad
tests/run/cpp_operators_helper.h
View file @
f6762fad
tests/run/cpp_stl.pyx
View file @
f6762fad
tests/run/cpp_templates.pyx
View file @
f6762fad
tests/run/ctruthtests.pyx
View file @
f6762fad
tests/run/cython_includes.pyx
View file @
f6762fad
tests/run/dict_getitem.pyx
View file @
f6762fad
tests/run/exceptionrefcount.pyx
View file @
f6762fad
tests/run/extcmethod.pyx
View file @
f6762fad
tests/run/extern_builtins_T258.pyx
View file @
f6762fad
tests/run/extpropertyref.pyx
View file @
f6762fad
tests/run/exttype.pyx
View file @
f6762fad
tests/run/for_decrement.pyx
View file @
f6762fad
tests/run/function_as_method_T494.pyx
View file @
f6762fad
tests/run/function_binding_T494.pyx
View file @
f6762fad
tests/run/hash_T326.pyx
View file @
f6762fad
tests/run/if.pyx
View file @
f6762fad
tests/run/ifelseexpr_T267.pyx
View file @
f6762fad
tests/run/importfrom.pyx
View file @
f6762fad
tests/run/index.pyx
View file @
f6762fad
tests/run/inplace.pyx
View file @
f6762fad
tests/run/int_literals.pyx
View file @
f6762fad
tests/run/knuth_man_or_boy_test.pyx
View file @
f6762fad
tests/run/large_consts_T237.pyx
View file @
f6762fad
tests/run/list_pop.pyx
View file @
f6762fad
tests/run/literals.pyx
View file @
f6762fad
tests/run/modbody.pyx
View file @
f6762fad
tests/run/moduletryexcept.pyx
View file @
f6762fad
tests/run/numpy_common.pxi
View file @
f6762fad
tests/run/numpy_test.pyx
View file @
f6762fad
tests/run/pinard5.pyx
View file @
f6762fad
tests/run/pure.pyx
View file @
f6762fad
tests/run/pure_py.py
View file @
f6762fad
tests/run/r_extcomplex2.pyx
View file @
f6762fad
tests/run/r_forloop.pyx
View file @
f6762fad
tests/run/r_huss3.pyx
View file @
f6762fad
tests/run/r_pythonapi.pyx
View file @
f6762fad
tests/run/r_spamtype.pyx
View file @
f6762fad
tests/run/shapes.h
View file @
f6762fad
tests/run/simpcall.pyx
View file @
f6762fad
tests/run/slice3.pyx
View file @
f6762fad
tests/run/slice_ptr.pyx
View file @
f6762fad
tests/run/special_methods_T561.pyx
View file @
f6762fad
tests/run/special_methods_T561_py2.pyx
View file @
f6762fad
tests/run/strfunction.pyx
View file @
f6762fad
tests/run/strliterals.pyx
View file @
f6762fad
tests/run/struct_conversion.pyx
View file @
f6762fad
tests/run/subop.pyx
View file @
f6762fad
tests/run/temps_corner1.pyx
View file @
f6762fad
tests/run/type_inference.pyx
View file @
f6762fad
tests/run/typedfieldbug_T303.pyx
View file @
f6762fad
tests/run/typeof.pyx
View file @
f6762fad
tests/run/unicodemethods.pyx
View file @
f6762fad
tests/run/unsignedbehaviour_T184.pyx
View file @
f6762fad
tests/run/withstat.pyx
View file @
f6762fad
tests/wrappers/cpp_overload_wrapper_lib.cpp
View file @
f6762fad
tests/wrappers/cpp_overload_wrapper_lib.h
View file @
f6762fad
tests/wrappers/cpp_references.pyx
View file @
f6762fad
tests/wrappers/cppwrap_lib.h
View file @
f6762fad
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment