mirror of
https://github.com/python/cpython.git
synced 2025-10-09 16:34:44 +00:00
New == syntax
This commit is contained in:
parent
4d8e859e8f
commit
bdfcfccbe5
73 changed files with 419 additions and 391 deletions
|
@ -22,8 +22,8 @@ def disassemble(co, lasti):
|
|||
while i < n:
|
||||
c = code[i]
|
||||
op = ord(c)
|
||||
if op = SET_LINENO and i > 0: print # Extra blank line
|
||||
if i = lasti: print '-->',
|
||||
if op == SET_LINENO and i > 0: print # Extra blank line
|
||||
if i == lasti: print '-->',
|
||||
else: print ' ',
|
||||
if i in labels: print '>>',
|
||||
else: print ' ',
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue