Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Document the BUILD_SET opcode. | Zachary Ware | 2015-11-12 | 1 | -0/+7 |
| | | | | Reported by Hrvoje Abraham on docs@. | ||||
* | wrap everything at 80 chars | Benjamin Peterson | 2015-03-02 | 1 | -76/+78 |
| | |||||
* | Issue #22845: Improved formatting of dis documentation. | Serhiy Storchaka | 2014-11-11 | 1 | -5/+5 |
| | |||||
* | Backport source links from 3.x. | Éric Araujo | 2011-08-19 | 1 | -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 Brandl | 2010-11-26 | 1 | -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 Hettinger | 2010-11-06 | 1 | -0/+5 |
| | | | | informative adjunct to the docs. | ||||
* | Backport r82456. | Brett Cannon | 2010-07-21 | 1 | -5/+11 |
| | |||||
* | #6577: fix (hopefully) all links to builtin instead of module/class-specific ↵ | Georg Brandl | 2009-07-26 | 1 | -1/+1 |
| | | | | objects. | ||||
* | add a SETUP_WITH opcode | Benjamin Peterson | 2009-05-25 | 1 | -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} with | Jeffrey Yasskin | 2009-02-28 | 1 | -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 Brandl | 2009-01-03 | 1 | -3/+3 |
| | |||||
* | #4222: document dis.findlabels() and dis.findlinestarts() and | Georg Brandl | 2009-01-01 | 1 | -2/+15 |
| | | | | put them into dis.__all__. | ||||
* | Issue #2183: Simplify and optimize bytecode for list comprehensions. | Antoine Pitrou | 2008-12-17 | 1 | -2/+4 |
| | |||||
* | clarify CALL_FUNCTION #4141 | Benjamin Peterson | 2008-10-17 | 1 | -1/+2 |
| | |||||
* | #2631: clarify IMPORT_NAME semantics. | Georg Brandl | 2008-04-19 | 1 | -3/+5 |
| | |||||
* | Speed up with statements by storing the __exit__ method on the stack instead ↵ | Nick Coghlan | 2008-03-07 | 1 | -12/+15 |
| | | | | of in a temp variable (bumps the magic number for pyc files) | ||||
* | #2161: Fix opcode name. | Georg Brandl | 2008-02-23 | 1 | -1/+1 |
| | |||||
* | Update the opcode docs for STORE_MAP and BUILD_MAP | Raymond Hettinger | 2008-01-11 | 1 | -3/+7 |
| | |||||
* | Some cleanup in the docs. | Georg Brandl | 2007-12-29 | 1 | -23/+1 |
| | |||||
* | Add :term:s for iterator. | Georg Brandl | 2007-10-21 | 1 | -4/+4 |
| | |||||
* | Add :term: for generators. | Georg Brandl | 2007-10-21 | 1 | -1/+1 |
| | |||||
* | Unify "byte code" to "bytecode". Also sprinkle :term: markup for it. | Georg Brandl | 2007-10-21 | 1 | -23/+23 |
| | |||||
* | Fix code being interpreted as a target. | Georg Brandl | 2007-10-20 | 1 | -3/+5 |
| | |||||
* | Bug #1768121: fix wrong/missing opcode docs. | Georg Brandl | 2007-08-23 | 1 | -5/+23 |
| | |||||
* | Move the 2.6 reST doc tree in place. | Georg Brandl | 2007-08-15 | 1 | -0/+812 |