- 29 Nis, 2018 1 kayıt (commit)
-
-
Siddhesh Poyarekar yazdı
METH_NOARGS functions need only a single argument but they are cast into a PyCFunction, which takes two arguments. This triggers an invalid function cast warning in gcc8 due to the argument mismatch. Fix this by adding a dummy unused argument.
-
- 02 Şub, 2018 1 kayıt (commit)
-
-
oldk yazdı
-
- 25 Ock, 2018 1 kayıt (commit)
-
-
Serhiy Storchaka yazdı
Add two new private APIs: _PyObject_LookupAttr() and _PyObject_LookupAttrId()
-
- 11 Kas, 2017 1 kayıt (commit)
-
-
Serhiy Storchaka yazdı
-
- 26 Eyl, 2017 1 kayıt (commit)
-
-
Serhiy Storchaka yazdı
-
- 25 Eyl, 2017 1 kayıt (commit)
-
-
Raymond Hettinger yazdı
-
- 24 Eyl, 2017 1 kayıt (commit)
-
-
Serhiy Storchaka yazdı
now becames exhausted after advancing the groupby iterator.
-
- 21 Eyl, 2017 1 kayıt (commit)
-
-
Serhiy Storchaka yazdı
Affected classes are bytearray, array, deque, defaultdict, count and repeat.
-
- 17 Eyl, 2017 1 kayıt (commit)
-
-
Serhiy Storchaka yazdı
This function returns the last component of tp_name after a dot. Returns tp_name itself if it doesn't contain a dot.
-
- 08 Haz, 2017 2 kayıt (commit)
-
-
Serhiy Storchaka yazdı
Error messages when pass keyword arguments to some builtins that don't support keyword arguments contained double parenthesis: "()()". The regression was introduced by bpo-30534.
-
Will Roberts yazdı
* bpo-30537: use PyNumber in itertools instead of PyLong * bpo-30537: revert changes except to islice_new * bpo-30537: test itertools.islice and add entry to Misc/NEWS
-
- 19 Nis, 2017 1 kayıt (commit)
-
-
Serhiy Storchaka yazdı
raised an error. Replace them with using concrete types API that never fails if appropriate.
-
- 30 Mar, 2017 2 kayıt (commit)
-
-
T. Wouters yazdı
Fix the use of recursion in itertools.chain.from_iterable. Using recursion is unnecessary, and can easily cause stack overflows, especially when building in low optimization modes or with Py_DEBUG enabled.
-
Serhiy Storchaka yazdı
-
- 21 Mar, 2017 1 kayıt (commit)
-
-
Serhiy Storchaka yazdı
-
- 16 Ara, 2016 1 kayıt (commit)
-
-
Serhiy Storchaka yazdı
-
- 04 Ara, 2016 1 kayıt (commit)
-
-
Victor Stinner yazdı
Issue #28858: The change b9c9691c72c5 introduced a regression. It seems like _PyObject_CallArg1() uses more stack memory than PyObject_CallFunctionObjArgs().
-
- 01 Ara, 2016 1 kayıt (commit)
-
-
Victor Stinner yazdı
* PyObject_CallFunctionObjArgs(func, NULL) => _PyObject_CallNoArg(func) * PyObject_CallFunctionObjArgs(func, arg, NULL) => _PyObject_CallArg1(func, arg) PyObject_CallFunctionObjArgs() allocates 40 bytes on the C stack and requires extra work to "parse" C arguments to build a C array of PyObject*. _PyObject_CallNoArg() and _PyObject_CallArg1() are simpler and don't allocate memory on the C stack. This change is part of the fastcall project. The change on listsort() is related to the issue #23507.
-
- 02 Eki, 2016 1 kayıt (commit)
-
-
Serhiy Storchaka yazdı
incorrect pickle data. Based on patch by John Leitch.
-
- 10 Eyl, 2016 1 kayıt (commit)
-
-
Serhiy Storchaka yazdı
between 1.0 and 2.0 to 1.
-
- 28 Tem, 2016 1 kayıt (commit)
-
-
Martin Panter yazdı
Based on patch by Ville Skyttä.
-
- 17 Nis, 2016 1 kayıt (commit)
-
-
Serhiy Storchaka yazdı
-
- 10 Nis, 2016 1 kayıt (commit)
-
-
Serhiy Storchaka yazdı
in places where Py_DECREF was used.
-
- 06 Nis, 2016 1 kayıt (commit)
-
-
Serhiy Storchaka yazdı
-
- 06 Mar, 2016 1 kayıt (commit)
-
-
Serhiy Storchaka yazdı
-
- 01 Ock, 2016 1 kayıt (commit)
-
-
Benjamin Peterson yazdı
-
- 27 Ara, 2015 2 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.
-
Serhiy Storchaka yazdı
The patch is automatically generated, it replaces the code that uses Py_CLEAR.
-
- 24 Ara, 2015 1 kayıt (commit)
-
-
Serhiy Storchaka yazdı
macro Py_SETREF.
-
- 19 Ara, 2015 1 kayıt (commit)
-
-
Serhiy Storchaka yazdı
This allows sys.getsize() to work correctly with their subclasses with __slots__ defined.
-
- 02 Kas, 2015 1 kayıt (commit)
-
-
Serhiy Storchaka yazdı
-
- 12 Eyl, 2015 1 kayıt (commit)
-
-
Kristján Valur Jónsson yazdı
invalid memory.
-
- 18 Agu, 2015 1 kayıt (commit)
-
-
Raymond Hettinger yazdı
-
- 16 Agu, 2015 3 kayıt (commit)
-
-
Raymond Hettinger yazdı
-
Raymond Hettinger yazdı
-
Raymond Hettinger yazdı
-
- 15 Agu, 2015 3 kayıt (commit)
-
-
Raymond Hettinger yazdı
-
Raymond Hettinger yazdı
-
Raymond Hettinger yazdı
Will backport after the 3.6 release is done.
-
- 14 Agu, 2015 1 kayıt (commit)
-
-
Raymond Hettinger yazdı
-