- 15 Nov, 2013 11 commits
-
-
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 11 commits
-
-
Guido van Rossum authored
-
Ethan Furman authored
-
Guido van Rossum authored
-
Nick Coghlan authored
-
Nick Coghlan authored
- output type errors now redirect users to the type-neutral convenience functions in the codecs module - stateless errors that occur during encoding and decoding will now be automatically wrapped in exceptions that give the name of the codec involved
-
Victor Stinner authored
Replace it with PyUnicode_GET_LENGTH() or PyUnicode_AsUnicodeAndSize()
-
Victor Stinner authored
failures
-
Victor Stinner authored
failure
-
Victor Stinner authored
-
Victor Stinner authored
PyUnicode_Substring() failure (ex: MemoryError)
-
Nick Coghlan authored
-