- 14 Mar, 2019 1 kayıt (commit)
-
-
Serhiy Storchaka yazdı
-
- 11 Ock, 2019 1 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.
-
- 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.
-
- 04 Nis, 2018 1 kayıt (commit)
-
-
Łukasz Langa yazdı
This makes performance better and produces shorter pickles. This change is backwards compatible up to the oldest currently supported version of Python (3.4).
-
- 15 Ara, 2017 1 kayıt (commit)
-
-
Serhiy Storchaka yazdı
-
- 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".
-
- 17 Ock, 2017 3 kayıt (commit)
-
-
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.
-
- 10 Eyl, 2016 1 kayıt (commit)
-
-
Victor Stinner yazdı
-
- 14 Agu, 2016 1 kayıt (commit)
-
-
Serhiy Storchaka yazdı
implemented with using Argument Clinic.
-
- 07 Tem, 2016 1 kayıt (commit)
-
-
Serhiy Storchaka yazdı
generated by Argument Clinic. Patch by Petr Viktorin.
-
- 09 Haz, 2016 1 kayıt (commit)
-
-
Serhiy Storchaka yazdı
-
- 26 May, 2016 1 kayıt (commit)
-
-
Martin Panter yazdı
Most fixes to Doc/ and Lib/ directories by Ville Skyttä.
-
- 02 Kas, 2015 1 kayıt (commit)
-
-
Martin Panter yazdı
This changes the main documentation, doc strings, source code comments, and a couple error messages in the test suite. In some cases the word was removed or edited some other way to fix the grammar.
-
- 23 Nis, 2015 1 kayıt (commit)
-
-
Serhiy Storchaka yazdı
same line as function name.
-
- 14 Nis, 2015 1 kayıt (commit)
-
-
Larry Hastings yazdı
-
- 16 Ara, 2014 1 kayıt (commit)
-
-
Serhiy Storchaka yazdı
-
- 09 Şub, 2014 1 kayıt (commit)
-
-
Larry Hastings yazdı
The new syntax is highly human readable while still preventing false positives. The syntax also extends Python syntax to denote "self" and positional-only parameters, allowing inspect.Signature objects to be totally accurate for all supported builtins in Python 3.4.
-
- 28 Ock, 2014 1 kayıt (commit)
-
-
Larry Hastings yazdı
annotate text signatures in docstrings, resulting in fewer false positives. "self" parameters are also explicitly marked, allowing inspect.Signature() to authoritatively detect (and skip) said parameters. Issue #20326: Argument Clinic now generates separate checksums for the input and output sections of the block, allowing external tools to verify that the input has not changed (and thus the output is not out-of-date).
-
- 27 Ock, 2014 1 kayıt (commit)
-
-
Serhiy Storchaka yazdı
-