Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cython
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Merge Requests
0
Merge Requests
0
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Commits
Open sidebar
nexedi
cython
Commits
7386ad24
Commit
7386ad24
authored
Apr 07, 2011
by
Stefan Behnel
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
added tags to test files
parent
44c56e19
Changes
13
Hide whitespace changes
Inline
Side-by-side
Showing
13 changed files
with
26 additions
and
0 deletions
+26
-0
args_unpacking_in_closure_T658.pyx
tests/run/args_unpacking_in_closure_T658.pyx
+2
-0
closure_arg_type_error.pyx
tests/run/closure_arg_type_error.pyx
+2
-0
closure_class_T596.pyx
tests/run/closure_class_T596.pyx
+2
-0
closure_decorators_T478.pyx
tests/run/closure_decorators_T478.pyx
+2
-0
closure_inside_cdef_T554.pyx
tests/run/closure_inside_cdef_T554.pyx
+2
-0
closure_name_mangling_T537.pyx
tests/run/closure_name_mangling_T537.pyx
+2
-0
closure_self.pyx
tests/run/closure_self.pyx
+2
-0
closure_tests_1.pyx
tests/run/closure_tests_1.pyx
+2
-0
closure_tests_2.pyx
tests/run/closure_tests_2.pyx
+2
-0
closure_tests_3.pyx
tests/run/closure_tests_3.pyx
+2
-0
closure_tests_4.pyx
tests/run/closure_tests_4.pyx
+2
-0
closures_T82.pyx
tests/run/closures_T82.pyx
+2
-0
list_comp_in_closure_T598.pyx
tests/run/list_comp_in_closure_T598.pyx
+2
-0
No files found.
tests/run/args_unpacking_in_closure_T658.pyx
View file @
7386ad24
# mode: run
# tag: closures
# ticket: 658
def outer(int x, *args, **kwargs):
...
...
tests/run/closure_arg_type_error.pyx
View file @
7386ad24
# mode: run
# tag: closures
# The arguments in f() are put into the closure one after the other,
# so the reference of 'o' is filled in before the type errors are
...
...
tests/run/closure_class_T596.pyx
View file @
7386ad24
# mode: run
# tag: closures
# ticket: 596
def simple(a, b):
...
...
tests/run/closure_decorators_T478.pyx
View file @
7386ad24
# mode: run
# tag: closures
# ticket: 478
__doc__ = """
...
...
tests/run/closure_inside_cdef_T554.pyx
View file @
7386ad24
# mode: run
# tag: closures
# ticket: 554
def call_f(x):
...
...
tests/run/closure_name_mangling_T537.pyx
View file @
7386ad24
# mode: run
# tag: closures
# ticket: 537
__doc__ = u"""
...
...
tests/run/closure_self.pyx
View file @
7386ad24
# mode: run
# tag: closures
cdef class Test:
cdef int x
...
...
tests/run/closure_tests_1.pyx
View file @
7386ad24
# mode: run
# tag: closures
#
# closure_tests_1.pyx
#
...
...
tests/run/closure_tests_2.pyx
View file @
7386ad24
# mode: run
# tag: closures
#
# closure_tests_2.pyx
#
...
...
tests/run/closure_tests_3.pyx
View file @
7386ad24
# mode: run
# tag: closures
#
# closure_tests_3.pyx
#
...
...
tests/run/closure_tests_4.pyx
View file @
7386ad24
# mode: run
# tag: closures
#
# closure_tests_4.pyx
#
...
...
tests/run/closures_T82.pyx
View file @
7386ad24
# mode: run
# tag: closures
# ticket: 82
cimport cython
...
...
tests/run/list_comp_in_closure_T598.pyx
View file @
7386ad24
# mode: run
# tag: closures
# ticket: 598
# cython: language_level=3
...
...
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