summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_dis.py
diff options
context:
space:
mode:
Diffstat (limited to 'Lib/test/test_dis.py')
-rw-r--r--Lib/test/test_dis.py38
1 files changed, 21 insertions, 17 deletions
diff --git a/Lib/test/test_dis.py b/Lib/test/test_dis.py
index 590f041..ba8c6b9 100644
--- a/Lib/test/test_dis.py
+++ b/Lib/test/test_dis.py
@@ -226,23 +226,27 @@ dis_annot_stmt_str = """\
2 LOAD_CONST 0 (1)
4 STORE_NAME 0 (x)
6 LOAD_NAME 1 (int)
- 8 STORE_ANNOTATION 0 (x)
-
- 3 10 LOAD_NAME 2 (fun)
- 12 LOAD_CONST 0 (1)
- 14 CALL_FUNCTION 1
- 16 STORE_ANNOTATION 3 (y)
-
- 4 18 LOAD_CONST 0 (1)
- 20 LOAD_NAME 4 (lst)
- 22 LOAD_NAME 2 (fun)
- 24 LOAD_CONST 1 (0)
- 26 CALL_FUNCTION 1
- 28 STORE_SUBSCR
- 30 LOAD_NAME 1 (int)
- 32 POP_TOP
- 34 LOAD_CONST 2 (None)
- 36 RETURN_VALUE
+ 8 LOAD_NAME 2 (__annotations__)
+ 10 LOAD_CONST 1 ('x')
+ 12 STORE_SUBSCR
+
+ 3 14 LOAD_NAME 3 (fun)
+ 16 LOAD_CONST 0 (1)
+ 18 CALL_FUNCTION 1
+ 20 LOAD_NAME 2 (__annotations__)
+ 22 LOAD_CONST 2 ('y')
+ 24 STORE_SUBSCR
+
+ 4 26 LOAD_CONST 0 (1)
+ 28 LOAD_NAME 4 (lst)
+ 30 LOAD_NAME 3 (fun)
+ 32 LOAD_CONST 3 (0)
+ 34 CALL_FUNCTION 1
+ 36 STORE_SUBSCR
+ 38 LOAD_NAME 1 (int)
+ 40 POP_TOP
+ 42 LOAD_CONST 4 (None)
+ 44 RETURN_VALUE
"""
compound_stmt_str = """\