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
*
bpo-42246: Make sure that `f_lasti`, and thus `f_lineno`, is set correctly af...
Mark Shannon
2020-12-17
1
-1/+2
*
Fix dis markup (GH-23524)
Andre Delfino
2020-11-28
1
-6/+6
*
bpo-42202: Store func annotations as a tuple (GH-23316)
Yurii Karabas
2020-11-25
1
-1/+3
*
Fix `List_Append` description, list is extracted at TOS1[-i] (GH-21465)
Xiang Zhang
2020-07-28
1
-1/+1
*
Improved documentation for `BUILD_CONST_KEY_MAP` (GH-19454)
laike9m
2020-04-13
1
-3/+3
*
bpo-40122: Updated documentation for dis.findlabels() (GH-19274)
laike9m
2020-04-03
1
-1/+1
*
Updated documentation for FOR_ITER (GH-19113)
laike9m
2020-03-24
1
-1/+1
*
bpo-39677: dis: rename the operand of MAKE_FUNCTION from `argc` to `flags` fo...
Taine Zhao
2020-03-14
1
-1/+1
*
bpo-39320: Handle unpacking of **values in compiler (GH-18141)
Mark Shannon
2020-01-27
1
-14/+7
*
bpo-39320: Handle unpacking of *values in compiler (GH-17984)
Mark Shannon
2020-01-23
1
-28/+9
*
improve the documentation of the LOAD_METHOD and CALL_METHOD (GH-18079)
Carl Friedrich Bolz-Tereick
2020-01-21
1
-8/+10
*
bpo-39156: Break up COMPARE_OP into four logically distinct opcodes. (GH-17754)
Mark Shannon
2020-01-14
1
-0/+21
*
Correct release version to 3.9 for RERAISE and WITH_EXCEPT_START bytecodes. (...
Mark Shannon
2019-11-21
1
-2/+2
*
Produce cleaner bytecode for 'with' and 'async with' by generating separate c...
Mark Shannon
2019-11-21
1
-76/+9
*
bpo-34880: Add the LOAD_ASSERTION_ERROR opcode. (GH-15073)
Zackery Spytz
2019-08-25
1
-0/+8
*
bpo-37540: vectorcall: keyword names must be strings (GH-14682)
Jeroen Demeyer
2019-08-16
1
-2/+4
*
bpo-35224: Reverse evaluation order of key: value in dict comprehensions (GH-...
Jörn Heissler
2019-06-22
1
-1/+3
*
bpo-32625: Updated documentation for EXTENDED_ARG. (GH-13985)
Yao Zuo
2019-06-12
1
-4/+4
*
Fix typos in docs and docstrings (GH-13745)
Xtreak
2019-06-02
1
-1/+1
*
bpo-19184: Update the documentation of dis module. (GH-13652)
Michele Angrisano
2019-06-02
1
-3/+7
*
bpo-34906: Doc: Fix typos (GH-9712)
Stéphane Wirtel
2018-10-05
1
-1/+1
*
bpo-32455: Add jump parameter to dis.stack_effect(). (GH-6610)
Serhiy Storchaka
2018-09-18
1
-1/+10
*
bpo-33216: Improve the documentation for CALL_FUNCTION_* (GH-8338) (GH-8784)
Serhiy Storchaka
2018-09-17
1
-26/+34
*
bpo-33041: Rework compiling an "async for" loop. (#6142)
Serhiy Storchaka
2018-03-23
1
-0/+11
*
bpo-32489: Allow 'continue' in 'finally' clause. (GH-5822)
Serhiy Storchaka
2018-03-18
1
-2/+2
*
bpo-17611. Move unwinding of stack for "pseudo exceptions" from interpreter t...
Serhiy Storchaka
2018-02-22
1
-43/+77
*
bpo-32565: Add missed versionadded directives for all new opcodes. (#5199)
Serhiy Storchaka
2018-02-01
1
-0/+31
*
bpo-32550. Remove the STORE_ANNOTATION bytecode. (GH-5181)
Mark Shannon
2018-01-30
1
-7/+0
*
[Doc] Update opcode for var-positional arguments (#4446)
Moses Koledoye
2017-11-18
1
-1/+1
*
bpo-31709: Update importlib magic (#3906)
Yury Selivanov
2017-10-06
1
-2/+5
*
bpo-31183: `dis` now handles coroutines & async generators (GH-3077)
syncosmic
2017-08-18
1
-9/+21
*
bpo-11822: Improve disassembly to show embedded code objects. (#1844)
Serhiy Storchaka
2017-06-11
1
-2/+11
*
bpo-28810: Document remaining bytecode changes in 3.6 (GH-651)
Ivan Levkivskyi
2017-03-24
1
-2/+16
*
bpo-28810: Document changes to CALL_FUNCTION opcodes (GH-250)
Ivan Levkivskyi
2017-03-10
1
-31/+40
*
bpo-28810: Document BUILD_TUPLE_UNPACK_WITH_CALL bytecode added in 3.6 (GH-239)
Ivan Levkivskyi
2017-03-10
1
-4/+15
*
bpo-26213: Document _UNPACK bytecodes and BUILD_MAP changes (#238)
Ivan Levkivskyi
2017-03-03
1
-2/+53
*
Issue #26110: Add document for LOAD_METHOD and CALL_METHOD opcode.
INADA Naoki
2017-01-16
1
-0/+22
*
Issue #19795: Mark up None as literal text.
Serhiy Storchaka
2016-10-19
1
-5/+5
|
\
|
*
Issue #19795: Mark up None as literal text.
Serhiy Storchaka
2016-10-19
1
-5/+5
*
|
Issue #28394: More typo fixes for 3.6+
Martin Panter
2016-10-10
1
-1/+1
*
|
Add missing versionadded directives
Berker Peksag
2016-09-12
1
-0/+4
*
|
Issue #27985: Implement PEP 526 -- Syntax for Variable Annotations.
Yury Selivanov
2016-09-09
1
-0/+11
*
|
Issue #27078: Added BUILD_STRING opcode. Optimized f-strings evaluation.
Serhiy Storchaka
2016-09-06
1
-0/+8
*
|
Issue #27095: Simplified MAKE_FUNCTION and removed MAKE_CLOSURE opcodes.
Serhiy Storchaka
2016-06-12
1
-17/+6
*
|
Issue #27140: Added BUILD_CONST_KEY_MAP opcode.
Serhiy Storchaka
2016-06-11
1
-0/+9
*
|
Issue #26647: Python interpreter now uses 16-bit wordcode instead of bytecode.
Serhiy Storchaka
2016-05-24
1
-5/+4
*
|
Issue #26733: Disassembling a class now disassembles class and static methods.
Serhiy Storchaka
2016-04-23
1
-5/+5
|
\
\
|
|
/
|
*
Issue #26733: Disassembling a class now disassembles class and static methods.
Serhiy Storchaka
2016-04-23
1
-5/+5
*
|
Merge typo fixes from 3.5
Martin Panter
2016-04-05
1
-1/+1
|
\
\
|
|
/
|
*
Fix typos in documentation and comments
Martin Panter
2016-04-05
1
-1/+1
[next]