File tree Expand file tree Collapse file tree 2 files changed +4
-0
lines changed Expand file tree Collapse file tree 2 files changed +4
-0
lines changed Original file line number Diff line number Diff line change @@ -364,6 +364,8 @@ Library
364
364
Extension Modules
365
365
-----------------
366
366
367
+ - Patch #1657276: Make NETLINK_DNRTMSG conditional.
368
+
367
369
- Bug #1653736: Complain about keyword arguments to time.isoformat.
368
370
369
371
- Bug #1486663: don't reject keyword arguments for subclasses of builtin
Original file line number Diff line number Diff line change @@ -4383,7 +4383,9 @@ init_socket(void)
4383
4383
PyModule_AddIntConstant (m , "NETLINK_ROUTE6" , NETLINK_ROUTE6 );
4384
4384
#endif
4385
4385
PyModule_AddIntConstant (m , "NETLINK_IP6_FW" , NETLINK_IP6_FW );
4386
+ #ifdef NETLINK_DNRTMSG
4386
4387
PyModule_AddIntConstant (m , "NETLINK_DNRTMSG" , NETLINK_DNRTMSG );
4388
+ #endif
4387
4389
#ifdef NETLINK_TAPBASE
4388
4390
PyModule_AddIntConstant (m , "NETLINK_TAPBASE" , NETLINK_TAPBASE );
4389
4391
#endif
You can’t perform that action at this time.
0 commit comments