bpo-46968: Add os.sysconf_names['SC_MINSIGSTKSZ'] (GH-31824)

This commit is contained in:
Victor Stinner 2022-03-11 23:01:40 +01:00 committed by GitHub
parent 5b1b9eacb9
commit dc374ac7b0
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 7 additions and 0 deletions

View file

@ -4755,6 +4755,9 @@ Miscellaneous System Information
.. availability:: Unix. .. availability:: Unix.
.. versionchanged:: 3.11
Add ``'SC_MINSIGSTKSZ'`` name.
The following data values are used to support path manipulation operations. These The following data values are used to support path manipulation operations. These
are defined for all platforms. are defined for all platforms.

View file

@ -0,0 +1 @@
Add ``os.sysconf_names['SC_MINSIGSTKSZ']``.

View file

@ -12346,6 +12346,9 @@ static struct constdef posix_constants_sysconf[] = {
#ifdef _SC_XOPEN_XPG4 #ifdef _SC_XOPEN_XPG4
{"SC_XOPEN_XPG4", _SC_XOPEN_XPG4}, {"SC_XOPEN_XPG4", _SC_XOPEN_XPG4},
#endif #endif
#ifdef _SC_MINSIGSTKSZ
{"SC_MINSIGSTKSZ", _SC_MINSIGSTKSZ},
#endif
}; };
static int static int