Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | bpo-30600: Fix error messages (condition order in Argument Clinic) (#2051) | Sylvain | 2017-06-10 | 1 | -106/+106 | |
| | | | | | | | | 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-16500: Don't use string constants for os.register_at_fork() behavior (#1834) | Gregory P. Smith | 2017-05-29 | 1 | -17/+21 | |
| | | | | Instead use keyword only arguments to os.register_at_fork for each of the scenarios. Updates the documentation for clarity. | |||||
* | bpo-16500: Allow registering at-fork handlers (#1715) | Antoine Pitrou | 2017-05-27 | 1 | -1/+49 | |
| | | | | | | | | | | | | * bpo-16500: Allow registering at-fork handlers * Address Serhiy's comments * Add doc for new C API * Add doc for new Python-facing function * Add NEWS entry + doc nit | |||||
* | bpo-25996: Added support of file descriptors in os.scandir() on Unix. (#502) | Serhiy Storchaka | 2017-03-30 | 1 | -2/+2 | |
| | | | | os.fwalk() is sped up by 2 times by using os.scandir(). | |||||
* | Issue #29092: Merge 3.6. | Xiang Zhang | 2017-01-22 | 1 | -2/+3 | |
|\ | ||||||
| * | Issue #29092: Sync os.stat's doc and docstring on path type. | Xiang Zhang | 2017-01-22 | 1 | -2/+3 | |
| |\ | ||||||
* | | | Run Argument Clinic: METH_VARARGS=>METH_FASTCALL | Victor Stinner | 2017-01-17 | 1 | -106/+246 | |
| | | | | | | | | | | | | | | | 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_ParseStackAndKeywords | Victor Stinner | 2017-01-17 | 1 | -67/+67 | |
| | | | | | | | | | | | | Issue #29286. | |||||
* | | | Issue #28585: Restored docstring of os._isdir(). | Serhiy Storchaka | 2016-11-08 | 1 | -2/+3 | |
|\ \ \ | |/ / | ||||||
| * | | Issue #28585: Restored docstring of os._isdir(). | Serhiy Storchaka | 2016-11-08 | 1 | -2/+3 | |
| |\ \ | | |/ | ||||||
| | * | Issue #28585: Restored docstring of os._isdir(). | Serhiy Storchaka | 2016-11-08 | 1 | -2/+3 | |
| | | | ||||||
* | | | Issue #28586: Converted os.scandir() to Argument Clinic. | Serhiy Storchaka | 2016-11-06 | 1 | -1/+204 | |
|/ / | ||||||
* | | Issue #28156: Export os.getpid() conditionally | Berker Peksag | 2016-09-15 | 1 | -1/+9 | |
| | | | | | | | | Patch by Ed Schouten. | |||||
* | | Issue #27810: Rerun Argument Clinic on all modules | Victor Stinner | 2016-09-09 | 1 | -191/+192 | |
| | | ||||||
* | | Issue #27781: Change file system encoding on Windows to UTF-8 (PEP 529) | Steve Dower | 2016-09-08 | 1 | -19/+77 | |
| | | ||||||
* | | Add os.getrandom() | Victor Stinner | 2016-09-06 | 1 | -1/+40 | |
| | | | | | | | | | | | | | | Issue #27778: Expose the Linux getrandom() syscall as a new os.getrandom() function. This change is part of the PEP 524. | |||||
* | | Run Argument Clinic on posixmodule.c | Victor Stinner | 2016-09-06 | 1 | -7/+7 | |
| | | | | | | | | Issue #17884. | |||||
* | | merge 3.5 | Benjamin Peterson | 2016-09-05 | 1 | -3/+3 | |
|\ \ | |/ | ||||||
| * | do not pretend to support passing a fd to access() | Benjamin Peterson | 2016-09-05 | 1 | -3/+3 | |
| | | ||||||
* | | Issue #27574: Decreased an overhead of parsing keyword arguments in functions | Serhiy Storchaka | 2016-08-14 | 1 | -125/+187 | |
| | | | | | | | | implemented with using Argument Clinic. | |||||
* | | - Issue #27332: Fixed the type of the first argument of module-level functions | Serhiy Storchaka | 2016-07-07 | 1 | -320/+316 | |
|\ \ | |/ | | | | | generated by Argument Clinic. Patch by Petr Viktorin. | |||||
| * | Issue #27332: Fixed the type of the first argument of module-level functions | Serhiy Storchaka | 2016-07-07 | 1 | -318/+314 | |
| | | | | | | | | generated by Argument Clinic. Patch by Petr Viktorin. | |||||
* | | Clarify documentation for os.fspath(). | Brett Cannon | 2016-06-09 | 1 | -4/+4 | |
| | | ||||||
* | | Issue #26305: Argument Clinic now uses braces in C code as required by PEP 7. | Serhiy Storchaka | 2016-06-09 | 1 | -161/+321 | |
| | | ||||||
* | | issue27186: add C version of os.fspath(); patch by Jelle Zijlstra | Ethan Furman | 2016-06-04 | 1 | -1/+33 | |
| | | ||||||
* | | Issue #23738: Merge 3.5 into 3.6 | Martin Panter | 2015-09-09 | 1 | -3/+3 | |
|\ \ | |/ | ||||||
| * | Issue #23738: Merge 3.4 into 3.5 | Martin Panter | 2015-09-09 | 1 | -3/+3 | |
| | | ||||||
* | | Issue #23530: fix clinic comment. | Charles-François Natali | 2015-08-13 | 1 | -3/+7 | |
|/ | ||||||
* | Converted os._getfullpathname() and os._isdir() to Argument Clinic. | Serhiy Storchaka | 2015-05-13 | 1 | -1/+73 | |
| | ||||||
* | Issue #24007: Argument Clinic now writes the format of PyArg_Parse*() at the | Serhiy Storchaka | 2015-04-24 | 1 | -280/+126 | |
| | | | | same line as function name. | |||||
* | Issue #23944: Argument Clinic now wraps long impl prototypes at column 78. | Larry Hastings | 2015-04-14 | 1 | -24/+47 | |
| | ||||||
* | Issue #23668: Regenerates posixmodule.c.h for new ifdefs | Steve Dower | 2015-04-12 | 1 | -5/+5 | |
| | ||||||
* | Issue #23492: Argument Clinic now generates argument parsing code with | Serhiy Storchaka | 2015-04-04 | 1 | -88/+88 | |
| | | | | PyArg_Parse instead of PyArg_ParseTuple if possible. | |||||
* | Issue #23501: Argumen Clinic now generates code into separate files by default. | Serhiy Storchaka | 2015-04-03 | 1 | -0/+5850 | |