File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -34,6 +34,8 @@ Core and Builtins
3434Library
3535-------
3636
37+ - Issue #27656: Do not assume sched.h defines any SCHED_* constants.
38+
3739- Issue #27130: In the "zlib" module, fix handling of large buffers
3840 (typically 4 GiB) when compressing and decompressing. Previously, inputs
3941 were limited to 4 GiB, and compression and decompression operations did not
Original file line number Diff line number Diff line change @@ -12750,9 +12750,15 @@ all_ins(PyObject *m)
1275012750#endif
1275112751
1275212752#ifdef HAVE_SCHED_H
12753+ #ifdef SCHED_OTHER
1275312754 if (PyModule_AddIntMacro (m , SCHED_OTHER )) return -1 ;
12755+ #endif
12756+ #ifdef SCHED_FIFO
1275412757 if (PyModule_AddIntMacro (m , SCHED_FIFO )) return -1 ;
12758+ #endif
12759+ #ifdef SCHED_RR
1275512760 if (PyModule_AddIntMacro (m , SCHED_RR )) return -1 ;
12761+ #endif
1275612762#ifdef SCHED_SPORADIC
1275712763 if (PyModule_AddIntMacro (m , SCHED_SPORADIC ) return -1 ;
1275812764#endif
You can’t perform that action at this time.
0 commit comments