diff options
author | Nikita Sobolev <mail@sobolevn.me> | 2023-10-25 07:18:21 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-10-25 07:18:21 (GMT) |
commit | 2838c550f729f3fccedb3d65c6695cb0b78045ab (patch) | |
tree | 769a2d3b3edde68c169d7b024182ae0bfc50c3b2 /Misc | |
parent | 3052c098ca2779c2d9ab9800dabe66d0efa01794 (diff) | |
download | cpython-2838c550f729f3fccedb3d65c6695cb0b78045ab.zip cpython-2838c550f729f3fccedb3d65c6695cb0b78045ab.tar.gz cpython-2838c550f729f3fccedb3d65c6695cb0b78045ab.tar.bz2 |
gh-111233: Fix error checking in select extension module init (#111234)
Introduce ADD_INT macro wrapper for PyModule_AddIntConstant()
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS.d/next/Library/2023-10-23-23-14-54.gh-issue-111233.sCdCC0.rst | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2023-10-23-23-14-54.gh-issue-111233.sCdCC0.rst b/Misc/NEWS.d/next/Library/2023-10-23-23-14-54.gh-issue-111233.sCdCC0.rst new file mode 100644 index 0000000..86d622a --- /dev/null +++ b/Misc/NEWS.d/next/Library/2023-10-23-23-14-54.gh-issue-111233.sCdCC0.rst @@ -0,0 +1 @@ +Fix :mod:`select` not checking for errors when initializing. |