summaryrefslogtreecommitdiff
path: root/Include/fileutils.h
Commit message (Expand)AuthorAgeFilesLines
* bpo-34523: Fix C locale coercion on FreeBSD CURRENT (GH-10672) (GH-10673)Victor Stinner2018-11-231-0/+7
* bpo-34403: Fix initfsencoding() for ASCII (GH-10233)Victor Stinner2018-10-301-0/+4
* bpo-24658: Fix read/write greater than 2 GiB on macOS (GH-1705)Miss Islington (bot)2018-10-171-0/+13
* bpo-32777: Fix _Py_set_inheritable async-safety in subprocess (GH-5560) (GH-5...Miss Islington (bot)2018-02-051-0/+3
* bpo-31900: Fix localeconv() encoding for LC_NUMERIC (#4174)Victor Stinner2018-01-151-0/+5
* bpo-29240: Fix locale encodings in UTF-8 Mode (#5170)Victor Stinner2018-01-151-7/+30
* bpo-29240: readline now ignores the UTF-8 Mode (#5145)Victor Stinner2018-01-101-0/+8
* bpo-32030: Add _Py_FindEnvConfigValue() (#4963)Victor Stinner2017-12-211-0/+7
* bpo-32030: Add _Py_EncodeLocaleRaw() (#4961)Victor Stinner2017-12-211-1/+4
* bpo-29619: Convert st_ino using unsigned integer (#557)Victor Stinner2017-03-091-1/+1
* Issue #29058: All stable API extensions added after Python 3.2 are nowSerhiy Storchaka2016-12-271-0/+2
* Issue #26900: Excluded underscored names and other private API from limited API.Serhiy Storchaka2016-09-111-6/+2
* Issue #23524: Finish removing _PyVerify_fd from sourcesSteve Dower2016-09-081-12/+0
* Issue #23524: Replace _PyVerify_fd function with calls to _set_thread_local_i...Steve Dower2015-04-121-1/+1
* Issue #23836: Add _Py_write_noraise() functionVictor Stinner2015-04-011-0/+5
* Issue #23752: _Py_fstat() is now responsible to raise the Python exceptionVictor Stinner2015-03-301-2/+6
* Issue #23753: Move _Py_wstat() from Python/fileutils.c to Modules/getpath.cVictor Stinner2015-03-241-4/+0
* Issue #23753: Python doesn't support anymore platforms without stat() orVictor Stinner2015-03-241-6/+0
* Issue #23708: Add _Py_read() and _Py_write() functions to factorize code handleVictor Stinner2015-03-191-0/+10
* Issue #23694: Enhance _Py_open(), it now raises exceptionsVictor Stinner2015-03-181-0/+4
* Issue #23524: Replace _PyVerify_fd function with calling _set_thread_local_in...Steve Dower2015-03-061-0/+12
* Issue #23152: Move declarations back to posixmodule.c.Serhiy Storchaka2015-02-221-4/+0
* Issue #23152: Move declaration into a header and exclude from stable API.Serhiy Storchaka2015-02-221-0/+6
* Issue #23152: Implement _Py_fstat() to support files larger than 2 GB on Wind...Steve Dower2015-02-211-1/+30
* Issue #18395: Rename ``_Py_char2wchar()`` to :c:func:`Py_DecodeLocale`, renameVictor Stinner2014-08-011-2/+2
* Issue #22054: Add os.get_blocking() and os.set_blocking() functions to get andVictor Stinner2014-07-291-1/+8
* Issue #19526: Exclude all new API from the stable ABI.Martin v. Löwis2014-01-031-0/+4
* Issue #18571: Implementation of the PEP 446: file descriptors and file handlesVictor Stinner2013-08-281-0/+15
* Issue #14153 Create _Py_device_encoding() to prevent _io from having to importBrett Cannon2012-02-291-0/+2
* PyUnicode_EncodeFS() raises an exception if _Py_wchar2char() failsVictor Stinner2010-11-081-1/+2
* Add an optional size argument to _Py_char2wchar()Victor Stinner2010-10-161-1/+2
* Mark _Py_char2wchar() input argument as constantVictor Stinner2010-10-151-1/+1
* _Py_wrealpath() requires the size of the output bufferVictor Stinner2010-10-071-1/+2
* _Py_stat() and _Py_fopen(): avoid PyUnicode_AsWideCharString() on WindowsVictor Stinner2010-10-071-2/+2
* Fix fileutils for WindowsVictor Stinner2010-10-071-1/+1
* Create fileutils.c/.hVictor Stinner2010-10-071-0/+55