- 15 Nov, 2013 5 commits
-
-
Guido van Rossum authored
-
Nick Coghlan authored
-
Nick Coghlan authored
-
Nick Coghlan authored
-
Guido van Rossum authored
-
- 14 Nov, 2013 18 commits
-
-
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
-
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 12 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
-
Nick Coghlan authored
-
- 12 Nov, 2013 5 commits
-
-
Giampaolo Rodola' authored
-
Giampaolo Rodola' authored
test.support: considering the module is a mix of utilities unrelated with each other divide __all__ in sub-sections so that it can be used as a quick-reference doc
-
Victor Stinner authored
-
Victor Stinner authored
Patch written by Andrei Dorian Duma.
-
Victor Stinner authored
-