Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Fix Issue #21528 - Fix documentation typos | Donald Stufft | 2014-05-20 | 1 | -4/+4 |
| | |||||
* | #Issue 20456: Several improvements and bugfixes for Argument Clinic, | Larry Hastings | 2014-02-01 | 1 | -72/+100 |
| | | | | | including correctly generating code for Clinic blocks inside C preprocessor conditional blocks. | ||||
* | Documentation fixes, including fixing "suspicious" problems. | Larry Hastings | 2014-01-26 | 1 | -50/+64 |
| | |||||
* | #20348: fix headers markup in Argument Clinic howto. Patch by Moritz Neeb. | Ezio Melotti | 2014-01-25 | 1 | -6/+2 |
| | |||||
* | Doc fixes for Argument Clinic. | Larry Hastings | 2014-01-22 | 1 | -6/+18 |
| | |||||
* | Issue #20294: Argument Clinic now supports argument parsing for __new__ and | Larry Hastings | 2014-01-19 | 1 | -2/+21 |
| | | | | __init__ functions. | ||||
* | Doc improvements for Clinic howto "Goals" section. | Larry Hastings | 2014-01-18 | 1 | -9/+9 |
| | |||||
* | Issue #20287: Argument Clinic's output is now configurable, allowing | Larry Hastings | 2014-01-18 | 1 | -1/+319 |
| | | | | delaying its output or even redirecting it to a separate file. | ||||
* | Issue #20226: Major improvements to Argument Clinic. | Larry Hastings | 2014-01-16 | 1 | -42/+227 |
| | | | | | | | | | | | | | | | | | | | | | | | * 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. | ||||
* | Issue #20268: Argument Clinic now supports cloning the parameters | Larry Hastings | 2014-01-15 | 1 | -0/+43 |
| | | | | and return converter from existing functions. | ||||
* | Minor doc fix in Clinic howto. | Larry Hastings | 2014-01-12 | 1 | -3/+4 |
| | |||||
* | Issue #20214: Fixed a number of small issues and documentation errors in | Larry Hastings | 2014-01-12 | 1 | -20/+120 |
| | | | | Argument Clinic (see issue for details). | ||||
* | Closes #20200: Argument Clinic custom converter example should be in a | Zachary Ware | 2014-01-10 | 1 | -2/+2 |
| | | | | | 'python' clinic block, not a 'clinic' clinic block. Patch written by Ryan Smith-Roberts. | ||||
* | Issue #19273: The marker comments Argument Clinic uses have been changed | Larry Hastings | 2014-01-07 | 1 | -63/+63 |
| | | | | to improve readability. | ||||
* | Issue #20141: Improved Argument Clinic's support for the PyArg_Parse "O!" | Larry Hastings | 2014-01-07 | 1 | -12/+15 |
| | | | | format unit. | ||||
* | Argument Clinic: fixed test suite, improved howto. | Larry Hastings | 2014-01-05 | 1 | -87/+154 |
| | |||||
* | Issue #19659: Added documentation for Argument Clinic. | Larry Hastings | 2014-01-04 | 1 | -0/+900 |