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
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Gwenaël Samain
cython
Commits
6bc2441e
Commit
6bc2441e
authored
Jan 03, 2014
by
Stefan Behnel
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix test tags
--HG-- extra : amend_source : f77abd8de587ce3644f0bb7c98bd61f78fabf755
parent
1dc8c799
Changes
13
Show whitespace changes
Inline
Side-by-side
Showing
13 changed files
with
13 additions
and
13 deletions
+13
-13
tests/run/argerrors.py
tests/run/argerrors.py
+1
-1
tests/run/argument_unpacking_closure_T736.py
tests/run/argument_unpacking_closure_T736.py
+1
-1
tests/run/attribute_and_lambda.pyx
tests/run/attribute_and_lambda.pyx
+1
-1
tests/run/duplicate_keyword_in_call.py
tests/run/duplicate_keyword_in_call.py
+1
-1
tests/run/eval.pyx
tests/run/eval.pyx
+1
-1
tests/run/exec_noargs.pyx
tests/run/exec_noargs.pyx
+1
-1
tests/run/generator_frame_cycle.py
tests/run/generator_frame_cycle.py
+1
-1
tests/run/genexpr_T715.pyx
tests/run/genexpr_T715.pyx
+1
-1
tests/run/lambda_T723.pyx
tests/run/lambda_T723.pyx
+1
-1
tests/run/letnode_T766.pyx
tests/run/letnode_T766.pyx
+1
-1
tests/run/locals_T732.pyx
tests/run/locals_T732.pyx
+1
-1
tests/run/py3k_super.pyx
tests/run/py3k_super.pyx
+1
-1
tests/run/reimport.pyx
tests/run/reimport.pyx
+1
-1
No files found.
tests/run/argerrors.py
View file @
6bc2441e
# mode: run
# tag
s
: kwargs, argument unpacking
# tag: kwargs, argument unpacking
# This test validates the error handling in the different specialised
# code paths of the argument unpacking code. The have-kwargs and
...
...
tests/run/argument_unpacking_closure_T736.py
View file @
6bc2441e
# mode: run
# ticket: 736
# tag
s
: default arguments, closure
# tag: default arguments, closure
def
default_args_for_closure
(
a
=
1
,
b
=
2
):
"""
...
...
tests/run/attribute_and_lambda.pyx
View file @
6bc2441e
# mode: run
# tag
s
: lambda, attribute, regression
# tag: lambda, attribute, regression
class
TestClass
(
object
):
bar
=
123
...
...
tests/run/duplicate_keyword_in_call.py
View file @
6bc2441e
# mode: run
# tag
s
: kwargs, call
# tag: kwargs, call
# ticket: 717
def
f
(
**
kwargs
):
...
...
tests/run/eval.pyx
View file @
6bc2441e
# mode: run
# tag
s
: eval
# tag: eval
GLOBAL
=
123
...
...
tests/run/exec_noargs.pyx
View file @
6bc2441e
# mode: run
# tag
s
: exec
# tag: exec
exec
"GLOBAL = 1234"
...
...
tests/run/generator_frame_cycle.py
View file @
6bc2441e
# mode: run
# tag
s
: generator
# tag: generator
import
sys
...
...
tests/run/genexpr_T715.pyx
View file @
6bc2441e
# mode: run
# ticket: 715
# tag
s
: genexpr, comprehension
# tag: genexpr, comprehension
def
t715
(
*
items
):
"""
...
...
tests/run/lambda_T723.pyx
View file @
6bc2441e
# mode: run
# ticket: 723
# tag
s
: lambda
# tag: lambda
def
t723
(
a
):
"""
...
...
tests/run/letnode_T766.pyx
View file @
6bc2441e
# mode: run
# ticket: 766
# tag
s
: letnode
# tag: letnode
def
test_letnode_range
(
int
n
):
"""
...
...
tests/run/locals_T732.pyx
View file @
6bc2441e
# mode: run
# ticket: 731
# tag
s
: locals, vars, dir
# tag: locals, vars, dir
cimport
cython
...
...
tests/run/py3k_super.pyx
View file @
6bc2441e
# mode: run
# tag
s
: py3k_super
# tag: py3k_super
class
A
(
object
):
def
method
(
self
):
...
...
tests/run/reimport.pyx
View file @
6bc2441e
# mode: run
# tag
s
: import
# tag: import
# reimports at module init time used to be a problem in Py3
import
reimport
...
...
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