We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 91670d0 commit b1cc1d4Copy full SHA for b1cc1d4
Misc/NEWS
@@ -364,6 +364,8 @@ Library
364
Extension Modules
365
-----------------
366
367
+- Patch #1657276: Make NETLINK_DNRTMSG conditional.
368
+
369
- Bug #1653736: Complain about keyword arguments to time.isoformat.
370
371
- Bug #1486663: don't reject keyword arguments for subclasses of builtin
Modules/socketmodule.c
@@ -4383,7 +4383,9 @@ init_socket(void)
4383
PyModule_AddIntConstant(m, "NETLINK_ROUTE6", NETLINK_ROUTE6);
4384
#endif
4385
PyModule_AddIntConstant(m, "NETLINK_IP6_FW", NETLINK_IP6_FW);
4386
+#ifdef NETLINK_DNRTMSG
4387
PyModule_AddIntConstant(m, "NETLINK_DNRTMSG", NETLINK_DNRTMSG);
4388
+#endif
4389
#ifdef NETLINK_TAPBASE
4390
PyModule_AddIntConstant(m, "NETLINK_TAPBASE", NETLINK_TAPBASE);
4391
0 commit comments