diff --git a/Misc/NEWS.d/next/Library/2023-11-14-16-31-59.gh-issue-111995.OoX8JJ.rst b/Misc/NEWS.d/next/Library/2023-11-14-16-31-59.gh-issue-111995.OoX8JJ.rst new file mode 100644 index 00000000000..773f620c97b --- /dev/null +++ b/Misc/NEWS.d/next/Library/2023-11-14-16-31-59.gh-issue-111995.OoX8JJ.rst @@ -0,0 +1,2 @@ +Added the ``NI_IDN`` constant to the :mod:`socket` module when present in C +at build time for use with :func:`socket.getnameinfo`. diff --git a/Modules/socketmodule.c b/Modules/socketmodule.c index 2e1a0974ceb..9ac2001c013 100644 --- a/Modules/socketmodule.c +++ b/Modules/socketmodule.c @@ -8803,6 +8803,9 @@ socket_exec(PyObject *m) #ifdef NI_DGRAM ADD_INT_MACRO(m, NI_DGRAM); #endif +#ifdef NI_IDN + ADD_INT_MACRO(m, NI_IDN); +#endif /* shutdown() parameters */ #ifdef SHUT_RD