- 30 Mar, 2017 1 kayıt (commit)
-
-
Serhiy Storchaka yazdı
-
- 27 Eki, 2016 1 kayıt (commit)
-
-
Serhiy Storchaka yazdı
special input values as literal text.
-
- 08 Eyl, 2016 1 kayıt (commit)
-
-
Benjamin Peterson yazdı
-
- 03 Agu, 2016 1 kayıt (commit)
-
-
Martin Panter yazdı
-
- 12 Tem, 2016 1 kayıt (commit)
-
-
Serhiy Storchaka yazdı
in case of embedded null characters/bytes. Patch by Xiang Zhang.
-
- 09 Haz, 2016 1 kayıt (commit)
-
-
Serhiy Storchaka yazdı
positional-only and keyword parameters in the same function.
-
- 10 Şub, 2016 1 kayıt (commit)
-
-
Martin Panter yazdı
The original form is incorrect grammar and feels awkward, even though the meaning is clear.
-
- 07 Şub, 2016 1 kayıt (commit)
-
-
Serhiy Storchaka yazdı
Fixed the documented about buffer overflow error for "es#" and "et#" format units.
-
- 23 Kas, 2015 1 kayıt (commit)
-
-
Serhiy Storchaka yazdı
-
- 13 Nis, 2015 1 kayıt (commit)
-
-
Larry Hastings yazdı
-
- 05 Ara, 2014 1 kayıt (commit)
-
-
Serhiy Storchaka yazdı
-
- 31 Eki, 2014 1 kayıt (commit)
-
-
Georg Brandl yazdı
-
- 16 Mar, 2014 1 kayıt (commit)
-
-
Larry Hastings yazdı
-
- 12 Mar, 2014 1 kayıt (commit)
-
-
Éric Araujo yazdı
Patch by Tshepang Lekhonkhobe, reviewed by Georg Brandl.
-
- 31 Ock, 2014 1 kayıt (commit)
-
-
Zachary Ware yazdı
Patch by OSAMU NAKAMURA.
-
- 16 Ock, 2014 1 kayıt (commit)
-
-
Larry Hastings yazdı
* You may now specify an expression as the default value for a parameter! Example: "sys.maxsize - 1". This support is intentionally quite limited; you may only use values that can be represented as static C values. * Removed "doc_default", simplified support for "c_default" and "py_default". (I'm not sure we still even need "py_default", but I'm leaving it in for now in case a use presents itself.) * Parameter lines support a trailing '\\' as a line continuation character, allowing you to break up long lines. * The argument parsing code generated when supporting optional groups now uses PyTuple_GET_SIZE instead of PyTuple_GetSize, leading to a 850% speedup in parsing. (Just kidding, this is an unmeasurable difference.) * A bugfix for the recent regression where the generated prototype from pydoc for builtins would be littered with unreadable "=<object ...>"" default values for parameters that had no default value. * Converted some asserts into proper failure messages. * Many doc improvements and fixes.
-
- 04 May, 2013 1 kayıt (commit)
-
-
Ezio Melotti yazdı
-
- 24 Haz, 2012 1 kayıt (commit)
-
-
Georg Brandl yazdı
-
- 05 May, 2012 1 kayıt (commit)
-
-
Larry Hastings yazdı
-
- 20 Mar, 2012 1 kayıt (commit)
-
-
Larry Hastings yazdı
They're optional-only for now (unlike in pure Python) but that's all I needed. The syntax can easily be relaxed if we want to support required keyword-only arguments for extension types in the future.
-
- 14 Ock, 2012 1 kayıt (commit)
-
-
Sandro Tosi yazdı
-
- 01 Ock, 2012 1 kayıt (commit)
-
-
Sandro Tosi yazdı
-
- 01 Ara, 2011 1 kayıt (commit)
-
-
Victor Stinner yazdı
-
- 29 Tem, 2011 1 kayıt (commit)
-
-
Eli Bendersky yazdı
As a side effect, this now allows the rjust, ljust and center methods of bytes and bytearray to accept a bytearray argument. Patch by Petri Lehtinen
-
- 06 Ock, 2011 2 kayıt (commit)
-
-
Antoine Pitrou yazdı
svn+ssh://pythondev@svn.python.org/python/branches/py3k ........ r87784 | antoine.pitrou | 2011-01-06 08:16:31 +0100 (jeu., 06 janv. 2011) | 3 lines Issue #10840: make it explicit that "s*" and friends provide contiguous memory. ........
-
Antoine Pitrou yazdı
-
- 06 Eki, 2010 3 kayıt (commit)
-
-
Georg Brandl yazdı
-
Georg Brandl yazdı
svn+ssh://svn.python.org/python/branches/py3k ........ r84945 | georg.brandl | 2010-09-21 16:48:28 +0200 (Di, 21 Sep 2010) | 1 line #9911: doc copyedits. ........
-
Georg Brandl yazdı
svn+ssh://svn.python.org/python/branches/py3k ........ r84142 | georg.brandl | 2010-08-17 17:07:14 +0200 (Di, 17 Aug 2010) | 1 line Consistency check for versionadded/changed directives. ........
-
- 21 Eyl, 2010 1 kayıt (commit)
-
-
Georg Brandl yazdı
-
- 17 Agu, 2010 1 kayıt (commit)
-
-
Georg Brandl yazdı
-
- 05 Tem, 2010 2 kayıt (commit)
-
-
Victor Stinner yazdı
svn+ssh://pythondev@svn.python.org/python/branches/py3k ........ r82597 | victor.stinner | 2010-07-05 23:36:21 +0200 (lun., 05 juil. 2010) | 2 lines #9158: Fix y* format of PyArg_Parse*() functions documentation ........
-
Victor Stinner yazdı
-
- 25 Haz, 2010 1 kayıt (commit)
-
-
Victor Stinner yazdı
"w*" format instead. Add tests for "w*" format.
-
- 19 Haz, 2010 1 kayıt (commit)
-
-
Victor Stinner yazdı
svn+ssh://pythondev@svn.python.org/python/branches/py3k ........ r82084 | victor.stinner | 2010-06-19 01:59:45 +0200 (sam., 19 juin 2010) | 6 lines Issue #8939: Improve arg.rst * Add :ctype: to Py_BEGIN_ALLOW_THREADS and int * "s" and "s#" formats of Py_BuildValue(): specify that the Python object type is str in the description ........
-
- 18 Haz, 2010 1 kayıt (commit)
-
-
Victor Stinner yazdı
* Add :ctype: to Py_BEGIN_ALLOW_THREADS and int * "s" and "s#" formats of Py_BuildValue(): specify that the Python object type is str in the description
-
- 13 Haz, 2010 1 kayıt (commit)
-
-
Victor Stinner yazdı
formats if the string contains a null byte/character. Write unit tests for string formats.
-
- 11 Haz, 2010 2 kayıt (commit)
-
-
Victor Stinner yazdı
svn+ssh://pythondev@svn.python.org/python/branches/py3k ........ r81923 | victor.stinner | 2010-06-12 01:30:12 +0200 (sam., 12 juin 2010) | 16 lines Fix some bugs in c-api/arg.rst documentation * replace "the default encoding" by "'utf-8' encoding" * fix "w" / "w*" / "w#" doc: similar to "y" / "y*" / "y#" and not "s" / "s*" / "s#" * "u#": remove "Non-Unicode objects are handled by interpreting their read-buffer pointer ...", it's no more true * "es", "es#": remove "... and objects convertible to Unicode into a character buffer", it's no more true * Py_BuildValue(), "K" and "L" formats: specify the name of the C type on Windows (_int64 / unsigned _int64) as done for PyArg_Parse*() long long types --CETTE ligne, et les suivantes ci-dessous, seront ignorées-- M Doc/c-api/arg.rst ........
-
Victor Stinner yazdı
* replace "the default encoding" by "'utf-8' encoding" * fix "w" / "w*" / "w#" doc: similar to "y" / "y*" / "y#" and not "s" / "s*" / "s#" * "u#": remove "Non-Unicode objects are handled by interpreting their read-buffer pointer ...", it's no more true * "es", "es#": remove "... and objects convertible to Unicode into a character buffer", it's no more true * Py_BuildValue(), "K" and "L" formats: specify the name of the C type on Windows (_int64 / unsigned _int64) as done for PyArg_Parse*() long long types --CETTE ligne, et les suivantes ci-dessous, seront ignorées-- M Doc/c-api/arg.rst
-
- 08 Haz, 2010 1 kayıt (commit)
-
-
Victor Stinner yazdı
Remove last references to the "char buffer" of the buffer protocol from Python3.
-