index
:
cpython.git
2.7
3.3
3.4
3.5
3.6
benjamin-clang
benjamin-iteration-torture
buildbot-custom
master
https://github.com/python/cpython.git
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
path:
root
/
Modules
/
clinic
/
posixmodule.c.h
Commit message (
Expand
)
Author
Age
Files
Lines
*
bpo-37034: Display argument name on errors with keyword arguments with Argume...
RĂ©mi Lapeyre
2019-08-29
1
-8/+8
*
bpo-37834: Normalise handling of reparse points on Windows (GH-15231)
Steve Dower
2019-08-21
1
-18/+1
*
Fix typos in comments, docs and test names (#15018)
Min ho Kim
2019-07-30
1
-2/+2
*
bpo-26826: Expose copy_file_range in the os module (GH-7255)
Pablo Galindo
2019-05-31
1
-1/+107
*
bpo-26836: Add os.memfd_create() (#13567)
Zackery Spytz
2019-05-29
1
-1/+60
*
bpo-31904: Add posix module support for VxWorks (GH-12118)
pxinwr
2019-05-21
1
-5/+5
*
bpo-36085: Enable better DLL resolution on Windows (GH-12302)
Steve Dower
2019-03-29
1
-1/+97
*
bpo-36127: Argument Clinic: inline parsing code for keyword parameters. (GH-1...
Serhiy Storchaka
2019-03-14
1
-205/+1346
*
Remove stray quote in os.replace docstring. (GH-11556)
Anthony Sottile
2019-02-13
1
-2/+2
*
bpo-35537: Add setsid parameter to os.posix_spawn() and os.posix_spawnp() (GH...
Joannah Nanjekye
2019-02-01
1
-18/+26
*
bpo-35674: Add os.posix_spawnp() (GH-11554)
Joannah Nanjekye
2019-01-16
1
-1/+74
*
bpo-35582: Argument Clinic: inline parsing code for positional parameters. (G...
Serhiy Storchaka
2019-01-11
1
-57/+470
*
bpo-23867: Argument Clinic: inline parsing code for a single positional param...
Serhiy Storchaka
2018-12-25
1
-26/+118
*
bpo-35490: Remove the DecodeFSDefault return converter in AC. (#11152)
Serhiy Storchaka
2018-12-17
1
-8/+3
*
bpo-35489: Use "const Py_UNICODE *" for the Py_UNICODE converter in AC. (GH-1...
Serhiy Storchaka
2018-12-14
1
-5/+6
*
bpo-33012: Fix invalid function cast warnings with gcc 8 in Argument Clinic. ...
Serhiy Storchaka
2018-11-27
1
-110/+110
*
bpo-29341: Clarify that path-like objects are accepted in some os methods (GH...
BNMetrics
2018-11-02
1
-11/+11
*
closes bpo-34862: Guard definition of convert_sched_param with POSIX_SPAWN_SE...
William Orr
2018-10-02
1
-3/+3
*
bpo-33721: Make some os.path functions and pathlib.Path methods be tolerant ...
Serhiy Storchaka
2018-09-18
1
-22/+1
*
Convert os.readlink() to Argument Clinic. (GH-8778)
Serhiy Storchaka
2018-09-17
1
-1/+131
*
bpo-20104: Change the file_actions parameter of os.posix_spawn(). (GH-6725)
Serhiy Storchaka
2018-09-08
1
-5/+5
*
bpo-20104: Add flag capabilities to posix_spawn (GH-6693)
Pablo Galindo
2018-09-07
1
-9/+30
*
bpo-33671 / shutil.copyfile: use memoryview() with dynamic size on Windows (#...
Giampaolo Rodola
2018-06-19
1
-2/+2
*
bpo-33671: efficient zero-copy for shutil.copy* functions (Linux, OSX and Win...
Giampaolo Rodola
2018-06-12
1
-1/+39
*
bpo-20104: Improve error handling and fix a reference leak in os.posix_spawn(...
Serhiy Storchaka
2018-05-01
1
-2/+2
*
bpo-32556: nt._getfinalpathname, nt._getvolumepathname and nt._getdiskusage n...
Steve Dower
2018-02-22
1
-15/+24
*
bpo-20104: Expose `posix_spawn` in the os module (GH-5109)
Pablo Galindo
2018-01-29
1
-1/+53
*
bpo-31368: Expose preadv and pwritev in the os module (#5239)
Pablo Galindo
2018-01-27
1
-1/+119
*
return the new file descriptor from os.dup2 (closes bpo-32441) (#5041)
Benjamin Peterson
2017-12-29
1
-3/+8
*
bpo-32240: Add the const qualifier to declarations of PyObject* array argumen...
Serhiy Storchaka
2017-12-15
1
-104/+104
*
bpo-29464: Rename METH_FASTCALL to METH_FASTCALL|METH_KEYWORDS and make (#1955)
Serhiy Storchaka
2017-07-03
1
-244/+104
*
bpo-30600: Fix error messages (condition order in Argument Clinic) (#2051)
Sylvain
2017-06-10
1
-106/+106
*
bpo-16500: Don't use string constants for os.register_at_fork() behavior (#1834)
Gregory P. Smith
2017-05-29
1
-17/+21
*
bpo-16500: Allow registering at-fork handlers (#1715)
Antoine Pitrou
2017-05-27
1
-1/+49
*
bpo-25996: Added support of file descriptors in os.scandir() on Unix. (#502)
Serhiy Storchaka
2017-03-30
1
-2/+2
*
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
*
|
|
Rename _PyArg_ParseStack to _PyArg_ParseStackAndKeywords
Victor Stinner
2017-01-17
1
-67/+67
*
|
|
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
*
|
Issue #27810: Rerun Argument Clinic on all modules
Victor Stinner
2016-09-10
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
*
|
Run Argument Clinic on posixmodule.c
Victor Stinner
2016-09-06
1
-7/+7
*
|
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
[next]