summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_sys.py
diff options
context:
space:
mode:
authorVictor Stinner <victor.stinner@gmail.com>2013-12-13 01:01:38 (GMT)
committerVictor Stinner <victor.stinner@gmail.com>2013-12-13 01:01:38 (GMT)
commitfdeb6ec45ab898e2783e44495a756f56b42f4a80 (patch)
tree572112b73b25f09bea638391bd351375a7ceb9a0 /Lib/test/test_sys.py
parent62ca10051b5aa07b86807a50674dbef4cace22f7 (diff)
downloadcpython-fdeb6ec45ab898e2783e44495a756f56b42f4a80.zip
cpython-fdeb6ec45ab898e2783e44495a756f56b42f4a80.tar.gz
cpython-fdeb6ec45ab898e2783e44495a756f56b42f4a80.tar.bz2
Issue #14432: Remove the thread state field from the frame structure. Fix a
crash when a generator is created in a C thread that is destroyed while the generator is still used. The issue was that a generator contains a frame, and the frame kept a reference to the Python state of the destroyed C thread. The crash occurs when a trace function is setup.
Diffstat (limited to 'Lib/test/test_sys.py')
-rw-r--r--Lib/test/test_sys.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_sys.py b/Lib/test/test_sys.py
index 9b11f58..177b92e 100644
--- a/Lib/test/test_sys.py
+++ b/Lib/test/test_sys.py
@@ -818,7 +818,7 @@ class SizeofTest(unittest.TestCase):
nfrees = len(x.f_code.co_freevars)
extras = x.f_code.co_stacksize + x.f_code.co_nlocals +\
ncells + nfrees - 1
- check(x, vsize('13P3ic' + CO_MAXBLOCKS*'3i' + 'P' + extras*'P'))
+ check(x, vsize('12P3ic' + CO_MAXBLOCKS*'3i' + 'P' + extras*'P'))
# function
def func(): pass
check(func, size('12P'))