@@ -38,14 +38,14 @@ The :mod:`dis` module defines the following functions and constants:
3838
3939.. function :: dis(x=None)
4040
41- Disassemble the *x * object. *x * can denote either a module, a
42- class, a method, a function, a code object, a string of source code or a
43- byte sequence of raw bytecode. For a module, it disassembles all
44- functions. For a class, it disassembles all methods. For a code object
45- or sequence of raw bytecode, it prints one line per bytecode instruction.
46- Strings are first compiled to code objects with the :func: `compile `
47- built-in function before being disassembled. If no object is provided,
48- this function disassembles the last traceback.
41+ Disassemble the *x * object. *x * can denote either a module, a class, a
42+ method, a function, a code object, a string of source code or a byte sequence
43+ of raw bytecode. For a module, it disassembles all functions. For a class,
44+ it disassembles all methods. For a code object or sequence of raw bytecode,
45+ it prints one line per bytecode instruction. Strings are first compiled to
46+ code objects with the :func: `compile ` built-in function before being
47+ disassembled. If no object is provided, this function disassembles the last
48+ traceback.
4949
5050
5151.. function :: distb(tb=None)
0 commit comments