- 20 Jul, 2013 12 commits
-
-
Christian Heimes authored
CID 486654
-
Christian Heimes authored
CID 486654
-
Christian Heimes authored
CID 486649
-
Christian Heimes authored
CID 486649
-
Christian Heimes authored
CID 486647
-
Christian Heimes authored
CID 486647
-
Christian Heimes authored
The fix only affects the error message of __class__ assignment. CID 983564
-
Christian Heimes authored
sizeof(Py_ssize_t *) == sizeof(Py_ssize_t) but it's not a portable assumption. CID 486403
-
Christian Heimes authored
CID 486616, CID 486617, CID 486615
-
Raymond Hettinger authored
-
Ethan Furman authored
Before this change only the methods were _single_underscored_; now the attributes are as well.
-
Ethan Furman authored
-
- 19 Jul, 2013 7 commits
-
-
Richard Oudkerk authored
-
Richard Oudkerk authored
-
Victor Stinner authored
I tested the patch manually by injecting a fault using gdb: list items are correctly restored on failure.
-
Vinay Sajip authored
-
Ronald Oussoren authored
-
Ronald Oussoren authored
-
Ethan Furman authored
The docs also clarify the 'Interesting Example' duplicate-free enum is for demonstration purposes.
-
- 18 Jul, 2013 6 commits
-
-
Victor Stinner authored
follow_symlinks=False whereas the fchmodat() function is not avaialble.
-
Victor Stinner authored
whereas the fchmodat() function is not avaialble.
-
Victor Stinner authored
functions if a Python exception was raised
-
Victor Stinner authored
handler if a Python exception is set
-
Victor Stinner authored
Modules/python.c:40: warning: ISO C90 forbids mixed declarations and code
-
Victor Stinner authored
Don't call PyErr_NewException() if an exception is set, or type_call() would fail with an assertion error.
-
- 17 Jul, 2013 15 commits
-
-
Victor Stinner authored
assertion error if they are called with an exception set (PyErr_Occurred()). As PyEval_EvalFrameEx(), they may clear the current exception and so the caller looses its exception.
-
Victor Stinner authored
type_call() with an exception set
-
Victor Stinner authored
with an assertion error if they are called with an exception set (PyErr_Occurred()). If these functions are called with an exception set, the exception may be cleared and so the caller looses its exception. Add also assertions to PyEval_CallObjectWithKeywords() and call_function() to check if the function succeed with no exception set, or the function failed with an exception set.
-
Victor Stinner authored
the last call to the step() method of a user function
-
Victor Stinner authored
PyObject_Repr() can removes the current exception. For example, module_repr() calls PyErr_Clear() if calling loader.module_repr(mod) failed.
-
Victor Stinner authored
-
Victor Stinner authored
-
Victor Stinner authored
small integers (0 or 1 digit)
-
Victor Stinner authored
-
Victor Stinner authored
-
Victor Stinner authored
-
Victor Stinner authored
-
Victor Stinner authored
-
Victor Stinner authored
-
Victor Stinner authored
-