~ubuntu-branches/ubuntu/karmic/python3.0/karmic

« back to all changes in this revision

Viewing changes to Lib/dis.py

  • Committer: Bazaar Package Importer
  • Author(s): Matthias Klose
  • Date: 2009-02-16 17:18:23 UTC
  • mfrom: (1.1.4 upstream)
  • Revision ID: james.westby@ubuntu.com-20090216171823-1d5cm5qnnjvmnzzm
Tags: 3.0.1-0ubuntu1
New upstream version.

Show diffs side-by-side

added added

removed removed

Lines of Context:
6
6
from opcode import *
7
7
from opcode import __all__ as _opcodes_all
8
8
 
9
 
__all__ = ["dis","disassemble","distb","disco"] + _opcodes_all
 
9
__all__ = ["dis", "disassemble", "distb", "disco",
 
10
           "findlinestarts", "findlabels"] + _opcodes_all
10
11
del _opcodes_all
11
12
 
12
13
def dis(x=None):