diff options
-rw-r--r-- | Misc/NEWS.d/next/Library/2023-11-14-16-31-59.gh-issue-111995.OoX8JJ.rst | 2 | ||||
-rw-r--r-- | Modules/socketmodule.c | 3 |
2 files changed, 5 insertions, 0 deletions
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 0000000..773f620 --- /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 2e1a097..9ac2001 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 |