We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8d55075 commit e32d749Copy full SHA for e32d749
Lib/test/test_dis.py
@@ -2354,8 +2354,7 @@ def test_show_cache(self):
2354
CACHE 0 (func_version: 0)
2355
CACHE 0
2356
POP_TOP
2357
- LOAD_CONST 0 (None)
2358
- RETURN_VALUE
+ RETURN_CONST 0 (None)
2359
'''
2360
for flag in ['-C', '--show-caches']:
2361
self.check_output(source, expect, flag)
@@ -2366,8 +2365,7 @@ def test_show_offsets(self):
2366
2365
expect = '''
2367
0 0 RESUME 0
2368
2369
- 1 2 LOAD_CONST 0 (None)
2370
- 4 RETURN_VALUE
+ 1 2 RETURN_CONST 0 (None)
2371
2372
for flag in ['-O', '--show-offsets']:
2373
0 commit comments