- 30 Mar, 2017 2 kayıt (commit)
-
-
Serhiy Storchaka yazdı
when pass indices of wrong type.
-
Serhiy Storchaka yazdı
-
- 24 Şub, 2017 1 kayıt (commit)
-
-
Louie Lu yazdı
-
- 06 Şub, 2017 1 kayıt (commit)
-
-
Victor Stinner yazdı
Issue #29452: Use METH_FASTCALL calling convention for index(), insert() and rotate() methods of collections.deque to avoid the creation a temporary tuple to pass position arguments. Speedup on deque methods: * d.rotate(): 1.10x faster * d.rotate(1): 1.24x faster * d.insert(): 1.18x faster * d.index(): 1.24x faster
-
- 14 Ock, 2017 1 kayıt (commit)
-
-
Martin Panter yazdı
* Indent versionchanged at method level, not class level * Mark up ``--help`` to avoid generating an en dash * Use forward slash in Unix command line with a dollar sign ($) prompt
-
- 13 Ock, 2017 1 kayıt (commit)
-
-
Raymond Hettinger yazdı
-
- 05 Ara, 2016 1 kayıt (commit)
-
-
Victor Stinner yazdı
Replace _PyObject_CallArg1(func, arg) with PyObject_CallFunctionObjArgs(func, arg, NULL) Using the _PyObject_CallArg1() macro increases the usage of the C stack, which was unexpected and unwanted. PyObject_CallFunctionObjArgs() doesn't have this issue.
-
- 01 Ara, 2016 1 kayıt (commit)
-
-
Victor Stinner yazdı
Replace PyObject_CallFunction(func, "O", arg) and PyObject_CallFunction(func, "O", arg, NULL) with _PyObject_CallArg1(func, arg) Replace PyObject_CallFunction(func, NULL) with _PyObject_CallNoArg(func) _PyObject_CallNoArg() and _PyObject_CallArg1() are simpler and don't allocate memory on the C stack.
-
- 06 Kas, 2016 1 kayıt (commit)
-
-
Serhiy Storchaka yazdı
PyDict_GetItemWithError(). Patch by Xiang Zhang.
-
- 12 Eyl, 2016 1 kayıt (commit)
-
-
Raymond Hettinger yazdı
-
- 06 Eyl, 2016 1 kayıt (commit)
-
-
Victor Stinner yazdı
Don't pass "()" format to PyObject_CallXXX() to call a function without argument: pass NULL as the format string instead. It avoids to have to parse a string to produce 0 argument.
-
- 14 Haz, 2016 1 kayıt (commit)
-
-
doko@ubuntu.com yazdı
-
- 17 May, 2016 1 kayıt (commit)
-
-
doko@ubuntu.com yazdı
-
- 06 Mar, 2016 1 kayıt (commit)
-
-
Serhiy Storchaka yazdı
-
- 04 Mar, 2016 1 kayıt (commit)
-
-
Raymond Hettinger yazdı
-
- 02 Mar, 2016 2 kayıt (commit)
-
-
Raymond Hettinger yazdı
-
Raymond Hettinger yazdı
-
- 09 Şub, 2016 1 kayıt (commit)
-
-
Raymond Hettinger yazdı
-
- 02 Şub, 2016 2 kayıt (commit)
-
-
Raymond Hettinger yazdı
-
Raymond Hettinger yazdı
-
- 27 Ock, 2016 1 kayıt (commit)
-
-
Raymond Hettinger yazdı
-
- 24 Ock, 2016 3 kayıt (commit)
-
-
Raymond Hettinger yazdı
and better generated code (on both GCC and CLang).
-
Raymond Hettinger yazdı
and for better code generation.
-
Raymond Hettinger yazdı
* Add comment to the maxlen structure entry about the meaning of maxlen == -1 * Factor-out code common to deque_append(left) and deque_extend(left) * Factor inner-loop in deque_clear() to use only 1 test per loop instead of 2 * Tighten inner-loops for deque_item() and deque_ass_item() so that the compiler can combine the decrement and test into a single step.
-
- 01 Ock, 2016 1 kayıt (commit)
-
-
Benjamin Peterson yazdı
-
- 27 Ara, 2015 1 kayıt (commit)
-
-
Serhiy Storchaka yazdı
Old code is correct, but with Py_SETREF and Py_CLEAR it can be cleaner. This patch doesn't fix bugs and hence there is no need to backport it.
-
- 19 Ara, 2015 1 kayıt (commit)
-
-
Serhiy Storchaka yazdı
This allows sys.getsize() to work correctly with their subclasses with __slots__ defined.
-
- 04 Kas, 2015 1 kayıt (commit)
-
-
Raymond Hettinger yazdı
-
- 02 Kas, 2015 3 kayıt (commit)
-
-
Raymond Hettinger yazdı
-
Raymond Hettinger yazdı
-
Martin Panter yazdı
-
- 23 Eki, 2015 1 kayıt (commit)
-
-
Raymond Hettinger yazdı
-
- 20 Eki, 2015 1 kayıt (commit)
-
-
Raymond Hettinger yazdı
-
- 17 Eki, 2015 1 kayıt (commit)
-
-
Raymond Hettinger yazdı
-
- 16 Eki, 2015 1 kayıt (commit)
-
-
Raymond Hettinger yazdı
-
- 15 Eki, 2015 3 kayıt (commit)
-
-
Raymond Hettinger yazdı
-
Raymond Hettinger yazdı
-
Raymond Hettinger yazdı
-
- 12 Eki, 2015 2 kayıt (commit)
-
-
Raymond Hettinger yazdı
-
Raymond Hettinger yazdı
-