diff options
author | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2022-03-08 18:53:24 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-03-08 18:53:24 (GMT) |
commit | 95b001fe6766f491f4356f8bcf23d6895bab2342 (patch) | |
tree | 5bd7f2fc39c13f0cd9245698f74655e46a9126e4 /Misc/NEWS.d/next | |
parent | ef54c4df8283349603406a9274580556e7cc4bef (diff) | |
download | cpython-95b001fe6766f491f4356f8bcf23d6895bab2342.zip cpython-95b001fe6766f491f4356f8bcf23d6895bab2342.tar.gz cpython-95b001fe6766f491f4356f8bcf23d6895bab2342.tar.bz2 |
bpo-23325: Fix SIG_IGN and SIG_DFL int comparison in signal module (GH-31759)
(cherry picked from commit c8a47e76a391c8818bf10a282cdcd3bb5c23ebf6)
Co-authored-by: Christian Heimes <christian@python.org>
Diffstat (limited to 'Misc/NEWS.d/next')
-rw-r--r-- | Misc/NEWS.d/next/Library/2022-03-08-11-34-06.bpo-23325.3VQnfo.rst | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2022-03-08-11-34-06.bpo-23325.3VQnfo.rst b/Misc/NEWS.d/next/Library/2022-03-08-11-34-06.bpo-23325.3VQnfo.rst new file mode 100644 index 0000000..0801cbb --- /dev/null +++ b/Misc/NEWS.d/next/Library/2022-03-08-11-34-06.bpo-23325.3VQnfo.rst @@ -0,0 +1,2 @@ +The :mod:`signal` module no longer assumes that :const:`~signal.SIG_IGN` and +:const:`~signal.SIG_DFL` are small int singletons. |