- 23 Kas, 2013 2 kayıt (commit)
-
-
Christian Heimes yazdı
CID 1131948: Logically dead code (DEADCODE)
-
Antoine Pitrou yazdı
Most of the work is by Alexandre.
-
- 12 Kas, 2013 1 kayıt (commit)
-
-
Victor Stinner yazdı
Patch written by Andrei Dorian Duma.
-
- 07 Kas, 2013 2 kayıt (commit)
-
-
Victor Stinner yazdı
are used. Move also _Py_IDENTIFIER() defintions to the top in modified files to remove identifiers duplicated in the same file.
-
Martin v. Löwis yazdı
Patch by Andrei Dorian Duma.
-
- 06 Kas, 2013 2 kayıt (commit)
-
-
Victor Stinner yazdı
_PyUnicode_CompareWithId() is faster than PyUnicode_CompareWithASCIIString() when both strings are equal and interned. Add also _PyId_builtins identifier for "builtins" common string.
-
Victor Stinner yazdı
identifier for the "__abstractmethods__" string
-
- 29 Eki, 2013 2 kayıt (commit)
-
-
Antoine Pitrou yazdı
-
Victor Stinner yazdı
-
- 01 Eki, 2013 1 kayıt (commit)
-
-
Raymond Hettinger yazdı
The path wasn't being taken due to an over-restrictive type check.
-
- 26 Agu, 2013 1 kayıt (commit)
-
-
Victor Stinner yazdı
"Issue #18408: PyObject_Str(), PyObject_Repr() and type_call() now fail with an 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."
-
- 23 Agu, 2013 1 kayıt (commit)
-
-
Antoine Pitrou yazdı
-
- 30 Tem, 2013 1 kayıt (commit)
-
-
Antoine Pitrou yazdı
-
- 20 Tem, 2013 1 kayıt (commit)
-
-
Christian Heimes yazdı
The fix only affects the error message of __class__ assignment. CID 983564
-
- 17 Tem, 2013 2 kayıt (commit)
-
-
Victor Stinner yazdı
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 yazdı
-
- 16 Tem, 2013 1 kayıt (commit)
-
-
Victor Stinner yazdı
It was easy to miss the call to type->tp_init because it was done in a long conditional expression. Split the long expression in multiple lines to make the debug step by step easier.
-
- 15 Tem, 2013 1 kayıt (commit)
-
-
Victor Stinner yazdı
on memory allocation failure
-
- 11 Tem, 2013 3 kayıt (commit)
-
-
Victor Stinner yazdı
memory allocation failure Replace also PyMem_Free() with PyMem_FREE() to be consistent with the rest of the function.
-
Victor Stinner yazdı
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()).
-
Victor Stinner yazdı
-
- 08 Tem, 2013 1 kayıt (commit)
-
-
Victor Stinner yazdı
PyWeakref_NewRef() failure (ex: MemoryError).
-
- 15 May, 2013 1 kayıt (commit)
-
-
Benjamin Peterson yazdı
-
- 12 May, 2013 1 kayıt (commit)
-
-
Benjamin Peterson yazdı
-
- 10 May, 2013 1 kayıt (commit)
-
-
Guido van Rossum yazdı
-
- 04 May, 2013 1 kayıt (commit)
-
-
Antoine Pitrou yazdı
Issue #17408: Avoid using an obsolete instance of the copyreg module when the interpreter is shutdown and then started again.
-
- 13 Nis, 2013 1 kayıt (commit)
-
-
Mark Dickinson yazdı
-
- 01 Nis, 2013 1 kayıt (commit)
-
-
Benjamin Peterson yazdı
This means we can remove our usage of qsort() than relied on undefined behavior.
-
- 19 Şub, 2013 2 kayıt (commit)
-
-
R David Murray yazdı
Patch by Alexander Belopolsky.
-
R David Murray yazdı
Patch by Alexander Belopolsky.
-
- 19 Ock, 2013 1 kayıt (commit)
-
-
Raymond Hettinger yazdı
-
- 25 Ara, 2012 1 kayıt (commit)
-
-
Andrew Svetlov yazdı
-
- 23 Ara, 2012 1 kayıt (commit)
-
-
Andrew Svetlov yazdı
Patch by Florent Xicluna.
-
- 31 Eki, 2012 2 kayıt (commit)
-
-
Benjamin Peterson yazdı
-
Benjamin Peterson yazdı
-
- 30 Eki, 2012 1 kayıt (commit)
-
-
Victor Stinner yazdı
... (unsigned long and unsigned int) to avoid an undefined behaviour with Py_TPFLAGS_TYPE_SUBCLASS ((1 << 31). PyType_GetFlags() result type is now unsigned too (unsigned long, instead of long).
-
- 19 Eyl, 2012 1 kayıt (commit)
-
-
Trent Nelson yazdı
(Compiler: Solaris Studio 12.3)
-
- 10 Eyl, 2012 3 kayıt (commit)
-
-
Christian Heimes yazdı
Fixed memory leak in error branch of object_repr which may leak a reference to mod when type_name returns NULL. CID 715371
-
Christian Heimes yazdı
Fixed memory leak in error branch of object_repr which may leak a reference to mod when type_name returns NULL. CID 715371
-
Christian Heimes yazdı
-