index
:
cpython.git
2.7
3.3
3.4
3.5
3.6
benjamin-clang
benjamin-iteration-torture
buildbot-custom
master
https://github.com/python/cpython.git
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
path:
root
/
Doc
/
library
/
dis.rst
Commit message (
Expand
)
Author
Age
Files
Lines
*
Issue #16554: fix description for MAKE_CLOSURE. Initial patch by Daniel Urban.
Antoine Pitrou
2015-08-13
1
-2/+2
|
\
|
*
Issue #16554: fix description for MAKE_CLOSURE. Initial patch by Daniel Urban.
Antoine Pitrou
2015-08-13
1
-2/+2
*
|
Issue #24439: Improve PEP 492 related docs.
Yury Selivanov
2015-06-24
1
-3/+5
*
|
Issue #24400: Introduce a distinct type for 'async def' coroutines.
Yury Selivanov
2015-06-22
1
-0/+8
*
|
remove STORE_MAP, since it's unused
Benjamin Peterson
2015-05-28
1
-4/+0
*
|
PEP 0492 -- Coroutines with async and await syntax. Issue #24017.
Yury Selivanov
2015-05-12
1
-2/+40
*
|
Add versionadded directives for the matmul operator.
Berker Peksag
2015-03-12
1
-0/+4
*
|
merge 3.4 (#23561)
Benjamin Peterson
2015-03-02
1
-100/+100
|
\
\
|
|
/
|
*
wrap everything at 80 chars
Benjamin Peterson
2015-03-02
1
-98/+97
|
*
link to the correct dis method or function (closes #23561)
Benjamin Peterson
2015-03-02
1
-3/+3
*
|
Issue #20521: Change ``TOS`` to TOS in dis documentation.
Berker Peksag
2015-03-02
1
-4/+4
|
\
\
|
|
/
|
*
Issue #20521: Change ``TOS`` to TOS in dis documentation.
Berker Peksag
2015-03-02
1
-4/+4
*
|
Issue #22845: Improved formatting of dis documentation.
Serhiy Storchaka
2014-11-11
1
-23/+24
|
\
\
|
|
/
|
*
Issue #22845: Improved formatting of dis documentation.
Serhiy Storchaka
2014-11-11
1
-23/+24
*
|
Issue #21947: handle generator-iterator objects in dis
Nick Coghlan
2014-07-25
1
-8/+8
*
|
PEP 465: a dedicated infix operator for matrix multiplication (closes #21176)
Benjamin Peterson
2014-04-10
1
-0/+10
|
/
*
whatsnew: expand 'dis' entry.
R David Murray
2014-01-07
1
-0/+2
*
Issue #19795: Improved markup of True/False constants.
Serhiy Storchaka
2013-11-29
1
-1/+1
|
\
*
|
Issue #19722: Added opcode.stack_effect(), which accurately
Larry Hastings
2013-11-23
1
-0/+7
*
|
Close #17916: dis.Bytecode based replacement for distb
Nick Coghlan
2013-11-22
1
-1/+11
*
|
Fix typo in updated dis docs
Nick Coghlan
2013-11-06
1
-1/+1
*
|
Close #19378: address flaws in the new dis module APIs
Nick Coghlan
2013-11-06
1
-18/+23
*
|
merge with 3.3
Georg Brandl
2013-10-12
1
-4/+11
|
\
\
|
|
/
|
*
Closes #13026: fix documentation of MAKE_FUNCTION for 3.x.
Georg Brandl
2013-10-12
1
-4/+11
*
|
#18796: improve documentation of the file argument of dis.show_code. Initial...
Ezio Melotti
2013-08-23
1
-1/+2
*
|
rather than passing locals to the class body, just execute the class body in ...
Benjamin Peterson
2013-05-16
1
-6/+0
*
|
Issue #11816: multiple improvements to the dis module
Nick Coghlan
2013-05-06
1
-35/+184
*
|
check local class namespace before reaching for cells (closes #17853)
Benjamin Peterson
2013-04-30
1
-0/+7
|
/
*
Issue #16538: correctly describe MAKE_CLOSURE in docs.
Andrew Svetlov
2012-11-23
1
-3/+4
*
merge 3.2
Benjamin Peterson
2012-10-12
1
-4/+4
|
\
|
*
Fix links to the __next__ method.
Ezio Melotti
2012-10-12
1
-4/+4
*
|
Issue #14349: Fix the doc of the MAKE_FUNCTION opcode in Doc/library/dis.rst to
Eli Bendersky
2012-03-24
1
-3/+4
*
|
Implement PEP 380 - 'yield from' (closes #11682)
Nick Coghlan
2012-01-13
1
-0/+7
*
|
excise the remains of STOP_CODE, which hasn't done anything useful for years
Benjamin Peterson
2011-07-18
1
-5/+0
|
/
*
Separate source link from main text.
Raymond Hettinger
2011-01-10
1
-0/+2
*
Move source links to consistent location and remove wordy, big yellow boxes.
Raymond Hettinger
2011-01-10
1
-5/+2
*
SET_LINENO was removed in 2.3
Antoine Pitrou
2010-12-12
1
-5/+0
*
Provide links to Python source where the code is short, readable and
Éric Araujo
2010-11-16
1
-0/+4
*
Fix documentation of dis.opmap direction.
Georg Brandl
2010-10-17
1
-1/+1
*
#4617: Previously it was illegal to delete a name from the local
Amaury Forgeot d'Arc
2010-09-10
1
-0/+6
*
As per python-dev discussion with Eli, properly document and publish dis.show...
Nick Coghlan
2010-09-10
1
-1/+11
*
Issue #9225: Remove the ROT_FOUR and DUP_TOPX opcode, the latter replaced
Antoine Pitrou
2010-09-04
1
-11/+5
*
Consistency check for versionadded/changed directives.
Georg Brandl
2010-08-17
1
-14/+14
*
Issue 9147: Add dis.code_info()
Nick Coghlan
2010-08-17
1
-0/+12
*
Remove the need for a "()" empty argument list after opcodes.
Georg Brandl
2010-07-03
1
-62/+70
*
Wrap and use the correct directive.
Georg Brandl
2010-07-03
1
-1/+7
*
Issue 6507: accept source strings directly in dis.dis(). Original patch by Da...
Nick Coghlan
2010-07-03
1
-4/+7
*
Some people have mistaken Python bytecode as being stable and unchanging. In
Brett Cannon
2010-07-02
1
-3/+4
*
remove description of LOAD_LOCALS #8874
Benjamin Peterson
2010-06-02
1
-7/+0
*
#7432: remove unnecessary from __future__ import division
Ezio Melotti
2010-01-05
1
-4/+2
[next]