| Commit message (Expand) | Author | Age | Files | Lines |
* | Fix typos in docs, error messages and comments (#123336) | Wulian | 2024-08-28 | 1 | -1/+1 |
|
|
* | gh-121905: Consistently use "floating-point" instead of "floating point" (GH-... | Serhiy Storchaka | 2024-07-19 | 1 | -2/+2 |
|
|
* | gh-120586: Fix several "unused function" warnings in `posixmodule.c` (#120588) | Nikita Sobolev | 2024-06-17 | 1 | -1/+3 |
|
|
* | gh-120057: Add os.environ.refresh() method (#120059) | Victor Stinner | 2024-06-10 | 1 | -0/+15 |
|
|
* | gh-117657: Fix TSAN race involving import lock (#118523) | Sam Gross | 2024-06-06 | 1 | -9/+2 |
|
|
* | gh-119842: Honor PyOS_InputHook in the new REPL (GH-119843) | Pablo Galindo Salgado | 2024-06-04 | 1 | -0/+33 |
|
|
* | gh-89928: Fix integer conversion of device numbers (GH-31794) | Serhiy Storchaka | 2024-06-04 | 1 | -15/+73 |
|
|
* | gh-118263: Add additional arguments to path_t (Argument Clinic type) in posix... | Nice Zombies | 2024-05-24 | 1 | -193/+227 |
|
|
* | gh-118507 : Refactor `nt._path_is*` to improve applicability for other cases ... | Nice Zombies | 2024-05-21 | 1 | -309/+290 |
|
|
* | gh-118486: Simplify test_win32_mkdir_700 to check the exact ACL (GH-119056) | Steve Dower | 2024-05-15 | 1 | -1/+1 |
|
|
* | gh-118773: Use language-invariant SDDL string instead of aliases for ACLs. (G... | Steve Dower | 2024-05-09 | 1 | -154/+22 |
|
|
* | gh-116322: Add Py_mod_gil module slot (#116882) | Brett Simmers | 2024-05-03 | 1 | -0/+1 |
|
|
* | gh-118486: Switch mkdir(mode=0o700) on Windows to use OWNER RIGHTS instead of... | Steve Dower | 2024-05-02 | 1 | -3/+16 |
|
|
* | gh-118486: Support mkdir(mode=0o700) on Windows (GH-118488) | Steve Dower | 2024-05-02 | 1 | -2/+156 |
|
|
* | gh-118379: Use PyTuple_Pack instead of Py_BuildValue if possible (GH-118381) | Nice Zombies | 2024-04-30 | 1 | -1/+1 |
|
|
* | gh-102511: Speed up os.path.splitroot() with native helpers (GH-118089) | Nice Zombies | 2024-04-25 | 1 | -0/+44 |
|
|
* | gh-117267: Ensure DirEntry.stat().st_ctime still contains creation time durin... | Steve Dower | 2024-04-03 | 1 | -0/+4 |
|
|
* | GH-114847: Raise FileNotFoundError when getcwd() returns '(unreachable)' (#11... | Barney Gale | 2024-04-03 | 1 | -0/+14 |
|
|
* | gh-116522: Refactor `_PyThreadState_DeleteExcept` (#117131) | Sam Gross | 2024-03-21 | 1 | -0/+8 |
|
|
* | gh-105716: Update interp->threads.main After Fork (gh-117049) | Eric Snow | 2024-03-21 | 1 | -0/+4 |
|
|
* | gh-116522: Stop the world before fork() and during shutdown (#116607) | Sam Gross | 2024-03-21 | 1 | -7/+21 |
|
|
* | gh-113964: Don't prevent new threads until all non-daemon threads exit (#116677) | Sam Gross | 2024-03-19 | 1 | -3/+3 |
|
|
* | gh-116195: Implements a fast path for nt.getppid (GH-116205) | vxiiduu | 2024-03-14 | 1 | -2/+84 |
|
|
* | gh-116541: Handle errors correctly in `_pystatvfs_fromstructstatvfs` (#116542) | Nikita Sobolev | 2024-03-12 | 1 | -32/+36 |
|
|
* | gh-110850: Fix _PyTime_FromSecondsDouble() API (#116606) | Victor Stinner | 2024-03-11 | 1 | -10/+20 |
|
|
* | gh-116520: Fix error handling in `os_get_terminal_size_impl` in `posixmodule`... | Nikita Sobolev | 2024-03-09 | 1 | -6/+17 |
|
|
* | gh-116437: Use new C API PyDict_Pop() to simplify the code (GH-116438) | Serhiy Storchaka | 2024-03-07 | 1 | -4/+4 |
|
|
* | gh-116448: Handle errors correctly in `os_waitid_impl` in `posixmodule` (#116... | Nikita Sobolev | 2024-03-07 | 1 | -9/+19 |
|
|
* | gh-116404: Handle errors correctly in `wait_helper` in `posixmodule` (#116405) | Nikita Sobolev | 2024-03-06 | 1 | -26/+29 |
|
|
* | gh-110850: Cleanup pycore_time.h includes (#115724) | Victor Stinner | 2024-02-20 | 1 | -0/+1 |
|
|
* | gh-110850: Replace _PyTime_t with PyTime_t (#115719) | Victor Stinner | 2024-02-20 | 1 | -1/+1 |
|
|
* | gh-115103: Implement delayed memory reclamation (QSBR) (#115180) | Sam Gross | 2024-02-16 | 1 | -0/+1 |
|
|
* | gh-114570: Add PythonFinalizationError exception (#115352) | Victor Stinner | 2024-02-14 | 1 | -3/+3 |
|
|
* | gh-87804: Fix the refleak in error handling of `_pystatvfs_fromstructstatfs` ... | Nikita Sobolev | 2024-02-12 | 1 | -8/+9 |
|
|
* | gh-87804: Fix error handling and style in `_pystatvfs_fromstructstatfs` (#115... | Nikita Sobolev | 2024-02-12 | 1 | -31/+33 |
|
|
* | GH-87804: Fix counter overflow in statvfs on macOS (#99570) | Ronald Oussoren | 2024-02-10 | 1 | -0/+101 |
|
|
* | gh-110481: Implement inter-thread queue for biased reference counting (#114824) | Sam Gross | 2024-02-09 | 1 | -0/+4 |
|
|
* | gh-112066: Use `PyDict_SetDefaultRef` in place of `PyDict_SetDefault`. (#112211) | Sam Gross | 2024-02-07 | 1 | -1/+1 |
|
|
* | gh-82626: Emit a warning when bool is used as a file descriptor (GH-111275) | Serhiy Storchaka | 2024-02-05 | 1 | -0/+7 |
|
|
* | gh-85984: Add POSIX pseudo-terminal functions. (GH-102413) | Soumendra Ganguly | 2024-01-29 | 1 | -0/+147 |
|
|
* | gh-111877: Fixes stat() handling for inaccessible files on Windows (GH-113716) | Steve Dower | 2024-01-12 | 1 | -6/+10 |
|
|
* | gh-77046: os.pipe() sets _O_NOINHERIT flag on fds (#113817) | Victor Stinner | 2024-01-10 | 1 | -2/+2 |
|
|
* | gh-113536: Expose `os.waitid` on macOS (#113542) | Ronald Oussoren | 2024-01-01 | 1 | -7/+7 |
|
|
* | bpo-11102: Make configure enable major(), makedev(), and minor() on HP-UX (GH... | Zackery Spytz | 2023-12-28 | 1 | -4/+5 |
|
|
* | gh-113191: Add support of os.fchmod() on Windows (GH-113192) | Serhiy Storchaka | 2023-12-24 | 1 | -24/+56 |
|
|
* | gh-113119: Fix the macOS framework installer build (#113268) | Gregory P. Smith | 2023-12-19 | 1 | -1/+10 |
|
|
* | gh-113117: Support posix_spawn in subprocess.Popen with close_fds=True (#113118) | Jakub Kulík | 2023-12-17 | 1 | -0/+24 |
|
|
* | gh-113119 fix environment handling in subprocess.Popen when posix_spawn is us... | Jakub Kulík | 2023-12-17 | 1 | -6/+10 |
|
|
* | gh-59616: Support os.chmod(follow_symlinks=True) and os.lchmod() on Windows (... | Serhiy Storchaka | 2023-12-14 | 1 | -18/+65 |
|
|
* | gh-112730: Use color to highlight error locations (gh-112732) | Pablo Galindo Salgado | 2023-12-06 | 1 | -0/+22 |
|
|