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
*
GH-69564: Clarify use of octal format of mode argument in help(os.chmod) (#20...
amaajemyfren
2022-12-21
1
-2/+10
*
gh-81057: Fix a Reference Leak in the posix Module (gh-100140)
Eric Snow
2022-12-09
1
-0/+1
*
gh-81057: Move time Globals to _PyRuntimeState (gh-100122)
Eric Snow
2022-12-08
1
-25/+5
*
gh-81057: Move OS-Related Globals to _PyRuntimeState (gh-100082)
Eric Snow
2022-12-08
1
-16/+38
*
bpo-15999: Accept arbitrary values for boolean parameters. (#15609)
Serhiy Storchaka
2022-12-03
1
-8/+8
*
GH-95896: posixmodule.c: fix osdefs.h inclusion to not depend on compiler (#9...
TheShermanTanker
2022-11-26
1
-11/+3
*
gh-99537: Use Py_SETREF(var, NULL) in C code (#99687)
Victor Stinner
2022-11-23
1
-8/+4
*
gh-99547: Add isjunction methods for checking if a path is a junction (GH-99548)
Charles Machalow
2022-11-22
1
-0/+20
*
gh-99537: Use Py_SETREF() function in C code (#99656)
Victor Stinner
2022-11-22
1
-2/+1
*
gh-99337: Fix compile errors with gcc 12 on macOS (#99470)
Ronald Oussoren
2022-11-21
1
-4/+16
*
gh-99300: Use Py_NewRef() in Modules/ directory (#99469)
Victor Stinner
2022-11-14
1
-39/+21
*
gh-98610: Adjust the Optional Restrictions on Subinterpreters (GH-98618)
Eric Snow
2022-10-31
1
-0/+14
*
gh-98608: Change _Py_NewInterpreter() to _Py_NewInterpreterFromConfig() (gh-9...
Eric Snow
2022-10-26
1
-1/+1
*
gh-95023: Added os.setns and os.unshare functions (#95046)
Noam Cohen
2022-10-20
1
-0/+107
*
gh-98393: os module reject bytes-like, only accept bytes (#98394)
Victor Stinner
2022-10-18
1
-27/+5
*
gh-96288: Add a sentence to `os.mkdir`'s docstring. (#96271)
Hagai Helman Tov
2022-10-07
1
-2/+3
*
fixes gh-96078: os.sched_yield release the GIL while calling sched_yield(2). ...
Dong-hee Na
2022-10-06
1
-1/+6
*
gh-97897: Prevent os.mkfifo and os.mknod segfaults with macOS 13 SDK (GH-97944)
Ned Deily
2022-10-06
1
-8/+52
*
gh-96143: Allow Linux perf profiler to see Python calls (GH-96123)
Pablo Galindo Salgado
2022-08-30
1
-0/+5
*
gh-43414: os.get_terminal_size() now uses the actual file descriptor on Windo...
Raghunandan Bhat
2022-07-28
1
-15/+2
*
GH-93899: fix checks for eventfd flags (GH-95170)
Kumar Aditya
2022-07-27
1
-3/+7
*
gh-95174: Handle missing dup() and constants in WASI (GH-95229)
Christian Heimes
2022-07-26
1
-1/+4
*
gh-93741: Add private C API _PyImport_GetModuleAttrString() (GH-93742)
Serhiy Storchaka
2022-06-14
1
-5/+1
*
gh-90473: Make chmod a dummy on WASI, skip chmod tests (GH-93534)
Christian Heimes
2022-06-06
1
-0/+4
*
GH-93312: Add os.PIDFD_NONBLOCK flag (#93313)
Kumar Aditya
2022-05-31
1
-0/+3
*
gh-92536: PEP 623: Remove wstr and legacy APIs from Unicode (GH-92537)
Inada Naoki
2022-05-12
1
-45/+3
*
bpo-41818: Add os.login_tty() for *nix. (#29658)
Soumendra Ganguly
2022-05-05
1
-9/+60
*
gh-90887: posix module: Add more flags for fcopy_file (#31300)
David CARLIER
2022-05-03
1
-0/+3
*
bpo-46785: Fix race condition between os.stat() and unlink on Windows (GH-31858)
Itai Steinherz
2022-05-02
1
-1/+11
*
gh-64783: Fix signal.NSIG value on FreeBSD (#91929)
Victor Stinner
2022-04-25
1
-2/+4
*
gh-90623: signal.raise_signal() calls PyErr_CheckSignals() (#91756)
Victor Stinner
2022-04-21
1
-1/+10
*
gh-91731: Replace Py_BUILD_ASSERT() with static_assert() (#91730)
Victor Stinner
2022-04-20
1
-4/+8
*
bpo-46968: Add os.sysconf_names['SC_MINSIGSTKSZ'] (GH-31824)
Victor Stinner
2022-03-11
1
-0/+3
*
bpo-46606: os.getgroups() doesn't overallocate (GH-31569)
Victor Stinner
2022-02-26
1
-32/+25
*
bpo-46606: Remove redundant +1. (GH-31561)
Inada Naoki
2022-02-25
1
-1/+1
*
bpo-46606: Reduce stack usage of getgroups and setgroups (GH-31073)
Inada Naoki
2022-02-22
1
-56/+23
*
bpo-46541: Replace core use of _Py_IDENTIFIER() with statically initialized g...
Eric Snow
2022-02-08
1
-6/+5
*
bpo-40280: Address more test failures on Emscripten (GH-31050)
Christian Heimes
2022-02-05
1
-2/+2
*
bpo-46362: Ensure ntpath.abspath() uses the Windows API correctly (GH-30571)
neonene
2022-01-13
1
-2/+43
*
bpo-46315: Add ifdef HAVE_ feature checks for WASI compatibility (GH-30507)
Christian Heimes
2022-01-13
1
-0/+9
*
bpo-46222: posixmodule sendfile FreeBSD's constants updates. (GH-30327)
David CARLIER
2022-01-03
1
-0/+4
*
bpo-45855: Replaced deprecated `PyImport_ImportModuleNoBlock` with PyImport_I...
Kumar Aditya
2021-12-12
1
-1/+1
*
bpo-46008: Add _PyInterpreterState_Main(). (gh-29978)
Eric Snow
2021-12-08
1
-2/+2
*
bpo-45582: Port getpath[p].c to Python (GH-29041)
Steve Dower
2021-12-03
1
-0/+28
*
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
[next]