- 01 Haz, 2019 1 kayıt (commit)
-
-
Tim Hoffmann yazdı
-
- 29 May, 2019 1 kayıt (commit)
-
-
Gregory P. Smith yazdı
* bpo-22385: Support output separators in hex methods. Also in binascii.hexlify aka b2a_hex. The underlying implementation behind all hex generation in CPython uses the same pystrhex.c implementation. This adds support to bytes, bytearray, and memoryview objects. The binascii module functions exist rather than being slated for deprecation because they return bytes rather than requiring an intermediate step through a str object. This change was inspired by MicroPython which supports sep in its binascii implementation (and does not yet support the .hex methods). https://bugs.python.org/issue22385
-
- 24 May, 2019 1 kayıt (commit)
-
-
Victor Stinner yazdı
-
- 12 Nis, 2019 1 kayıt (commit)
-
-
Inada Naoki yazdı
-
- 14 Mar, 2019 1 kayıt (commit)
-
-
Serhiy Storchaka yazdı
-
- 11 Ock, 2019 2 kayıt (commit)
-
-
Serhiy Storchaka yazdı
Use _PyArg_CheckPositional() and inlined code instead of PyArg_UnpackTuple() and _PyArg_UnpackStack() if all parameters are positional and use the "object" converter.
-
Serhiy Storchaka yazdı
-
- 25 Ara, 2018 1 kayıt (commit)
-
-
Serhiy Storchaka yazdı
-
- 27 Kas, 2018 1 kayıt (commit)
-
-
Serhiy Storchaka yazdı
Fix invalid function cast warnings with gcc 8 for method conventions different from METH_NOARGS, METH_O and METH_VARARGS in Argument Clinic generated code.
-
- 06 Kas, 2018 1 kayıt (commit)
-
-
Rémi Lapeyre yazdı
-
- 08 Eki, 2018 2 kayıt (commit)
-
-
Emanuele Gaifas yazdı
This rectifies commit ffc5a14d.
-
Sanyam Khurana yazdı
* bpo-33014: Clarify str.isidentifier docstring * bpo-33014: Add code example in isidentifier documentation
-
- 14 Eyl, 2018 1 kayıt (commit)
-
-
Lisa Roach yazdı
-
- 27 Ock, 2018 1 kayıt (commit)
-
-
INADA Naoki yazdı
-
- 15 Ara, 2017 1 kayıt (commit)
-
-
Serhiy Storchaka yazdı
-
- 28 Eki, 2017 1 kayıt (commit)
-
-
Serhiy Storchaka yazdı
separators that are not bytes-like objects.
-
- 03 Tem, 2017 1 kayıt (commit)
-
-
Serhiy Storchaka yazdı
the bare METH_FASTCALL be used for functions with positional-only parameters.
-
- 10 Haz, 2017 1 kayıt (commit)
-
-
Sylvain yazdı
The function '_PyArg_ParseStack()' and '_PyArg_UnpackStack' were failing (with error "XXX() takes Y argument (Z given)") before the function '_PyArg_NoStackKeywords()' was called. Thus, the latter did not raise its more meaningful error : "XXX() takes no keyword arguments".
-
- 08 Nis, 2017 1 kayıt (commit)
-
-
Serhiy Storchaka yazdı
object.__reduce__() no longer takes arguments, object.__reduce_ex__() now requires one argument.
-
- 05 Nis, 2017 1 kayıt (commit)
-
-
Serhiy Storchaka yazdı
-
- 30 Mar, 2017 1 kayıt (commit)
-
-
Serhiy Storchaka yazdı
when pass indices of wrong type.
-
- 19 Mar, 2017 3 kayıt (commit)
-
-
Serhiy Storchaka yazdı
-
Serhiy Storchaka yazdı
-
Serhiy Storchaka yazdı
Based on patch by Vajrasky Kok.
-
- 11 Mar, 2017 2 kayıt (commit)
-
-
Serhiy Storchaka yazdı
Based on patch by Vajrasky Kok.
-
Serhiy Storchaka yazdı
-
- 04 Şub, 2017 1 kayıt (commit)
-
-
Serhiy Storchaka yazdı
-
- 01 Şub, 2017 1 kayıt (commit)
-
-
Serhiy Storchaka yazdı
Based on patch by Vajrasky Kok.
-
- 24 Ock, 2017 2 kayıt (commit)
-
-
Serhiy Storchaka yazdı
methods.
-
Martin Panter yazdı
-
- 19 Ock, 2017 4 kayıt (commit)
-
-
Serhiy Storchaka yazdı
-
Serhiy Storchaka yazdı
-
Serhiy Storchaka yazdı
Patch by Tal Einat.
-
Victor Stinner yazdı
Issue #29311: dict.get() and dict.setdefault() methods now use Argument Clinic to parse arguments. Their calling convention changes from METH_VARARGS to METH_FASTCALL which avoids the creation of a temporary tuple. The signature of docstrings is also enhanced. For example, get(...) becomes: get(self, key, default=None, /)
-
- 17 Ock, 2017 4 kayıt (commit)
-
-
Victor Stinner yazdı
Issue #29289. Convert methods: * fromkeys() class method * setdefault() * popitem() * move_to_end()
-
Victor Stinner yazdı
Issue #29286. Run Argument Clinic to get the new faster METH_FASTCALL calling convention for functions using "boring" positional arguments. Manually fix _elementtree: _elementtree_XMLParser_doctype() must remain consistent with the clinic code.
-
Victor Stinner yazdı
Issue #29286. Run Argument Clinic to get the new faster METH_FASTCALL calling convention for functions using only positional arguments.
-
Victor Stinner yazdı
Issue #29286.
-
- 16 Ock, 2017 2 kayıt (commit)
-
-
INADA Naoki yazdı
-
INADA Naoki yazdı
-