Commit 7386ad24 authored by Stefan Behnel's avatar Stefan Behnel

added tags to test files

parent 44c56e19
# mode: run
# tag: closures
# ticket: 658 # ticket: 658
def outer(int x, *args, **kwargs): def outer(int x, *args, **kwargs):
......
# mode: run
# tag: closures
# The arguments in f() are put into the closure one after the other, # 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 # so the reference of 'o' is filled in before the type errors are
......
# mode: run
# tag: closures
# ticket: 596 # ticket: 596
def simple(a, b): def simple(a, b):
......
# mode: run
# tag: closures
# ticket: 478 # ticket: 478
__doc__ = """ __doc__ = """
......
# mode: run
# tag: closures
# ticket: 554 # ticket: 554
def call_f(x): def call_f(x):
......
# mode: run
# tag: closures
# ticket: 537 # ticket: 537
__doc__ = u""" __doc__ = u"""
......
# mode: run
# tag: closures
cdef class Test: cdef class Test:
cdef int x cdef int x
......
# mode: run
# tag: closures
# #
# closure_tests_1.pyx # closure_tests_1.pyx
# #
......
# mode: run
# tag: closures
# #
# closure_tests_2.pyx # closure_tests_2.pyx
# #
......
# mode: run
# tag: closures
# #
# closure_tests_3.pyx # closure_tests_3.pyx
# #
......
# mode: run
# tag: closures
# #
# closure_tests_4.pyx # closure_tests_4.pyx
# #
......
# mode: run
# tag: closures
# ticket: 82 # ticket: 82
cimport cython cimport cython
......
# mode: run
# tag: closures
# ticket: 598 # ticket: 598
# cython: language_level=3 # cython: language_level=3
......
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