diff options
Diffstat (limited to 'Doc/whatsnew/3.4.rst')
-rw-r--r-- | Doc/whatsnew/3.4.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/whatsnew/3.4.rst b/Doc/whatsnew/3.4.rst index 339b586..6edc1b1 100644 --- a/Doc/whatsnew/3.4.rst +++ b/Doc/whatsnew/3.4.rst @@ -746,7 +746,7 @@ optional *current_offset*), and the resulting object can be iterated to produce method, equivalent to calling :mod:`~dis.dis` on the constructor argument, but returned as a multi-line string:: - >>> bytecode = dis.Bytecode(lambda x: x +1, current_offset=3) + >>> bytecode = dis.Bytecode(lambda x: x + 1, current_offset=3) >>> for instr in bytecode: ... print('{} ({})'.format(instr.opname, instr.opcode)) LOAD_FAST (124) |