Commit 6bc2441e authored by Stefan Behnel's avatar Stefan Behnel

fix test tags

--HG--
extra : amend_source : f77abd8de587ce3644f0bb7c98bd61f78fabf755
parent 1dc8c799
# mode: run # mode: run
# tags: kwargs, argument unpacking # tag: kwargs, argument unpacking
# This test validates the error handling in the different specialised # This test validates the error handling in the different specialised
# code paths of the argument unpacking code. The have-kwargs and # code paths of the argument unpacking code. The have-kwargs and
......
# mode: run # mode: run
# ticket: 736 # ticket: 736
# tags: default arguments, closure # tag: default arguments, closure
def default_args_for_closure(a=1, b=2): def default_args_for_closure(a=1, b=2):
""" """
......
# mode: run # mode: run
# tags: lambda, attribute, regression # tag: lambda, attribute, regression
class TestClass(object): class TestClass(object):
bar = 123 bar = 123
......
# mode: run # mode: run
# tags: kwargs, call # tag: kwargs, call
# ticket: 717 # ticket: 717
def f(**kwargs): def f(**kwargs):
......
# mode: run # mode: run
# tags: eval # tag: eval
GLOBAL = 123 GLOBAL = 123
......
# mode: run # mode: run
# tags: exec # tag: exec
exec "GLOBAL = 1234" exec "GLOBAL = 1234"
......
# mode: run # mode: run
# tags: generator # tag: generator
import sys import sys
......
# mode: run # mode: run
# ticket: 715 # ticket: 715
# tags: genexpr, comprehension # tag: genexpr, comprehension
def t715(*items): def t715(*items):
""" """
......
# mode: run # mode: run
# ticket: 723 # ticket: 723
# tags: lambda # tag: lambda
def t723(a): def t723(a):
""" """
......
# mode: run # mode: run
# ticket: 766 # ticket: 766
# tags: letnode # tag: letnode
def test_letnode_range(int n): def test_letnode_range(int n):
""" """
......
# mode: run # mode: run
# ticket: 731 # ticket: 731
# tags: locals, vars, dir # tag: locals, vars, dir
cimport cython cimport cython
......
# mode: run # mode: run
# tags: py3k_super # tag: py3k_super
class A(object): class A(object):
def method(self): def method(self):
......
# mode: run # mode: run
# tags: import # tag: import
# reimports at module init time used to be a problem in Py3 # reimports at module init time used to be a problem in Py3
import reimport import reimport
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment