- 15 Kas, 2013 19 kayıt (commit)
-
-
Victor Stinner yazdı
-
Victor Stinner yazdı
-
Christian Heimes yazdı
-
Vinay Sajip yazdı
-
Vinay Sajip yazdı
-
Vinay Sajip yazdı
-
Vinay Sajip yazdı
-
Andrew Kuchling yazdı
Issue #19544 and Issue #6516: Restore support for --user and --group parameters to sdist command as found in Python 2.7 and originally slated for Python 3.2 but accidentally rolled back as part of the distutils2 rollback. Closes Issue #6516.
-
Victor Stinner yazdı
PATH_MAX is not declared on IRIX nor Windows.
-
Victor Stinner yazdı
PATH_MAX is not declared on IRIX nor Windows.
-
Victor Stinner yazdı
the size of the fullpath buffer, not PATH_MAX. fullpath is declared using MAXPATHLEN or MAX_PATH depending on the OS, and PATH_MAX is not declared on IRIX.
-
Victor Stinner yazdı
the fullpath buffer, not PATH_MAX. fullpath is declared using MAXPATHLEN or MAX_PATH depending on the OS, and PATH_MAX is not declared on IRIX.
-
Victor Stinner yazdı
the size of the env_home buffer, not PATH_MAX+1. env_home is declared using MAXPATHLEN+1, and PATH_MAX is not declared on IRIX.
-
Victor Stinner yazdı
the env_home buffer, not PATH_MAX+1. env_home is declared using MAXPATHLEN+1, and PATH_MAX is not declared on IRIX.
-
Guido van Rossum yazdı
-
Nick Coghlan yazdı
-
Nick Coghlan yazdı
-
Nick Coghlan yazdı
-
Guido van Rossum yazdı
-
- 14 Kas, 2013 18 kayıt (commit)
-
-
Serhiy Storchaka yazdı
-
Victor Stinner yazdı
failure
-
Victor Stinner yazdı
-
Victor Stinner yazdı
PyMapping_Values() with an exception set, exit immediatly on error.
-
Victor Stinner yazdı
failure
-
Serhiy Storchaka yazdı
-
Serhiy Storchaka yazdı
-
Guido van Rossum yazdı
-
Stefan Krah yazdı
-
Benjamin Peterson yazdı
-
Benjamin Peterson yazdı
-
Guido van Rossum yazdı
-
Christian Heimes yazdı
-
Christian Heimes yazdı
CID 1128792: Dereference null return value (NULL_RETURNS)
-
Christian Heimes yazdı
CID 1128793: Missing varargs init or cleanup (VARARGS)
-
Victor Stinner yazdı
PyLong_FromLong() failure
-
Victor Stinner yazdı
error handling The following code didn't handle correctly the failure of PyUnicode_InternFromString("__name__"). if (newobj_str == NULL) { newobj_str = PyUnicode_InternFromString("__newobj__"); name_str = PyUnicode_InternFromString("__name__"); if (newobj_str == NULL || name_str == NULL) return -1; }
-
Victor Stinner yazdı
the exception when PyList_Append() fails
-
- 13 Kas, 2013 3 kayıt (commit)
-
-
Guido van Rossum yazdı
-
Ethan Furman yazdı
-
Guido van Rossum yazdı
-