From: Guido van Rossum Date: Mon, 3 May 1999 18:09:53 +0000 (+0000) Subject: Clarify why we define disco. Suggested by Andrew Dalke. X-Git-Tag: v1.6a1~1384 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=1cc2b9de35a2af2fdfe0bc707b51aae0e64b8160;p=thirdparty%2FPython%2Fcpython.git Clarify why we define disco. Suggested by Andrew Dalke. --- diff --git a/Lib/dis.py b/Lib/dis.py index c997880a6954..a03784cff9e8 100644 --- a/Lib/dis.py +++ b/Lib/dis.py @@ -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.