[Python-checkins] python/dist/src/Lib dis.py,1.46,1.46.10.1

theller at users.sourceforge.net theller at users.sourceforge.net
Fri Jun 4 12:13:09 EDT 2004


Update of /cvsroot/python/python/dist/src/Lib
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv17273

Modified Files:
      Tag: release23-maint
	dis.py 
Log Message:
Partial backport (only the bugfix) of sf #811294:
dis.disassemble_string() broken.


Index: dis.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/dis.py,v
retrieving revision 1.46
retrieving revision 1.46.10.1
diff -C2 -d -r1.46 -r1.46.10.1
*** dis.py	7 Mar 2003 17:30:45 -0000	1.46
--- dis.py	4 Jun 2004 16:13:06 -0000	1.46.10.1
***************
*** 138,143 ****
          c = code[i]
          op = ord(c)
-         if op == opmap['SET_LINENO'] and i > 0:
-             print # Extra blank line
          if i == lasti: print '-->',
          else: print '   ',
--- 138,141 ----




More information about the Python-checkins mailing list