- 09 Şub, 2014 1 kayıt (commit)
-
-
Serhiy Storchaka yazdı
-
- 05 Şub, 2014 1 kayıt (commit)
-
-
Serhiy Storchaka yazdı
-
- 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)
-
-
Christian Heimes yazdı
of zlibmodule.clinic.c
-
- 26 Ock, 2014 2 kayıt (commit)
-
-
Serhiy Storchaka yazdı
-
Larry Hastings yazdı
-
- 24 Ock, 2014 1 kayıt (commit)
-
-
Larry Hastings yazdı
PyMethodDescr_Type, _PyMethodWrapper_Type, and PyWrapperDescr_Type) have been modified to provide introspection information for builtins. Also: many additional Lib, test suite, and Argument Clinic fixes.
-
- 22 Ock, 2014 1 kayıt (commit)
-
-
Larry Hastings yazdı
docstring for __new__ and __init__, and always use "goto exit" instead of returning "NULL" for failure to parse (as _new__ and __init__ return ints).
-
- 18 Ock, 2014 1 kayıt (commit)
-
-
Larry Hastings yazdı
delaying its output or even redirecting it to a separate file.
-
- 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.
-
- 12 Ock, 2014 1 kayıt (commit)
-
-
Larry Hastings yazdı
Argument Clinic (see issue for details).
-
- 07 Ock, 2014 1 kayıt (commit)
-
-
Larry Hastings yazdı
to improve readability.
-
- 06 Ock, 2014 1 kayıt (commit)
-
-
Larry Hastings yazdı
initialized with a default value.
-
- 04 Ock, 2014 2 kayıt (commit)
-
-
Larry Hastings yazdı
-
Larry Hastings yazdı
take two parameters.
-
- 03 Ock, 2014 1 kayıt (commit)
-
-
Victor Stinner yazdı
-
- 24 Kas, 2013 1 kayıt (commit)
-
-
Larry Hastings yazdı
-
- 23 Kas, 2013 2 kayıt (commit)
-
-
Larry Hastings yazdı
for some builtins.
-
Larry Hastings yazdı
"format units" as legacy converters, as well as two new features: "self converters" and the "version" directive.
-
- 21 Kas, 2013 1 kayıt (commit)
-
-
Victor Stinner yazdı
-
- 18 Kas, 2013 1 kayıt (commit)
-
-
Larry Hastings yazdı
-
- 19 Eki, 2013 1 kayıt (commit)
-
-
Larry Hastings yazdı
for C files to generate argument parsing code. (See PEP 436.)
-
- 08 Tem, 2013 2 kayıt (commit)
-
-
Victor Stinner yazdı
_PyBytes_Resize(&v, new_size) sets v to NULL on error, so v cannot be used anymore. Replace "Py_DECREF(v); v = NULL;" with "Py_CLEAR(v);".
-
Victor Stinner yazdı
(MemoryError).
-
- 07 Tem, 2013 3 kayıt (commit)
-
-
Victor Stinner yazdı
-
Victor Stinner yazdı
-
Victor Stinner yazdı
Replace malloc() with PyMem_Malloc() when the GIL is held, or with PyMem_RawMalloc() otherwise.
-
- 24 Haz, 2013 1 kayıt (commit)
-
-
Victor Stinner yazdı
-
- 20 May, 2013 1 kayıt (commit)
-
-
Charles-Francois Natali yazdı
when applicable.
-
- 07 May, 2013 1 kayıt (commit)
-
-
Victor Stinner yazdı
-
- 11 Kas, 2012 7 kayıt (commit)
-
-
Nadeem Vawda yazdı
Patch by Brian Brazil.
-
Nadeem Vawda yazdı
-
Nadeem Vawda yazdı
-
Nadeem Vawda yazdı
Issue #16411: Fix a bug where zlib.decompressobj().flush() might try to access previously-freed memory. Patch by Serhiy Storchaka.
-
Nadeem Vawda yazdı
Issue #16411: Fix a bug where zlib.decompressobj().flush() might try to access previously-freed memory. Patch by Serhiy Storchaka.
-
Nadeem Vawda yazdı
Additionally, fix a bug where a MemoryError in allocating a bytes object could leave the decompressor object in an invalid state (with its unconsumed_tail member being NULL). Patch by Serhiy Storchaka.
-
Nadeem Vawda yazdı
Additionally, fix a bug where a MemoryError in allocating a bytes object could leave the decompressor object in an invalid state (with its unconsumed_tail member being NULL). Patch by Serhiy Storchaka.
-
- 04 Kas, 2012 2 kayıt (commit)
-
-
Nadeem Vawda yazdı
Issue #16350: Fix zlib decompressor handling of unused_data with multiple calls to decompress() after EOF. Patch by Serhiy Storchaka.
-
Nadeem Vawda yazdı
Issue #16350: Fix zlib decompressor handling of unused_data with multiple calls to decompress() after EOF. Patch by Serhiy Storchaka.
-
- 30 Eki, 2012 1 kayıt (commit)
-
-
Victor Stinner yazdı
-