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
3a89c5a0
Commit
3a89c5a0
authored
May 27, 2011
by
Vitja Makarov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
add some more runtime tests for closures, nested functions and classes
parent
9bdf09cd
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
58 additions
and
0 deletions
+58
-0
tests/run/uninitialized.pyx
tests/run/uninitialized.pyx
+58
-0
No files found.
tests/run/uninitialized.pyx
View file @
3a89c5a0
...
...
@@ -72,3 +72,61 @@ def deleted(cond):
if
cond
:
del
a
return
a
def
test_nested
(
cond
):
"""
>>> test_nested(True)
<built-in function a>
>>> test_nested(False)
Traceback (most recent call last):
...
UnboundLocalError: a
"""
if
cond
:
def
a
():
pass
return
a
def
test_outer
(
cond
):
"""
>>> test_outer(True)
{}
>>> test_outer(False)
Traceback (most recent call last):
...
UnboundLocalError: a
"""
if
cond
:
a
=
{}
def
inner
():
return
a
return
a
def
test_inner
(
cond
):
"""
>>> test_inner(True)
{}
>>> test_inner(False)
Traceback (most recent call last):
...
UnboundLocalError: a
"""
if
cond
:
a
=
{}
def
inner
():
return
a
return
inner
()
def
test_class
(
cond
):
"""
>>> test_class(True) #doctest: +ELLIPSIS
<class uninitialized.A at 0x...>
>>> test_class(False)
Traceback (most recent call last):
...
UnboundLocalError: A
"""
if
cond
:
class
A
:
pass
return
A
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