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
/
posixmodule.c
Commit message (
Expand
)
Author
Age
Files
Lines
*
bpo-40280: Move hard-coded feature checks to configure (GH-29789)
Christian Heimes
2021-11-26
1
-20/+0
*
bpo-41498: Fix build on platforms without sigset_t (GH-29770)
Christian Heimes
2021-11-25
1
-0/+8
*
bpo-45434: pyport.h no longer includes <stdlib.h> (GH-28914)
Victor Stinner
2021-10-13
1
-1/+2
*
pycore_pystate.h no longer redefines PyThreadState_GET() (GH-28921)
Victor Stinner
2021-10-13
1
-13/+11
*
bpo-45439: Move _PyObject_CallNoArgs() to pycore_call.h (GH-28895)
Victor Stinner
2021-10-12
1
-1/+2
*
bpo-45439: Rename _PyObject_CallNoArg() to _PyObject_CallNoArgs() (GH-28891)
Victor Stinner
2021-10-11
1
-3/+3
*
Clean up initialization __class_getitem__ with Py_GenericAlias. (GH-28450)
Serhiy Storchaka
2021-09-19
1
-1/+1
*
bpo-44219: Release the GIL during isatty syscalls (GH-28250)
Vincent Michel
2021-09-09
1
-0/+2
*
bpo-45012: Release GIL around stat in os.scandir (GH-28085)
Stanisław Skonieczny
2021-09-07
1
-2/+8
*
bpo-44321: Adds `os.EX_OK` for Windows (GH-26559)
Samuel Marks
2021-06-24
1
-0/+4
*
bpo-43916: Remove _disabled_new() function (GH-25745)
Victor Stinner
2021-04-30
1
-12/+3
*
bpo-30555: Fix WindowsConsoleIO fails in the presence of fd redirection (GH-1...
Segev Finer
2021-04-23
1
-4/+2
*
bpo-43538: Add extra arguments to os.startfile (GH-25538)
Steve Dower
2021-04-23
1
-3/+22
*
bpo-38222: Check specifically for a drive, not just a colon (GH-25540)
Steve Dower
2021-04-22
1
-2/+2
*
bpo-38822: Fixed os.stat failing on inaccessible directories. (GH-25527)
Steve Dower
2021-04-22
1
-2/+21
*
bpo-40137: Add pycore_moduleobject.h internal header (GH-25507)
Victor Stinner
2021-04-21
1
-1/+2
*
bpo-43105: Importlib now resolves relative paths when creating module spec ob...
Steve Dower
2021-04-07
1
-0/+49
*
bpo-43106: Add os.O_EVTONLY/O_FSYNC/O_SYMLINK/O_NOFOLLOW_ANY (GH-24428)
Dong-hee Na
2021-02-03
1
-1/+12
*
bpo-42692: fix __builtin_available check on older compilers (GH-23873)
Joshua Root
2021-01-04
1
-1/+7
*
bpo-42655: Fix subprocess extra_groups gid conversion (GH-23762)
Jakub Kulík
2020-12-29
1
-4/+4
*
bpo-41625: Do not add os.splice on AIX due to compatibility issues (GH-23608)
Pablo Galindo
2020-12-02
1
-1/+1
*
bpo-42519: Replace PyMem_MALLOC() with PyMem_Malloc() (GH-23586)
Victor Stinner
2020-12-01
1
-15/+16
*
bpo-1635741: Convert _imp to multi-phase init (GH-23378)
Victor Stinner
2020-11-18
1
-1/+1
*
bpo-41625: Add a guard for Linux for splice() constants in the os module (GH-...
Pablo Galindo
2020-11-17
1
-1/+1
*
bpo-41625: Expose the splice() system call in the os module (GH-21947)
Pablo Galindo
2020-11-17
1
-1/+77
*
bpo-41001: Add os.eventfd() (#20930)
Christian Heimes
2020-11-13
1
-0/+91
*
bpo-42237: Fix os.sendfile() on illumos (GH-23154)
Jakub Stasiak
2020-11-12
1
-0/+15
*
bpo-41100: Support macOS 11 and Apple Silicon (GH-22855)
Ronald Oussoren
2020-11-08
1
-175/+647
*
bpo-42029: Remove IRIX code (GH-23023)
Victor Stinner
2020-10-29
1
-4/+3
*
bpo-42152: Use PyDict_Contains and PyDict_SetDefault if appropriate. (GH-22986)
Serhiy Storchaka
2020-10-26
1
-7/+5
*
bpo-40422: Move _Py_closerange to fileutils.c (GH-22680)
Kyle Evans
2020-10-13
1
-76/+1
*
bpo-40422: Move _Py_*_SUPPRESS_IPH bits into _Py_closerange (GH-22672)
Kyle Evans
2020-10-12
1
-2/+2
*
bpo-40423: Optimization: use close_range(2) if available (GH-22651)
Kyle Evans
2020-10-11
1
-3/+14
*
bpo-40422: create a common _Py_closerange API (GH-19754)
Kyle Evans
2020-10-11
1
-24/+46
*
bpo-41985: Add _PyLong_FileDescriptor_Converter and AC converter for "fildes"...
Serhiy Storchaka
2020-10-09
1
-17/+1
*
bpo-41687: Fix error handling in Solaris sendfile implementation (GH-22128)
Jakub Kulík
2020-09-09
1
-3/+2
*
bpo-41687: Fix sendfile implementation to work with Solaris (#22040)
Jakub Kulík
2020-09-05
1
-0/+19
*
bpo-41440: add os.cpu_count() support for VxWorks RTOS (GH-21685)
pxinwr
2020-08-07
1
-0/+5
*
bpo-36346: Make using the legacy Unicode C API optional (GH-21437)
Serhiy Storchaka
2020-07-10
1
-9/+61
*
bpo-41056: Use the fildes converter for fd to please Coverity. (GH-21011)
Gregory P. Smith
2020-06-20
1
-2/+2
*
PyOS_AfterFork_Child() pass tstate to _PyEval_ReInitThreads() (GH-20598)
Victor Stinner
2020-06-02
1
-2/+6
*
PyOS_AfterFork_Child() uses PyStatus (GH-20596)
Victor Stinner
2020-06-02
1
-5/+32
*
bpo-40792: Make the result of PyNumber_Index() always having exact type int. ...
Serhiy Storchaka
2020-05-28
1
-3/+3
*
bpo-37129: Add os.RWF_APPEND flag for os.pwritev() (GH-20336)
YoSTEALTH
2020-05-27
1
-1/+5
*
bpo-37999: No longer use __int__ in implicit integer conversions. (GH-15636)
Serhiy Storchaka
2020-05-26
1
-5/+0
*
bpo-40653: Move _dirnameW out of #ifdef HAVE_SYMLINK/#endif (GH-20144)
Minmin Gong
2020-05-18
1
-2/+6
*
bpo-40549: posixmodule.c uses defining_class (GH-20075)
Victor Stinner
2020-05-14
1
-81/+97
*
bpo-40549: Convert posixmodule.c to multiphase init (GH-19982)
Victor Stinner
2020-05-10
1
-117/+134
*
bpo-40453: Add PyConfig._isolated_subinterpreter (GH-19820)
Victor Stinner
2020-05-01
1
-3/+4
*
bpo-38061: os.closerange() uses closefrom() on FreeBSD (GH-19696)
Victor Stinner
2020-04-24
1
-7/+20
[next]