summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>2023-11-01 19:58:02 (GMT)
committerGitHub <noreply@github.com>2023-11-01 19:58:02 (GMT)
commita94bdc245963a0c0a41f201a6a1311549d964945 (patch)
tree2e4c6d9a7f38c247a3f4b1d5cd04d815525f06a9 /Misc
parentf1087855e24a01a3c358c520fd3f2fcbc04d1786 (diff)
downloadcpython-a94bdc245963a0c0a41f201a6a1311549d964945.zip
cpython-a94bdc245963a0c0a41f201a6a1311549d964945.tar.gz
cpython-a94bdc245963a0c0a41f201a6a1311549d964945.tar.bz2
[3.12] gh-111295: Fix error checking in time extension module init (GH-111296) (#111300)
gh-111295: Fix error checking in time extension module init (GH-111296) Introduce ADD_INT macro wrapper for PyModule_AddIntConstant() (cherry picked from commit 81b03e78101c97c1d3fe5f90908bbf94e83d7df1) Co-authored-by: Nikita Sobolev <mail@sobolevn.me>
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS.d/next/Library/2023-10-25-08-42-05.gh-issue-111295.H2K4lf.rst1
1 files changed, 1 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2023-10-25-08-42-05.gh-issue-111295.H2K4lf.rst b/Misc/NEWS.d/next/Library/2023-10-25-08-42-05.gh-issue-111295.H2K4lf.rst
new file mode 100644
index 0000000..28b85ec
--- /dev/null
+++ b/Misc/NEWS.d/next/Library/2023-10-25-08-42-05.gh-issue-111295.H2K4lf.rst
@@ -0,0 +1 @@
+Fix :mod:`time` not checking for errors when initializing.