diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2017-04-19 17:36:31 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-04-19 17:36:31 (GMT) |
commit | d90045f319e2ea9772b9fbd62a05fdf34af96b6c (patch) | |
tree | c00114d2e77720639c3c7523056a2f7e1a854537 /Misc | |
parent | bf623ae8843dc30b28c574bec8d29fc14be59d86 (diff) | |
download | cpython-d90045f319e2ea9772b9fbd62a05fdf34af96b6c.zip cpython-d90045f319e2ea9772b9fbd62a05fdf34af96b6c.tar.gz cpython-d90045f319e2ea9772b9fbd62a05fdf34af96b6c.tar.bz2 |
bpo-22352: Adjust widths in the output of dis.dis() for large line numbers and (#1153)
instruction offsets.
Add tests for widths of opcode names.
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -313,6 +313,9 @@ Extension Modules Library ------- +- bpo-22352: Column widths in the output of dis.dis() are now adjusted for + large line numbers and instruction offsets. + - bpo-30061: Fixed crashes in IOBase methods __next__() and readlines() when readline() or __next__() respectively return non-sizeable object. Fixed possible other errors caused by not checking results of PyObject_Size(), |