diff options
author | Yurii Karabas <1998uriyyo@gmail.com> | 2020-12-04 15:20:53 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-12-04 15:20:53 (GMT) |
commit | f24b8101a01fa98b1e3ec042ba896aeb4c24d4bc (patch) | |
tree | 0609fe4244b29ddceb20c1d0dbb23fb2e43a377c /Misc/NEWS.d | |
parent | db68544122f5a0c7b80f69c0e643049efa6699c6 (diff) | |
download | cpython-f24b8101a01fa98b1e3ec042ba896aeb4c24d4bc.zip cpython-f24b8101a01fa98b1e3ec042ba896aeb4c24d4bc.tar.gz cpython-f24b8101a01fa98b1e3ec042ba896aeb4c24d4bc.tar.bz2 |
bpo-42562: Fix issue when dis failed to parse function that has no line numbers (GH-23632)
Fix issue when dis failed to parse function that has only annotations
Diffstat (limited to 'Misc/NEWS.d')
-rw-r--r-- | Misc/NEWS.d/next/Library/2020-12-03-22-42-03.bpo-42562.2hPmhi.rst | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2020-12-03-22-42-03.bpo-42562.2hPmhi.rst b/Misc/NEWS.d/next/Library/2020-12-03-22-42-03.bpo-42562.2hPmhi.rst new file mode 100644 index 0000000..4999da5 --- /dev/null +++ b/Misc/NEWS.d/next/Library/2020-12-03-22-42-03.bpo-42562.2hPmhi.rst @@ -0,0 +1,2 @@ +Fix issue when dis failed to parse function that has no line numbers. Patch +provided by Yurii Karabas. |