summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorNikita Sobolev <mail@sobolevn.me>2023-10-25 07:19:40 (GMT)
committerGitHub <noreply@github.com>2023-10-25 07:19:40 (GMT)
commit81b03e78101c97c1d3fe5f90908bbf94e83d7df1 (patch)
tree379b8d6df768e5b8c859195908270cb0e01ab8a7 /Misc
parent2838c550f729f3fccedb3d65c6695cb0b78045ab (diff)
downloadcpython-81b03e78101c97c1d3fe5f90908bbf94e83d7df1.zip
cpython-81b03e78101c97c1d3fe5f90908bbf94e83d7df1.tar.gz
cpython-81b03e78101c97c1d3fe5f90908bbf94e83d7df1.tar.bz2
gh-111295: Fix error checking in time extension module init (#111296)
Introduce ADD_INT macro wrapper for PyModule_AddIntConstant()
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.