We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f791e33 commit 036938eCopy full SHA for 036938e
1 file changed
doc/blocks.rst
@@ -32,21 +32,21 @@ Dump the blocks of the :ref:`conditional jump example <ex-cond-jump>`::
32
33
Output::
34
35
- label_block1:
+ block1:
36
LOAD_NAME 'print'
37
LOAD_NAME 'test'
38
- POP_JUMP_IF_FALSE <label_block3>
39
- -> label_block2
+ POP_JUMP_IF_FALSE <block3>
+ -> block2
40
41
- label_block2:
+ block2:
42
LOAD_CONST 'yes'
43
- JUMP_FORWARD <label_block4>
+ JUMP_FORWARD <block4>
44
45
- label_block3:
+ block3:
46
LOAD_CONST 'no'
47
- -> label_block4
+ -> block4
48
49
- label_block4:
+ block4:
50
CALL_FUNCTION 1
51
LOAD_CONST None
52
RETURN_VALUE
0 commit comments