- 15 Nov, 2013 20 commits
-
-
Victor Stinner authored
to int
-
Victor Stinner authored
-
Victor Stinner authored
-
Christian Heimes authored
-
Vinay Sajip authored
-
Vinay Sajip authored
-
Vinay Sajip authored
-
Vinay Sajip authored
-
Andrew Kuchling authored
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 authored
PATH_MAX is not declared on IRIX nor Windows.
-
Victor Stinner authored
PATH_MAX is not declared on IRIX nor Windows.
-
Victor Stinner authored
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 authored
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 authored
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 authored
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 authored
-
Nick Coghlan authored
-
Nick Coghlan authored
-
Nick Coghlan authored
-
Guido van Rossum authored
-
- 14 Nov, 2013 18 commits
-
-
Serhiy Storchaka authored
-
Victor Stinner authored
failure
-
Victor Stinner authored
-
Victor Stinner authored
PyMapping_Values() with an exception set, exit immediatly on error.
-
Victor Stinner authored
failure
-
Serhiy Storchaka authored
-
Serhiy Storchaka authored
-
Guido van Rossum authored
-
Stefan Krah authored
-
Benjamin Peterson authored
-
Benjamin Peterson authored
-
Guido van Rossum authored
-
Christian Heimes authored
-
Christian Heimes authored
CID 1128792: Dereference null return value (NULL_RETURNS)
-
Christian Heimes authored
CID 1128793: Missing varargs init or cleanup (VARARGS)
-
Victor Stinner authored
PyLong_FromLong() failure
-
Victor Stinner authored
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 authored
the exception when PyList_Append() fails
-
- 13 Nov, 2013 2 commits
-
-
Guido van Rossum authored
-
Ethan Furman authored
-