Skip to content

Commit

Permalink
re-enable test_sys
Browse files Browse the repository at this point in the history
  • Loading branch information
iritkatriel committed Oct 13, 2023
1 parent 3a9a029 commit a44f4db
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions Lib/test/test_sys.py
Original file line number Diff line number Diff line change
Expand Up @@ -1522,8 +1522,7 @@ class C(object): pass
def func():
return sys._getframe()
x = func()
# frame size will settle later
# check(x, size('3Pi3c7P2ic??2PP'))
check(x, size('3Pi3c7P2ic??2P'))
# function
def func(): pass
check(func, size('15Pi'))
Expand All @@ -1540,8 +1539,7 @@ def bar(cls):
check(bar, size('PP'))
# generator
def get_gen(): yield 1
# frame size will settle later
# check(get_gen(), size('PP4P4c7P2ic??2PP'))
check(get_gen(), size('PP4P4c7P2ic??2P'))
# iterator
check(iter('abc'), size('lP'))
# callable-iterator
Expand Down

0 comments on commit a44f4db

Please sign in to comment.