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
/
Python
/
fileutils.c
Commit message (
Expand
)
Author
Age
Files
Lines
*
bpo-46362: Ensure ntpath.abspath() uses the Windows API correctly (GH-30571)
neonene
2022-01-13
1
-36/+1
*
bpo-46217: Revert use of Windows constant that is newer than what we support ...
Steve Dower
2022-01-08
1
-1/+1
*
bpo-46208: Fix normalization of relative paths in _Py_normpath()/os.path.norm...
neonene
2022-01-06
1
-9/+16
*
bpo-45582: Port getpath[p].c to Python (GH-29041)
Steve Dower
2021-12-03
1
-91/+144
*
bpo-45506: Normalize _PyPathConfig.stdlib_dir when calculated. (#29040)
Eric Snow
2021-10-22
1
-0/+95
*
bpo-45020: Default to using frozen modules unless running from source tree. (...
Eric Snow
2021-10-16
1
-0/+12
*
bpo-45434: pyport.h no longer includes <stdlib.h> (GH-28914)
Victor Stinner
2021-10-13
1
-0/+1
*
Fix typos in the Python directory (GH-28767)
Christian Clauss
2021-10-06
1
-1/+1
*
Do not check isabs() on Windows. (gh-28584)
Eric Snow
2021-09-27
1
-0/+2
*
bpo-45211: Move helpers from getpath.c to internal API. (gh-28550)
Eric Snow
2021-09-27
1
-4/+98
*
bpo-44219: Release the GIL during isatty syscalls (GH-28250)
Vincent Michel
2021-09-09
1
-2/+14
*
bpo-44849: Fix os.set_inheritable() on FreeBSD 14 with O_PATH (GH-27623)
Victor Stinner
2021-08-06
1
-3/+4
*
bpo-43667: Fix broken Unicode encoding in non-UTF locales on Solaris (GH-25096)
Jakub Kulík
2021-04-30
1
-0/+106
*
bpo-30555: Fix WindowsConsoleIO fails in the presence of fd redirection (GH-1...
Segev Finer
2021-04-23
1
-16/+45
*
bpo-35883: Py_DecodeLocale() escapes invalid Unicode characters (GH-24843)
Victor Stinner
2021-03-17
1
-39/+79
*
bpo-42780: Fix set_inheritable() for O_PATH file descriptors on Linux (GH-24172)
cptpcrd
2021-01-20
1
-0/+7
*
bpo-32381: Remove unused _Py_fopen() function (GH-23711)
Victor Stinner
2020-12-09
1
-27/+0
*
bpo-41462: Add os.set_blocking() support for VxWorks RTOS (GH-21713)
pxinwr
2020-12-07
1
-1/+3
*
bpo-42236: os.device_encoding() respects UTF-8 Mode (GH-23119)
Victor Stinner
2020-11-04
1
-11/+7
*
bpo-42236: Use UTF-8 encoding if nl_langinfo(CODESET) fails (GH-23086)
Victor Stinner
2020-11-01
1
-26/+8
*
bpo-42236: Enhance _locale._get_locale_encoding() (GH-23083)
Victor Stinner
2020-11-01
1
-15/+59
*
bpo-42208: Add _Py_GetLocaleEncoding() (GH-23050)
Victor Stinner
2020-10-31
1
-1/+42
*
bpo-38324: Fix test__locale.py Windows failures (GH-20529)
TIGirardi
2020-10-20
1
-2/+13
*
bpo-40422: Move _Py_closerange to fileutils.c (GH-22680)
Kyle Evans
2020-10-13
1
-0/+76
*
bpo-36346: Make using the legacy Unicode C API optional (GH-21437)
Serhiy Storchaka
2020-07-10
1
-4/+19
*
bpo-41094: Fix decoding errors with audit when open files. (GH-21095)
Serhiy Storchaka
2020-06-24
1
-4/+19
*
bpo-40957: Fix refleak in _Py_fopen_obj() (GH-20827)
Christian Heimes
2020-06-13
1
-0/+1
*
bpo-40268: Remove unused osdefs.h includes (GH-19532)
Victor Stinner
2020-04-15
1
-1/+1
*
bpo-39943: Add the const qualifier to pointers on non-mutable PyBytes data. (...
Serhiy Storchaka
2020-04-12
1
-1/+1
*
bpo-38353: Add subfunctions to getpath.c (GH-16572)
Victor Stinner
2019-10-04
1
-4/+6
*
bpo-37549: os.dup() fails for standard streams on Windows 7 (GH-15389)
Zackery Spytz
2019-08-23
1
-1/+8
*
bpo-37834: Normalise handling of reparse points on Windows (GH-15231)
Steve Dower
2019-08-21
1
-1/+6
*
bpo-20443: _PyConfig_Read() gets the absolute path of run_filename (GH-14053)
Victor Stinner
2019-06-25
1
-0/+97
*
bpo-37267: Do not check for FILE_TYPE_CHAR in os.dup() on Windows (GH-14051)
Zackery Spytz
2019-06-17
1
-12/+5
*
bpo-36842: Implement PEP 578 (GH-12613)
Steve Dower
2019-05-23
1
-0/+18
*
bpo-36775: Add _Py_FORCE_UTF8_FS_ENCODING macro (GH-13056)
Victor Stinner
2019-05-02
1
-8/+8
*
bpo-36352: Avoid hardcoded MAXPATHLEN size in getpath.c (GH-12423)
Victor Stinner
2019-03-19
1
-1/+1
*
bpo-36352: Clarify fileutils.h documentation (GH-12406)
Victor Stinner
2019-03-18
1
-14/+21
*
bpo-31904: Add encoding support for VxWorks RTOS (GH-12051)
pxinwr
2019-03-04
1
-3/+3
*
bpo-34523: Fix C locale coercion on FreeBSD CURRENT (GH-10672)
Victor Stinner
2018-11-23
1
-0/+13
*
bpo-28604: Fix localeconv() for different LC_MONETARY (GH-10606)
Victor Stinner
2018-11-20
1
-27/+18
*
bpo-35081: Add pycore_fileutils.h (GH-10371)
Victor Stinner
2018-11-06
1
-0/+1
*
bpo-24658: Fix read/write greater than 2 GiB on macOS (GH-1705)
Stéphane Wirtel
2018-10-17
1
-19/+5
*
bpo-34523: Support surrogatepass in locale codecs (GH-8995)
Victor Stinner
2018-08-29
1
-25/+87
*
bpo-34523: Py_DecodeLocale() use UTF-8 on Windows (GH-8998)
Victor Stinner
2018-08-29
1
-4/+12
*
bpo-34403: On HP-UX, force ASCII for C locale (GH-8969)
Victor Stinner
2018-08-28
1
-33/+71
*
bpo-34527: POSIX locale enables the UTF-8 Mode (GH-8972)
Victor Stinner
2018-08-28
1
-1/+1
*
Spelling fixes to docs, docstrings, and comments (GH-6374)
Ville Skyttä
2018-04-20
1
-1/+1
*
bpo-32869: Fix incorrect dst buffer size for MultiByteToWideChar (#5739)
Alexey Izbyshev
2018-02-18
1
-1/+2
*
bpo-32777: Fix _Py_set_inheritable async-safety in subprocess (GH-5560)
Alexey Izbyshev
2018-02-06
1
-3/+16
[next]