diff options
author | Nick Coghlan <ncoghlan@gmail.com> | 2013-11-22 14:57:00 (GMT) |
---|---|---|
committer | Nick Coghlan <ncoghlan@gmail.com> | 2013-11-22 14:57:00 (GMT) |
commit | 50c48b89e3e3399a729f72983bc47996b5c50545 (patch) | |
tree | 3017accfaf672975f776227661a1e412b210eb13 /Misc | |
parent | 8fbdb097cfc6a838a6a447e4a6c7ad497c392ad6 (diff) | |
download | cpython-50c48b89e3e3399a729f72983bc47996b5c50545.zip cpython-50c48b89e3e3399a729f72983bc47996b5c50545.tar.gz cpython-50c48b89e3e3399a729f72983bc47996b5c50545.tar.bz2 |
Close #17916: dis.Bytecode based replacement for distb
- Bytecode.from_traceback() alternate constructor
- current_offset parameter and attribute
Patch by Claudiu Popa
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -65,6 +65,10 @@ Core and Builtins Library ------- +- Issue #17916: Added dis.Bytecode.from_traceback() and + dis.Bytecode.current_offset to easily display "current instruction" + markers in the new disassembly API (Patch by Claudiu Popa). + - Issue #19552: venv now supports bootstrapping pip into virtual environments - Issue #17134: Finalize interface to Windows' certificate store. Cert and |