Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cpython
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
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
cpython
Commits
9e3d27b5
Commit
9e3d27b5
authored
Aug 05, 2013
by
Antoine Pitrou
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Followup to 862ab99ab570: I forgot to add the magnificent test_frame.py.
parent
58720d61
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
113 additions
and
0 deletions
+113
-0
Lib/test/test_frame.py
Lib/test/test_frame.py
+113
-0
No files found.
Lib/test/test_frame.py
0 → 100644
View file @
9e3d27b5
import
gc
import
sys
import
unittest
import
weakref
from
test
import
support
class
ClearTest
(
unittest
.
TestCase
):
"""
Tests for frame.clear().
"""
def
inner
(
self
,
x
=
5
,
**
kwargs
):
1
/
0
def
outer
(
self
,
**
kwargs
):
try
:
self
.
inner
(
**
kwargs
)
except
ZeroDivisionError
as
e
:
exc
=
e
return
exc
def
clear_traceback_frames
(
self
,
tb
):
"""
Clear all frames in a traceback.
"""
while
tb
is
not
None
:
tb
.
tb_frame
.
clear
()
tb
=
tb
.
tb_next
def
test_clear_locals
(
self
):
class
C
:
pass
c
=
C
()
wr
=
weakref
.
ref
(
c
)
exc
=
self
.
outer
(
c
=
c
)
del
c
support
.
gc_collect
()
# A reference to c is held through the frames
self
.
assertIsNot
(
None
,
wr
())
self
.
clear_traceback_frames
(
exc
.
__traceback__
)
support
.
gc_collect
()
# The reference was released by .clear()
self
.
assertIs
(
None
,
wr
())
def
test_clear_generator
(
self
):
endly
=
False
def
g
():
nonlocal
endly
try
:
yield
inner
()
finally
:
endly
=
True
gen
=
g
()
next
(
gen
)
self
.
assertFalse
(
endly
)
# Clearing the frame closes the generator
gen
.
gi_frame
.
clear
()
self
.
assertTrue
(
endly
)
def
test_clear_executing
(
self
):
# Attempting to clear an executing frame is forbidden.
try
:
1
/
0
except
ZeroDivisionError
as
e
:
f
=
e
.
__traceback__
.
tb_frame
with
self
.
assertRaises
(
RuntimeError
):
f
.
clear
()
with
self
.
assertRaises
(
RuntimeError
):
f
.
f_back
.
clear
()
def
test_clear_executing_generator
(
self
):
# Attempting to clear an executing generator frame is forbidden.
endly
=
False
def
g
():
nonlocal
endly
try
:
1
/
0
except
ZeroDivisionError
as
e
:
f
=
e
.
__traceback__
.
tb_frame
with
self
.
assertRaises
(
RuntimeError
):
f
.
clear
()
with
self
.
assertRaises
(
RuntimeError
):
f
.
f_back
.
clear
()
yield
f
finally
:
endly
=
True
gen
=
g
()
f
=
next
(
gen
)
self
.
assertFalse
(
endly
)
@
support
.
cpython_only
def
test_clear_refcycles
(
self
):
# .clear() doesn't leave any refcycle behin
with
support
.
disable_gc
():
class
C
:
pass
c
=
C
()
wr
=
weakref
.
ref
(
c
)
exc
=
self
.
outer
(
c
=
c
)
del
c
self
.
assertIsNot
(
None
,
wr
())
self
.
clear_traceback_frames
(
exc
.
__traceback__
)
self
.
assertIs
(
None
,
wr
())
def
test_main
():
support
.
run_unittest
(
__name__
)
if
__name__
==
"__main__"
:
test_main
()
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