File tree Expand file tree Collapse file tree 2 files changed +10
-0
lines changed Expand file tree Collapse file tree 2 files changed +10
-0
lines changed Original file line number Diff line number Diff line change @@ -74,6 +74,10 @@ Core and Builtins
74
74
Library
75
75
-------
76
76
77
+ - Issue #26273: Add new :data:`socket.TCP_CONGESTION` (Linux 2.6.13) and
78
+ :data:`socket.TCP_USER_TIMEOUT` (Linux 2.6.37) constants. Patch written by
79
+ Omar Sandoval.
80
+
77
81
- Issue #28752: Restored the __reduce__() methods of datetime objects.
78
82
79
83
- Issue #28727: Regular expression patterns, _sre.SRE_Pattern objects created
Original file line number Diff line number Diff line change @@ -7512,6 +7512,12 @@ PyInit__socket(void)
7512
7512
#ifdef TCP_FASTOPEN
7513
7513
PyModule_AddIntMacro (m , TCP_FASTOPEN );
7514
7514
#endif
7515
+ #ifdef TCP_CONGESTION
7516
+ PyModule_AddIntMacro (m , TCP_CONGESTION );
7517
+ #endif
7518
+ #ifdef TCP_USER_TIMEOUT
7519
+ PyModule_AddIntMacro (m , TCP_USER_TIMEOUT );
7520
+ #endif
7515
7521
7516
7522
/* IPX options */
7517
7523
#ifdef IPX_TYPE
You can’t perform that action at this time.
0 commit comments