summaryrefslogtreecommitdiffstats
path: root/Lib/test/test__opcode.py
Commit message (Collapse)AuthorAgeFilesLines
* gh-90997: bpo-46841: Disassembly of quickened code (GH-32099)penguin_wwy2022-04-191-2/+2
|
* bpo-46528: Simplify the VM's stack manipulations (GH-30902)Brandt Bucher2022-01-261-1/+0
|
* bpo-46072: Add top level stats struct (GH-30169)Mark Shannon2021-12-171-3/+3
|
* Update test__opcode and _Py_GetSpecializationStats with recent ↵Irit Katriel2021-08-111-2/+4
| | | | specialization stat changes (GH-27728)
* Classify specialization failures. Provides more useful stats, with lower ↵Mark Shannon2021-08-101-3/+2
| | | | overhead. (GH-27701)
* bpo-44725 : expose specialization stats in python (GH-27192)Irit Katriel2021-07-291-0/+27
|
* bpo-40275: Use new test.support helper submodules in tests (GH-21449)Hai Shi2020-08-031-1/+1
|
* bpo-32455: Add jump parameter to dis.stack_effect(). (GH-6610)Serhiy Storchaka2018-09-181-14/+47
| | | | Add C API function PyCompile_OpcodeStackEffectWithJump().
* bpo-33334: Support NOP and EXTENDED_ARG in dis.stack_effect(). (#6566)Serhiy Storchaka2018-04-251-0/+15
| | | Added tests to ensure that all defined opcodes are supported.
* Issue #21741: Update 147 test modules to use test discovery.Zachary Ware2015-04-131-5/+2
| | | | | | | I have compared output between pre- and post-patch runs of these tests to make sure there's nothing missing and nothing broken, on both Windows and Linux. The only differences I found were actually tests that were previously *not* run.
* Don't attempt to run the _opcode test if it wasn't built.Larry Hastings2013-11-241-2/+3
|
* Issue #19722: Added opcode.stack_effect(), which accuratelyLarry Hastings2013-11-231-0/+22
computes the stack effect of bytecode instructions.