]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Clarify why we define disco. Suggested by Andrew Dalke.
authorGuido van Rossum <guido@python.org>
Mon, 3 May 1999 18:09:53 +0000 (18:09 +0000)
committerGuido van Rossum <guido@python.org>
Mon, 3 May 1999 18:09:53 +0000 (18:09 +0000)
Lib/dis.py

index c997880a69549b973a41f3114fe476425b32b099..a03784cff9e8c71a66e4a000d12aae9805edcb4d 100644 (file)
@@ -83,7 +83,7 @@ def disassemble(co, lasti=-1):
                                print '(' + cmp_op[oparg] + ')',
                print
 
-disco = disassemble
+disco = disassemble                    # XXX For backwards compatibility
 
 def findlabels(code):
        """Detect all offsets in a byte code which are jump targets.