summaryrefslogtreecommitdiffstats
path: root/Modules/clinic
Commit message (Collapse)AuthorAgeFilesLines
* Issue #22832: Tweaked parameter names for fcntl module to better matchSerhiy Storchaka2015-03-201-18/+17
| | | | | official POSIX documentation. Updated the documenttion for Python 3. Patch by Alex Shkop.
* Issue #15955: Add an option to limit the output size in bz2.decompress().Antoine Pitrou2015-02-261-14/+23
| | | | Patch by Nikolaus Rath.
* Regenerated Argument Clinic checksums.Serhiy Storchaka2015-02-202-3/+3
|
* Merge with 3.4 (closes #23280)Zachary Ware2015-01-201-1/+69
|\
| * Issue #23280: Fix docstrings for binascii.(un)hexlifyZachary Ware2015-01-201-1/+69
| |
* | Issue #15955: Add an option to limit output size when decompressing LZMA data.Antoine Pitrou2015-01-171-14/+23
| | | | | | | | Patch by Nikolaus Rath and Martin Panter.
* | Issue #21092: Merge from 3.4.Mark Dickinson2015-01-111-3/+3
|\ \ | |/
* | Issue #15513: Added a __sizeof__ implementation for pickle classes.Serhiy Storchaka2014-12-161-1/+55
|\ \ | |/
| * Issue #15513: Added a __sizeof__ implementation for pickle classes.Serhiy Storchaka2014-12-161-1/+55
| |
* | Issue 20152, 22821: Port the fcntl module to Argument Clinic.Brett Cannon2014-11-101-0/+188
| | | | | | | | | | | | | | | | Along the way, fix an argumrnt to fcntl.fcntl to be an int instead of a long. Thanks to Serhiy Storchaka for reviewing my Clinic patch and for writing the patch to fix the long/int issue.
* | Issue #20152: Convert the cmath module to Argument Clinic.Brett Cannon2014-10-141-0/+851
| |
* | Issue #22615: Argument Clinic now supports the "type" argument for theLarry Hastings2014-10-131-3/+3
| | | | | | | | | | int converter. This permits using the int converter with enums and typedefs.
* | Issue #20152: Port the array module to Argument Clinic.Brett Cannon2014-10-101-0/+505
| |
* | Add a missing Argument Clinic fileBrett Cannon2014-08-221-0/+73
| |
* | Issue #20152: Port the spwd module to Argument Clinic.Brett Cannon2014-08-221-0/+70
| |
* | Issue #20152: Convert the grp module to Argument Clinic.Brett Cannon2014-08-221-0/+87
| |
* | Issue #22120: For functions using an unsigned integer return converter,Larry Hastings2014-08-051-2/+2
|/ | | | | Argument Clinic now generates a cast to that type for the comparison to -1 in the generated code. (This supresses a compilation warning.)
* Issue #20530: Argument Clinic's signature format has been revised again.Larry Hastings2014-02-096-86/+251
| | | | | | | 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.
* Issue #20489: Explicitly qualified expressions for default values in methods.Serhiy Storchaka2014-02-051-3/+3
|
* #Issue 20456: Several improvements and bugfixes for Argument Clinic,Larry Hastings2014-02-011-1/+17
| | | | | including correctly generating code for Clinic blocks inside C preprocessor conditional blocks.
* Issue #20326: Argument Clinic now uses a simple, unique signature toLarry Hastings2014-01-286-86/+86
| | | | | | | | | | 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).
* Issue #20395: Extract generated clinic code in Modules/_pickle.c to separate ↵Serhiy Storchaka2014-01-271-0/+457
| | | | file.
* Issue #20193: The zlib module now uses Argument Clinic.Serhiy Storchaka2014-01-261-0/+411
|
* cleanup after custom buffer converterBenjamin Peterson2014-01-261-6/+26
|
* Issue #20390: Final fix, for generating NoPositional/NoKeyword for __init__ ↵Larry Hastings2014-01-261-4/+7
| | | | calls.
* Fix for catestrophic errors in previous checkin (Argument Clinic rollup patch).Larry Hastings2014-01-262-1324/+163
|
* Issue #20390: Small fixes and improvements for Argument Clinic.Larry Hastings2014-01-264-0/+2807