summaryrefslogtreecommitdiffstats
path: root/PC/clinic
Commit message (Collapse)AuthorAgeFilesLines
* bpo-9566: Change HANDLE argument parsing to unsigned in msvcrtmodule.c (#2904)Segev Finer2017-07-271-3/+3
|
* bpo-9566: Fix some Windows x64 compiler warnings (#2492)Segev Finer2017-07-261-14/+14
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * bpo-9566: Silence liblzma warnings * bpo-9566: Silence tcl warnings * bpo-9566: Silence tk warnings * bpo-9566: Silence tix warnings * bpo-9566: Fix some library warnings * bpo-9566: Fix msvcrtmodule.c warnings * bpo-9566: Silence _bz2 warnings * bpo-9566: Fixed some _ssl warnings * bpo-9566: Fix _msi warnings * bpo-9566: Silence _ctypes warnings * Revert "bpo-9566: Fixed some _ssl warnings" This reverts commit a639001c949ba53338a9ee047d2ec1efd2505e6f. * bpo-9566: Also consider NULL as a possible error in HANDLE_return_converter * bpo-9566: whitespace fixes
* bpo-29464: Rename METH_FASTCALL to METH_FASTCALL|METH_KEYWORDS and make (#1955)Serhiy Storchaka2017-07-034-99/+31
| | | | | the bare METH_FASTCALL be used for functions with positional-only parameters.
* bpo-30600: Fix error messages (condition order in Argument Clinic) (#2051)Sylvain2017-06-102-53/+53
| | | | | | | | 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".
* bpo-30022: Get rid of using EnvironmentError and IOError (except test… (#1051)Serhiy Storchaka2017-04-161-3/+3
|
* Run Argument Clinic: METH_VARARGS=>METH_FASTCALLVictor Stinner2017-01-174-55/+123
| | | | | Issue #29286. Run Argument Clinic to get the new faster METH_FASTCALL calling convention for functions using only positional arguments.
* Rename _PyArg_ParseStack to _PyArg_ParseStackAndKeywordsVictor Stinner2017-01-173-10/+10
| | | | Issue #29286.
* Issue #28217: Adds _testconsole module to test console input. Fixes some ↵Steve Dower2016-10-031-0/+82
| | | | issues found by the tests.
* Issue #27810: Rerun Argument Clinic on all modulesVictor Stinner2016-09-102-26/+26
|
* clinic: PY_LONG_LONG -> long longBenjamin Peterson2016-09-081-5/+5
|
* Closes #27982: Allow keyword arguments to winsound functionsZachary Ware2016-09-061-17/+23
|
* Closes #11620: Fix support for SND_MEMORY in winsound.PlaySound.Zachary Ware2016-09-051-4/+4
| | | | Based on a patch by Tim Lesher.
* Issue #27574: Decreased an overhead of parsing keyword arguments in functionsSerhiy Storchaka2016-08-141-11/+16
| | | | implemented with using Argument Clinic.
* - Issue #27332: Fixed the type of the first argument of module-level functionsSerhiy Storchaka2016-07-073-90/+89
|\ | | | | | | generated by Argument Clinic. Patch by Petr Viktorin.
| * Issue #27332: Fixed the type of the first argument of module-level functionsSerhiy Storchaka2016-07-073-90/+89
| | | | | | | | generated by Argument Clinic. Patch by Petr Viktorin.
* | Issue #26305: Argument Clinic now uses braces in C code as required by PEP 7.Serhiy Storchaka2016-06-093-53/+103
| |
* | Regenerate Argument Clinic code for issue #23026.Serhiy Storchaka2016-06-091-2/+4
|/
* Issue #26778: Fixed "a/an/and" typos in code comment and documentation.Serhiy Storchaka2016-04-171-3/+3
|
* Issue #23995: Removes _WCONIO_DEFINED check as the wchar_t console functions ↵Steve Dower2015-05-141-33/+1
| | | | are always available.
* Issue #20172: Update clinicizations to current clinic.Zachary Ware2015-05-133-102/+62
|
* Issue #20172: Convert the msvcrt module to Argument Clinic.Zachary Ware2015-05-131-0/+604
|
* Issue #20172: Convert the winreg module to Argument Clinic.Zachary Ware2015-05-131-0/+1078
|
* Issue #20172: Convert the winsound module to Argument Clinic.Zachary Ware2015-05-131-0/+103