aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/Python/fileutils.c
Commit message (Expand)AuthorAge
* gh-110014: Include explicitly <unistd.h> header (#110155)Victor Stinner2023-09-30
* gh-107913: Fix possible losses of OSError error codes (GH-107930)Serhiy Storchaka2023-08-27
* gh-106242: Minor fixup to avoid compiler warnings (GH-107983)Steve Dower2023-08-15
* gh-106242: Fix path truncation in os.path.normpath (GH-106816)Finn Womack2023-08-15
* GH-84436: Skip refcounting for known immortals (GH-107605)Brandt Bucher2023-08-04
* gh-80064: Fix is_valid_wide_char() return type (#105099)Victor Stinner2023-05-30
* gh-104820: Fixes os.stat on Windows to better handle file systems that do not...Steve Dower2023-05-25
* gh-99726: Improves correctness of stat results for Windows, and uses faster A...Steve Dower2023-03-16
* gh-102281: Fix potential nullptr dereference + use of uninitialized memory (g...Max Bachmann2023-03-15
* gh-102255: Improve build support for Windows API partitions (GH-102256)Max Bachmann2023-03-09
* gh-102336: Remove code specifically for handling Windows 7 (GH-102337)Max Bachmann2023-03-01
* gh-101881: Support (non-)blocking read/write functions on Windows pipes (GH-1...Rayyan Ansari2023-02-16
* gh-101810: Remove duplicated st_ino calculation (GH-101811)James Lee2023-02-13
* gh-81057: Move More Globals in Core Code to _PyRuntimeState (gh-99516)Eric Snow2022-11-16
* gh-95174: Handle missing dup() and constants in WASI (GH-95229)Christian Heimes2022-07-26
* gh-93103: Py_DecodeLocale() uses _PyRuntime.preconfig (#93187)Victor Stinner2022-05-25
* gh-92536: PEP 623: Remove wstr and legacy APIs from Unicode (GH-92537)Inada Naoki2022-05-12
* gh-91731: Replace Py_BUILD_ASSERT() with static_assert() (#91730)Victor Stinner2022-04-20
* bpo-47000: Add `locale.getencoding()` (GH-32068)Inada Naoki2022-04-09
* bpo-47260: Fix os.closerange() potentially being a no-op in a seccomp sandbox...Alexey Izbyshev2022-04-08
* Remove trailing spaces (GH-31695)Serhiy Storchaka2022-03-05
* bpo-46362: Ensure ntpath.abspath() uses the Windows API correctly (GH-30571)neonene2022-01-13
* bpo-46217: Revert use of Windows constant that is newer than what we support ...Steve Dower2022-01-08
* bpo-46208: Fix normalization of relative paths in _Py_normpath()/os.path.norm...neonene2022-01-06
* bpo-45582: Port getpath[p].c to Python (GH-29041)Steve Dower2021-12-03
* bpo-45506: Normalize _PyPathConfig.stdlib_dir when calculated. (#29040)Eric Snow2021-10-22
* bpo-45020: Default to using frozen modules unless running from source tree. (...Eric Snow2021-10-16
* bpo-45434: pyport.h no longer includes <stdlib.h> (GH-28914)Victor Stinner2021-10-13
* Fix typos in the Python directory (GH-28767)Christian Clauss2021-10-06
* Do not check isabs() on Windows. (gh-28584)Eric Snow2021-09-27
* bpo-45211: Move helpers from getpath.c to internal API. (gh-28550)Eric Snow2021-09-27
* bpo-44219: Release the GIL during isatty syscalls (GH-28250)Vincent Michel2021-09-09
* bpo-44849: Fix os.set_inheritable() on FreeBSD 14 with O_PATH (GH-27623)Victor Stinner2021-08-06
* bpo-43667: Fix broken Unicode encoding in non-UTF locales on Solaris (GH-25096)Jakub KulĂ­k2021-04-30
* bpo-30555: Fix WindowsConsoleIO fails in the presence of fd redirection (GH-1...Segev Finer2021-04-23
* bpo-35883: Py_DecodeLocale() escapes invalid Unicode characters (GH-24843)Victor Stinner2021-03-17
* bpo-42780: Fix set_inheritable() for O_PATH file descriptors on Linux (GH-24172)cptpcrd2021-01-20
* bpo-32381: Remove unused _Py_fopen() function (GH-23711)Victor Stinner2020-12-09
* bpo-41462: Add os.set_blocking() support for VxWorks RTOS (GH-21713)pxinwr2020-12-07
* bpo-42236: os.device_encoding() respects UTF-8 Mode (GH-23119)Victor Stinner2020-11-04
* bpo-42236: Use UTF-8 encoding if nl_langinfo(CODESET) fails (GH-23086)Victor Stinner2020-11-01
* bpo-42236: Enhance _locale._get_locale_encoding() (GH-23083)Victor Stinner2020-11-01
* bpo-42208: Add _Py_GetLocaleEncoding() (GH-23050)Victor Stinner2020-10-31
* bpo-38324: Fix test__locale.py Windows failures (GH-20529)TIGirardi2020-10-20
* bpo-40422: Move _Py_closerange to fileutils.c (GH-22680)Kyle Evans2020-10-13
* bpo-36346: Make using the legacy Unicode C API optional (GH-21437)Serhiy Storchaka2020-07-10
* bpo-41094: Fix decoding errors with audit when open files. (GH-21095)Serhiy Storchaka2020-06-24
* bpo-40957: Fix refleak in _Py_fopen_obj() (GH-20827)Christian Heimes2020-06-14
* bpo-40268: Remove unused osdefs.h includes (GH-19532)Victor Stinner2020-04-15
* bpo-39943: Add the const qualifier to pointers on non-mutable PyBytes data. (...Serhiy Storchaka2020-04-12