diff options
author | Saul Shanabrook <s.shanabrook@gmail.com> | 2022-02-18 09:56:23 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-02-18 09:56:23 (GMT) |
commit | c3ce7781e3afe6f2dec5eef8e87fd5a664519ae9 (patch) | |
tree | 71debab0cde3a897b78dc05cec13beeca7ae82b4 /Misc/NEWS.d/next/Library/2022-02-11-20-41-17.bpo-46724.eU52_N.rst | |
parent | 2923d87ca258b9d421e8147b12f0d98295ee3f8e (diff) | |
download | cpython-c3ce7781e3afe6f2dec5eef8e87fd5a664519ae9.zip cpython-c3ce7781e3afe6f2dec5eef8e87fd5a664519ae9.tar.gz cpython-c3ce7781e3afe6f2dec5eef8e87fd5a664519ae9.tar.bz2 |
bpo-46724: Fix dis support for overflow args (GH-31285)
Diffstat (limited to 'Misc/NEWS.d/next/Library/2022-02-11-20-41-17.bpo-46724.eU52_N.rst')
-rw-r--r-- | Misc/NEWS.d/next/Library/2022-02-11-20-41-17.bpo-46724.eU52_N.rst | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2022-02-11-20-41-17.bpo-46724.eU52_N.rst b/Misc/NEWS.d/next/Library/2022-02-11-20-41-17.bpo-46724.eU52_N.rst new file mode 100644 index 0000000..9ac8c17 --- /dev/null +++ b/Misc/NEWS.d/next/Library/2022-02-11-20-41-17.bpo-46724.eU52_N.rst @@ -0,0 +1 @@ +Fix :mod:`dis` behavior on negative jump offsets. |