Files
cpython/Objects
Victor Stinner 2e8474ddde Issue #18408: slot_tp_str() must not fallback on slot_tp_repr() on error
type->tp_str must not point to slot_tp_str() if type has no __str__ attribute,
so there is no reason for slot_tp_str() to fallback on slot_tp_str() on lookup
error. Moreover, calling PyErr_Clear() may hide a real bug like MemoryError.

If __str__ attribute is removed, slots must be updated (which is done by
type_setattro()).
2013-07-11 22:46:11 +02:00
..
2012-11-03 23:08:27 +01:00
2013-02-19 13:44:49 +01:00
2013-07-07 02:05:46 +02:00
2012-09-29 13:47:39 -04:00