diff options
author | Bénédikt Tran <10796600+picnixz@users.noreply.github.com> | 2024-11-03 15:08:34 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-11-03 15:08:34 (GMT) |
commit | 19d935843727fff93b2c0e09a63fd32c0d97098d (patch) | |
tree | c088a7714ed6a7083e7b36cde452fac59b9ceab5 /Misc/NEWS.d | |
parent | dcae5cd6abaae4f73e656ebc054f30d3f15ca7b8 (diff) | |
download | cpython-19d935843727fff93b2c0e09a63fd32c0d97098d.zip cpython-19d935843727fff93b2c0e09a63fd32c0d97098d.tar.gz cpython-19d935843727fff93b2c0e09a63fd32c0d97098d.tar.bz2 |
gh-126313: Fix a crash in curses.napms() due to incorrect error handling (GH-126351)
Diffstat (limited to 'Misc/NEWS.d')
-rw-r--r-- | Misc/NEWS.d/next/Library/2024-11-03-09-42-42.gh-issue-126313.EFP6Dl.rst | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2024-11-03-09-42-42.gh-issue-126313.EFP6Dl.rst b/Misc/NEWS.d/next/Library/2024-11-03-09-42-42.gh-issue-126313.EFP6Dl.rst new file mode 100644 index 0000000..dad348d --- /dev/null +++ b/Misc/NEWS.d/next/Library/2024-11-03-09-42-42.gh-issue-126313.EFP6Dl.rst @@ -0,0 +1,2 @@ +Fix an issue in :func:`curses.napms` when :func:`curses.initscr` has not yet +been called. Patch by Bénédikt Tran. |