Issue #17964: Fix os.sysconf(): the return type of the C sysconf() function

is long, not int.
This commit is contained in:
Victor Stinner 2013-05-16 22:26:29 +02:00
parent 0b1bc56bb6
commit 6fdd7b81fa
2 changed files with 4 additions and 1 deletions

View File

@ -91,6 +91,9 @@ Core and Builtins
Library
-------
- Issue #17964: Fix os.sysconf(): the return type of the C sysconf() function
is long, not int.
- Fix typos in the multiprocessing module.
- Issue #17754: Make ctypes.util.find_library() independent of the locale.

View File

@ -9550,7 +9550,7 @@ posix_sysconf(PyObject *self, PyObject *args)
int name;
if (PyArg_ParseTuple(args, "O&:sysconf", conv_sysconf_confname, &name)) {
int value;
long value;
errno = 0;
value = sysconf(name);