summaryrefslogtreecommitdiffstats
path: root/Doc/library/dis.rst
Commit message (Collapse)AuthorAgeFilesLines
* Backport source links from 3.x.Éric Araujo2011-08-191-6/+3
| | | | | Existing links have been updated to use the new reST role. In some files, I have also made cosmetic changes to the header.
* Merged revisions ↵Georg Brandl2010-11-261-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 85617-85622,85624,85626-85627,85629,85631,85635-85636,85638-85639,85641-85642 via svnmerge from svn+ssh://pythondev@svn.python.org/python/branches/py3k ........ r85617 | georg.brandl | 2010-10-17 12:09:06 +0200 (So, 17 Okt 2010) | 1 line #5212: md5 weaknesses do not affect hmac, so remove the note about that. ........ r85618 | georg.brandl | 2010-10-17 12:14:38 +0200 (So, 17 Okt 2010) | 1 line #9086: correct wrong terminology about linking with pythonXY.dll. ........ r85619 | georg.brandl | 2010-10-17 12:15:50 +0200 (So, 17 Okt 2010) | 1 line Make file names consistent. ........ r85620 | georg.brandl | 2010-10-17 12:22:28 +0200 (So, 17 Okt 2010) | 1 line Remove second parser module example; it referred to non-readily-available example files, and this kind of discovery is much better done with the AST nowadays anyway. ........ r85621 | georg.brandl | 2010-10-17 12:24:54 +0200 (So, 17 Okt 2010) | 1 line #9105: move pickle warning to a bit more prominent location. ........ r85622 | georg.brandl | 2010-10-17 12:28:04 +0200 (So, 17 Okt 2010) | 1 line #9112: document error() and exit() methods of ArgumentParser. ........ r85624 | georg.brandl | 2010-10-17 12:34:28 +0200 (So, 17 Okt 2010) | 1 line Some markup and style fixes in argparse docs. ........ r85626 | georg.brandl | 2010-10-17 12:38:20 +0200 (So, 17 Okt 2010) | 1 line #9117: fix syntax for class definition. ........ r85627 | georg.brandl | 2010-10-17 12:44:11 +0200 (So, 17 Okt 2010) | 1 line #9138: reword introduction to classes in Python. ........ r85629 | georg.brandl | 2010-10-17 12:51:45 +0200 (So, 17 Okt 2010) | 1 line #5962: clarify sys.exit() vs. threads. ........ r85631 | georg.brandl | 2010-10-17 12:53:54 +0200 (So, 17 Okt 2010) | 1 line Fix capitalization. ........ r85635 | georg.brandl | 2010-10-17 13:03:22 +0200 (So, 17 Okt 2010) | 1 line #5121: fix claims about default values leading to segfaults. ........ r85636 | georg.brandl | 2010-10-17 13:06:14 +0200 (So, 17 Okt 2010) | 1 line #9237: document sys.call_tracing(). ........ r85638 | georg.brandl | 2010-10-17 13:13:37 +0200 (So, 17 Okt 2010) | 1 line Port changes to pickle docs apparently lost in py3k. ........ r85639 | georg.brandl | 2010-10-17 13:23:56 +0200 (So, 17 Okt 2010) | 1 line Make twisted example a bit more logical. ........ r85641 | georg.brandl | 2010-10-17 13:29:07 +0200 (So, 17 Okt 2010) | 1 line Fix documentation of dis.opmap direction. ........ r85642 | georg.brandl | 2010-10-17 13:36:28 +0200 (So, 17 Okt 2010) | 1 line #9730: fix example. ........
* Add more links to Python sources where the code is short, readable and an ↵Raymond Hettinger2010-11-061-0/+5
| | | | informative adjunct to the docs.
* Backport r82456.Brett Cannon2010-07-211-5/+11
|
* #6577: fix (hopefully) all links to builtin instead of module/class-specific ↵Georg Brandl2009-07-261-1/+1
| | | | objects.
* add a SETUP_WITH opcodeBenjamin Peterson2009-05-251-0/+12
| | | | | It speeds up the with statement and correctly looks up the special methods involved.
* Backport r69961 to trunk, replacing JUMP_IF_{TRUE,FALSE} withJeffrey Yasskin2009-02-281-6/+16
| | | | | | POP_JUMP_IF_{TRUE,FALSE} and JUMP_IF_{TRUE,FALSE}_OR_POP. This avoids executing a POP_TOP on each conditional and sometimes allows the peephole optimizer to skip a JUMP_ABSOLUTE entirely. It speeds up list comprehensions significantly.
* Remove trailing whitespace.Georg Brandl2009-01-031-3/+3
|
* #4222: document dis.findlabels() and dis.findlinestarts() andGeorg Brandl2009-01-011-2/+15
| | | | put them into dis.__all__.
* Issue #2183: Simplify and optimize bytecode for list comprehensions.Antoine Pitrou2008-12-171-2/+4
|
* clarify CALL_FUNCTION #4141Benjamin Peterson2008-10-171-1/+2
|
* #2631: clarify IMPORT_NAME semantics.Georg Brandl2008-04-191-3/+5
|
* Speed up with statements by storing the __exit__ method on the stack instead ↵Nick Coghlan2008-03-071-12/+15
| | | | of in a temp variable (bumps the magic number for pyc files)
* #2161: Fix opcode name.Georg Brandl2008-02-231-1/+1
|
* Update the opcode docs for STORE_MAP and BUILD_MAPRaymond Hettinger2008-01-111-3/+7
|
* Some cleanup in the docs.Georg Brandl2007-12-291-23/+1
|
* Add :term:s for iterator.Georg Brandl2007-10-211-4/+4
|
* Add :term: for generators.Georg Brandl2007-10-211-1/+1
|
* Unify "byte code" to "bytecode". Also sprinkle :term: markup for it.Georg Brandl2007-10-211-23/+23
|
* Fix code being interpreted as a target.Georg Brandl2007-10-201-3/+5
|
* Bug #1768121: fix wrong/missing opcode docs.Georg Brandl2007-08-231-5/+23
|
* Move the 2.6 reST doc tree in place.Georg Brandl2007-08-151-0/+812