diff options
author | Brandt Bucher <brandtbucher@microsoft.com> | 2022-06-17 17:26:20 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-06-17 17:26:20 (GMT) |
commit | 05d83a706c320792246cb4a06a1153c26475a578 (patch) | |
tree | 501919fb37ccd508c31747f8b28464d830fd0228 /Misc | |
parent | 1353b8a4bcef22d985a0b6a186c96439fd540ea8 (diff) | |
download | cpython-05d83a706c320792246cb4a06a1153c26475a578.zip cpython-05d83a706c320792246cb4a06a1153c26475a578.tar.gz cpython-05d83a706c320792246cb4a06a1153c26475a578.tar.bz2 |
GH-91389: Fix dis position information for CACHEs (GH-93663) (GH-93921)
(cherry picked from commit f8e576be0a7cd38f753f31cf4178db81a602fc32)
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS.d/next/Library/2022-06-09-17-15-26.gh-issue-91389.OE4vS5.rst | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2022-06-09-17-15-26.gh-issue-91389.OE4vS5.rst b/Misc/NEWS.d/next/Library/2022-06-09-17-15-26.gh-issue-91389.OE4vS5.rst new file mode 100644 index 0000000..0a12655 --- /dev/null +++ b/Misc/NEWS.d/next/Library/2022-06-09-17-15-26.gh-issue-91389.OE4vS5.rst @@ -0,0 +1,2 @@ +Fix an issue where :mod:`dis` utilities could report missing or incorrect +position information in the presence of ``CACHE`` entries. |