index
:
delta/cpython.git
2.0
2.1
2.2
2.3
2.4
2.5
2.6
2.7
3.0
3.1
3.2
3.3
3.4
3.5
3.6
baserock/2.7.9-mips64
baserock/markdoffman/py2-symlink
baserock/markdoffman/py2-symlink-v2
baserock/morph-2.7
legacy-trunk
master
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
Lib
/
test
/
test_dis.py
Commit message (
Expand
)
Author
Age
Files
Lines
*
Remove unused imports.
Serhiy Storchaka
2016-12-16
1
-1
/
+0
*
Issue #28317: The disassembler now decodes FORMAT_VALUE argument.
Serhiy Storchaka
2016-10-08
1
-0
/
+24
*
Rework CALL_FUNCTION* opcodes
Victor Stinner
2016-09-09
1
-18
/
+18
*
Issue #28003: Implement PEP 525 -- Asynchronous Generators.
Yury Selivanov
2016-09-08
1
-1
/
+1
*
Issue #27985: Implement PEP 526 -- Syntax for Variable Annotations.
Yury Selivanov
2016-09-08
1
-0
/
+33
*
Issue #27095: Simplified MAKE_FUNCTION and removed MAKE_CLOSURE opcodes.
Serhiy Storchaka
2016-06-12
1
-41
/
+39
*
Issue #26647: Python interpreter now uses 16-bit wordcode instead of bytecode.
Serhiy Storchaka
2016-05-24
1
-262
/
+262
*
Issue #26733: Disassembling a class now disassembles class and static methods.
Serhiy Storchaka
2016-04-23
1
-2
/
+50
*
Issue #26733: Fixed formatting line numbers in test_dis.
Serhiy Storchaka
2016-04-12
1
-11
/
+11
*
PEP 0492 -- Coroutines with async and await syntax. Issue #24017.
Yury Selivanov
2015-05-11
1
-13
/
+33
*
Issue #21741: Update 147 test modules to use test discovery.
Zachary Ware
2015-04-13
1
-1
/
+1
*
merge 3.4 (#23048)
Benjamin Peterson
2014-12-13
1
-3
/
+4
|
\
|
*
pop the loop block even for infinite while loops (closes #23048)
Benjamin Peterson
2014-12-13
1
-3
/
+4
*
|
Closes #11471: avoid generating a JUMP_FORWARD instruction at the end of an i...
Antoine Pitrou
2014-09-18
1
-88
/
+84
*
|
Issue #21947: handle generator-iterator objects in dis
Nick Coghlan
2014-07-25
1
-0
/
+8
|
/
*
Issue #19938: Re-enabled test_bug_1333982 in test_dis, which had been
Zachary Ware
2013-12-26
1
-56
/
+433
|
\
|
*
Issue 19572: More silently skipped tests explicitly skipped.
Zachary Ware
2013-12-08
1
-49
/
+426
|
|
\
|
|
*
Close #17916: dis.Bytecode based replacement for distb
Nick Coghlan
2013-11-23
1
-0
/
+66
|
|
*
Remove incorrect comment from dis tests
Nick Coghlan
2013-11-06
1
-1
/
+0
|
|
*
Close #19378: address flaws in the new dis module APIs
Nick Coghlan
2013-11-06
1
-44
/
+83
|
|
*
merge 3.3 (#19117)
Benjamin Peterson
2013-09-29
1
-4
/
+0
|
|
|
\
|
|
*
|
Issue #11816: multiple improvements to the dis module
Nick Coghlan
2013-05-06
1
-33
/
+306
*
|
|
|
Issue #19938: Re-enabled test_bug_1333982 in test_dis, which had been
Zachary Ware
2013-12-26
1
-33
/
+30
|
/
/
/
*
|
|
Normalize whitespace
Zachary Ware
2013-12-08
1
-1
/
+1
*
|
|
Issue 19572: More silently skipped tests explicitly skipped.
Zachary Ware
2013-12-08
1
-6
/
+8
|
|
/
|
/
|
*
|
fix duplicate test names in test_dis (closes #19117)
Benjamin Peterson
2013-09-29
1
-4
/
+0
|
/
*
Issue #11823: disassembly now shows argument counts on calls with keyword args
Alexander Belopolsky
2012-06-07
1
-3
/
+3
*
Merge 3.2: Issue #13703 plus some related test suite fixes.
Georg Brandl
2012-02-21
1
-9
/
+98
|
\
|
*
PEP 3155 / issue #13448: Qualified name for classes and functions.
Antoine Pitrou
2011-11-25
1
-0
/
+1
|
*
excise the remains of STOP_CODE, which hasn't done anything useful for years
Benjamin Peterson
2011-07-17
1
-1
/
+1
|
*
PyErr_Print can leave sys.last_traceback hanging around; kill it
Benjamin Peterson
2011-03-15
1
-10
/
+8
|
*
should use 'is' here
Benjamin Peterson
2011-03-15
1
-1
/
+1
|
*
improve dis test coverage (closes #11559)
Benjamin Peterson
2011-03-15
1
-8
/
+98
*
|
Another test_dis dict order dependency.
Georg Brandl
2012-02-20
1
-6
/
+6
*
|
Fix test_dis dependency on dict order.
Georg Brandl
2012-02-20
1
-6
/
+7
|
/
*
#10273: Rename assertRegexpMatches and assertRaisesRegexp to assertRegex and ...
Ezio Melotti
2010-12-01
1
-2
/
+2
*
#9964: Fix failure of test_dis under -OO.
Georg Brandl
2010-10-14
1
-13
/
+13
*
Another attempt at pacifying the windows buildbots by ignoring all the variab...
Nick Coghlan
2010-08-17
1
-10
/
+9
*
Ignore the exact ID value for the nested function in the dis.code_info tests
Nick Coghlan
2010-08-17
1
-4
/
+3
*
Issue 9147: Add dis.code_info()
Nick Coghlan
2010-08-17
1
-2
/
+156
*
Issue 6507: accept source strings directly in dis.dis(). Original patch by Da...
Nick Coghlan
2010-07-03
1
-0
/
+45
*
use assert[Not]In where appropriate
Ezio Melotti
2010-01-23
1
-2
/
+2
*
Merged revisions 67818 via svnmerge from
Antoine Pitrou
2008-12-18
1
-20
/
+16
*
#2621 rename test.test_support to test.support
Benjamin Peterson
2008-05-20
1
-1
/
+1
*
Merged revisions 60990-61002 via svnmerge from
Christian Heimes
2008-02-23
1
-1
/
+1
*
SF patch# 1770008 by Christian Heimes (plus some extras).
Guido van Rossum
2007-08-09
1
-2
/
+2
*
Merged revisions 55631-55794 via svnmerge from
Guido van Rossum
2007-06-06
1
-1
/
+17
*
Merged revisions 55007-55179 via svnmerge from
Guido van Rossum
2007-05-07
1
-2
/
+2
*
Merged revisions 53952-54987 via svnmerge from
Guido van Rossum
2007-04-27
1
-4
/
+4
*
Hide list comp variables and support set comprehensions
Nick Coghlan
2007-04-15
1
-2
/
+6
[next]