summaryrefslogtreecommitdiff
path: root/Modules/clinic
Commit message (Expand)AuthorAgeFilesLines
* Issue #20186: Regenerated Argument Clinic.Serhiy Storchaka2017-02-051-2/+2
* Issue #20186: Converted the tracemalloc module to Argument Clinic.Serhiy Storchaka2017-02-041-0/+192
* Issue #20186: Converted the symtable module to Argument Clinic.Serhiy Storchaka2017-02-041-0/+39
* Issue #20185: Converted the gc module to Argument Clinic.Serhiy Storchaka2017-02-041-0/+258
* Issue #29300: Use Argument Clinic for getting struct object from the format.Serhiy Storchaka2017-02-041-18/+51
* Rename struct.unpack() 2nd parameter to "buffer"Victor Stinner2017-02-021-8/+12
* Issue #29300: Convert _struct module to Argument ClinicVictor Stinner2017-02-021-0/+276
* Issue #29092: Merge 3.6.Xiang Zhang2017-01-221-2/+3
|\
| * Issue #29092: Sync os.stat's doc and docstring on path type.Xiang Zhang2017-01-221-2/+3
| |\
* | | Issue #29282: Backed out changeset b33012ef1417Mark Dickinson2017-01-211-35/+1
* | | Issue #29282: add fused multiply-add function, math.fma.Mark Dickinson2017-01-211-1/+35
* | | Issue #20186: Converted the math module to Argument Clinic.Serhiy Storchaka2017-01-191-0/+539
* | | Issue #20186: Converted the _operator module to Argument Clinic.Serhiy Storchaka2017-01-191-0/+1648
* | | Run Argument Clinic: METH_VARARGS=>METH_FASTCALLVictor Stinner2017-01-175-41/+89
* | | Run Argument Clinic: METH_VARARGS=>METH_FASTCALLVictor Stinner2017-01-1732-518/+1166
* | | Rename _PyArg_ParseStack to _PyArg_ParseStackAndKeywordsVictor Stinner2017-01-1721-133/+133
* | | Issue #29195: Removed support of deprecated undocumented keyword argumentsSerhiy Storchaka2017-01-131-48/+36
* | | Issue #28427: old keys should not remove new values fromAntoine Pitrou2016-12-273-7/+210
|\ \ \ | |/ / |/| |
| * | Issue #29004: Merge crc_hqx() doc from 3.6Martin Panter2016-12-241-2/+2
| |\ \
| * | | Issue #28765: _sre.compile() now checks the type of groupindex and indexgroupVictor Stinner2016-11-221-3/+3
| * | | Issue #28585: Restored docstring of os._isdir().Serhiy Storchaka2016-11-081-2/+3
| |\ \ \
| * | | | Issue #28586: Converted os.scandir() to Argument Clinic.Serhiy Storchaka2016-11-061-1/+204
| * | | | Merge 3.6 (issue #28544)Yury Selivanov2016-10-281-3/+3
| |\ \ \ \
| | * | | | Issue #28511: Use the "U" format instead of "O!" in PyArg_Parse*.Serhiy Storchaka2016-10-231-3/+3
* | | | | | Issue #28427: old keys should not remove new values fromAntoine Pitrou2016-12-271-1/+31
|\ \ \ \ \ \ | |_|_|_|/ / |/| | | | / | | |_|_|/ | |/| | |
| * | | | Issue #28427: old keys should not remove new values fromAntoine Pitrou2016-12-271-1/+30
* | | | | Issue #29004: Merge crc_hqx() doc from 3.5Martin Panter2016-12-241-2/+2
|\ \ \ \ \ | |/ / / / | | | | / | |_|_|/ |/| | |
| * | | Issue #29004: Document binascii.crc_hqx() implements CRC-CCITTMartin Panter2016-12-241-2/+2
* | | | Issue #28585: Restored docstring of os._isdir().Serhiy Storchaka2016-11-081-2/+3
|\ \ \ \ | |/ / / | | / / | |/ / |/| |
| * | Issue #28585: Restored docstring of os._isdir().Serhiy Storchaka2016-11-081-2/+3
* | | Issue #28544: Implement asyncio.Task in C.Yury Selivanov2016-10-281-0/+520
| |/ |/|
* | Issue #28156: Export os.getpid() conditionallyBerker Peksag2016-09-151-1/+9
* | Issue #27810: Rerun Argument Clinic on all modulesVictor Stinner2016-09-0920-390/+391
* | Issue #27781: Change file system encoding on Windows to UTF-8 (PEP 529)Steve Dower2016-09-082-32/+90
* | clinic: PY_LONG_LONG -> long longBenjamin Peterson2016-09-081-49/+1
* | Issue #27959: Adds oem encoding, alias ansi to mbcs, move aliasmbcs to codec ...Steve Dower2016-09-061-1/+80
* | Add os.getrandom()Victor Stinner2016-09-061-1/+40
* | Run Argument Clinic on posixmodule.cVictor Stinner2016-09-061-7/+7
* | Issue #27928: Add scrypt (password-based key derivation function) to hashlib ...Christian Heimes2016-09-061-0/+60
* | merge 3.5Benjamin Peterson2016-09-051-3/+3
|\ \ | |/
| * do not pretend to support passing a fd to access()Benjamin Peterson2016-09-051-3/+3
* | Issue #27866: Add SSLContext.get_ciphers() method to get a list of all enable...Christian Heimes2016-09-061-1/+26
* | Issue #16764: Support keyword arguments to zlib.decompress(). Patch bySerhiy Storchaka2016-08-151-9/+13
* | Issue #27574: Decreased an overhead of parsing keyword arguments in functionsSerhiy Storchaka2016-08-1419-267/+391
* | Issue #27130: Merge zlib 64-bit fixes from 3.5Martin Panter2016-07-2333-637/+1249
|\ \ | |/ |/|
| * - Issue #27332: Fixed the type of the first argument of module-level functionsSerhiy Storchaka2016-07-0728-756/+746
| |\
| * \ merge 3.5 (#24557)Benjamin Peterson2016-07-061-3/+3
| |\ \
| * | | Issue #26243: Only the level argument to zlib.compress() is keyword argumentSerhiy Storchaka2016-06-251-3/+3
| * | | Clarify documentation for os.fspath().Brett Cannon2016-06-091-4/+4
| * | | Issue #26305: Argument Clinic now uses braces in C code as required by PEP 7.Serhiy Storchaka2016-06-0933-604/+1175