summaryrefslogtreecommitdiffstats
path: root/Python/fileutils.c
Commit message (Expand)AuthorAgeFilesLines
* gh-42400: Fix buffer overflow in _Py_wrealpath() for very long paths (#141529)Shamil2025-11-181-3/+4
* gh-55531: Implement `normalize_encoding` in C (#136643)Stan Ulbrych2025-10-301-2/+2
* gh-139353: Rename formatter_unicode.c to unicode_formatter.c (#139723)Victor Stinner2025-10-081-5/+3
* Fix GetNamedPipeHandleStateW on non-desktop Windows API partitions (GH-134049)Max Bachmann2025-05-151-0/+37
* gh-124476: Fix decoding from the locale encoding in the C.UTF-8 locale (GH-13...Serhiy Storchaka2025-04-141-9/+1
* Fix Windows build warnings (#131487)Victor Stinner2025-03-201-0/+4
* gh-128863: Deprecate private C API functions (#128864)Victor Stinner2025-01-221-8/+0
* gh-128360: Add `_Py_AssertHoldsTstate` as assertion for holding a thread stat...Peter Bierma2025-01-201-6/+7
* gh-127350: Add Py_fopen() and Py_fclose() functions (#127821)Victor Stinner2025-01-061-30/+49
* gh-128277: make globals variables thread safe in socket module (#128286)Kumar Aditya2024-12-311-3/+3
* gh-126780: Fix `ntpath.normpath()` for drive-relative paths (GH-126801)Nice Zombies2024-11-211-25/+26
* gh-117657: Fix TSan reported data race on ioctl_works (#120175)Sam Gross2024-06-171-3/+5
* gh-118422: Fix run_fileexflags() test (#118429)Victor Stinner2024-04-301-0/+49
* gh-102511: Speed up os.path.splitroot() with native helpers (GH-118089)Nice Zombies2024-04-251-32/+115
* gh-112970: Detect and use closefrom() when available (#112969)Sam James2023-12-121-3/+3
* gh-112567: Add _Py_GetTicksPerSecond() function (#112587)Victor Stinner2023-12-011-0/+24
* gh-111856: Fix os.fstat on windows with FAT32 and exFAT filesystem (GH-112038)AN Long2023-11-131-3/+8
* gh-110014: Include explicitly <unistd.h> header (#110155)Victor Stinner2023-09-301-5/+8
* gh-107913: Fix possible losses of OSError error codes (GH-107930)Serhiy Storchaka2023-08-261-1/+3
* gh-106242: Minor fixup to avoid compiler warnings (GH-107983)Steve Dower2023-08-151-1/+1
* gh-106242: Fix path truncation in os.path.normpath (GH-106816)Finn Womack2023-08-151-8/+21
* GH-84436: Skip refcounting for known immortals (GH-107605)Brandt Bucher2023-08-041-1/+1
* gh-80064: Fix is_valid_wide_char() return type (#105099)Victor Stinner2023-05-301-1/+1
* gh-104820: Fixes os.stat on Windows to better handle file systems that do not...Steve Dower2023-05-241-1/+2
* gh-99726: Improves correctness of stat results for Windows, and uses faster A...Steve Dower2023-03-161-12/+118
* gh-102281: Fix potential nullptr dereference + use of uninitialized memory (g...Max Bachmann2023-03-151-1/+5
* gh-102255: Improve build support for Windows API partitions (GH-102256)Max Bachmann2023-03-091-4/+85
* gh-102336: Remove code specifically for handling Windows 7 (GH-102337)Max Bachmann2023-03-011-7/+1
* gh-101881: Support (non-)blocking read/write functions on Windows pipes (GH-1...Rayyan Ansari2023-02-161-2/+91
* gh-101810: Remove duplicated st_ino calculation (GH-101811)James Lee2023-02-131-2/+0
* gh-81057: Move More Globals in Core Code to _PyRuntimeState (gh-99516)Eric Snow2022-11-161-1/+1
* gh-95174: Handle missing dup() and constants in WASI (GH-95229)Christian Heimes2022-07-261-1/+5
* gh-93103: Py_DecodeLocale() uses _PyRuntime.preconfig (#93187)Victor Stinner2022-05-241-4/+4
* gh-92536: PEP 623: Remove wstr and legacy APIs from Unicode (GH-92537)Inada Naoki2022-05-121-14/+1
* gh-91731: Replace Py_BUILD_ASSERT() with static_assert() (#91730)Victor Stinner2022-04-201-1/+1
* bpo-47000: Add `locale.getencoding()` (GH-32068)Inada Naoki2022-04-091-9/+9
* bpo-47260: Fix os.closerange() potentially being a no-op in a seccomp sandbox...Alexey Izbyshev2022-04-081-4/+5
* Remove trailing spaces (GH-31695)Serhiy Storchaka2022-03-051-1/+1
* bpo-46362: Ensure ntpath.abspath() uses the Windows API correctly (GH-30571)neonene2022-01-131-36/+1
* bpo-46217: Revert use of Windows constant that is newer than what we support ...Steve Dower2022-01-081-1/+1
* bpo-46208: Fix normalization of relative paths in _Py_normpath()/os.path.norm...neonene2022-01-061-9/+16
* bpo-45582: Port getpath[p].c to Python (GH-29041)Steve Dower2021-12-031-91/+144
* bpo-45506: Normalize _PyPathConfig.stdlib_dir when calculated. (#29040)Eric Snow2021-10-221-0/+95
* bpo-45020: Default to using frozen modules unless running from source tree. (...Eric Snow2021-10-161-0/+12
* bpo-45434: pyport.h no longer includes <stdlib.h> (GH-28914)Victor Stinner2021-10-131-0/+1
* Fix typos in the Python directory (GH-28767)Christian Clauss2021-10-061-1/+1
* Do not check isabs() on Windows. (gh-28584)Eric Snow2021-09-271-0/+2
* bpo-45211: Move helpers from getpath.c to internal API. (gh-28550)Eric Snow2021-09-271-4/+98
* bpo-44219: Release the GIL during isatty syscalls (GH-28250)Vincent Michel2021-09-091-2/+14
* bpo-44849: Fix os.set_inheritable() on FreeBSD 14 with O_PATH (GH-27623)Victor Stinner2021-08-061-3/+4