| Commit message (Expand) | Author | Age | Files | Lines |
* | gh-108765: Move stat() fiddling from pyport.h to fileutils.h (#108854) | Victor Stinner | 2023-09-03 | 1 | -0/+36 |
|
|
* | bpo-45434: Remove useless space in includes (GH-28963) | Victor Stinner | 2021-10-14 | 1 | -1/+1 |
|
|
* | bpo-43795: PEP-652: Clean up the stable ABI/limited API (GH-25482) | Petr Viktorin | 2021-04-23 | 1 | -4/+0 |
|
|
* | bpo-35134: Add Include/cpython/fileutils.h header file (GH-18493) | Victor Stinner | 2020-02-12 | 1 | -164/+3 |
|
|
* | bpo-37834: Normalise handling of reparse points on Windows (GH-15231) | Steve Dower | 2019-08-21 | 1 | -0/+1 |
|
|
* | bpo-20443: _PyConfig_Read() gets the absolute path of run_filename (GH-14053) | Victor Stinner | 2019-06-25 | 1 | -0/+6 |
|
|
* | bpo-36352: Clarify fileutils.h documentation (GH-12406) | Victor Stinner | 2019-03-18 | 1 | -3/+9 |
|
|
* | bpo-28604: Fix localeconv() for different LC_MONETARY (GH-10606) | Victor Stinner | 2018-11-20 | 1 | -5/+0 |
|
|
* | bpo-35081: Add pycore_fileutils.h (GH-10371) | Victor Stinner | 2018-11-06 | 1 | -46/+13 |
|
|
* | bpo-24658: Fix read/write greater than 2 GiB on macOS (GH-1705) | Stéphane Wirtel | 2018-10-17 | 1 | -0/+13 |
|
|
* | bpo-34523: Support surrogatepass in locale codecs (GH-8995) | Victor Stinner | 2018-08-29 | 1 | -4/+25 |
|
|
* | bpo-34403: On HP-UX, force ASCII for C locale (GH-8969) | Victor Stinner | 2018-08-28 | 1 | -0/+5 |
|
|
* | bpo-32777: Fix _Py_set_inheritable async-safety in subprocess (GH-5560) | Alexey Izbyshev | 2018-02-06 | 1 | -0/+3 |
|
|
* | bpo-31900: Fix localeconv() encoding for LC_NUMERIC (#4174) | Victor Stinner | 2018-01-15 | 1 | -0/+5 |
|
|
* | bpo-29240: Fix locale encodings in UTF-8 Mode (#5170) | Victor Stinner | 2018-01-15 | 1 | -7/+30 |
|
|
* | bpo-29240: readline now ignores the UTF-8 Mode (#5145) | Victor Stinner | 2018-01-10 | 1 | -0/+8 |
|
|
* | bpo-32030: Add _Py_FindEnvConfigValue() (#4963) | Victor Stinner | 2017-12-21 | 1 | -0/+7 |
|
|
* | bpo-32030: Add _Py_EncodeLocaleRaw() (#4961) | Victor Stinner | 2017-12-21 | 1 | -1/+4 |
|
|
* | bpo-29619: Convert st_ino using unsigned integer (#557) | Victor Stinner | 2017-03-09 | 1 | -1/+1 |
|
|
* | Issue #29058: All stable API extensions added after Python 3.2 are now | Serhiy Storchaka | 2016-12-27 | 1 | -0/+2 |
|
|
* | Issue #26900: Excluded underscored names and other private API from limited API. | Serhiy Storchaka | 2016-09-11 | 1 | -6/+2 |
|
|
* | Issue #23524: Finish removing _PyVerify_fd from sources | Steve Dower | 2016-09-08 | 1 | -12/+0 |
|
|
* | Issue #23524: Replace _PyVerify_fd function with calls to _set_thread_local_i... | Steve Dower | 2015-04-12 | 1 | -1/+1 |
|
|
* | Issue #23836: Add _Py_write_noraise() function | Victor Stinner | 2015-04-01 | 1 | -0/+5 |
|
|
* | Issue #23752: _Py_fstat() is now responsible to raise the Python exception | Victor Stinner | 2015-03-30 | 1 | -2/+6 |
|
|
* | Issue #23753: Move _Py_wstat() from Python/fileutils.c to Modules/getpath.c | Victor Stinner | 2015-03-24 | 1 | -4/+0 |
|
|
* | Issue #23753: Python doesn't support anymore platforms without stat() or | Victor Stinner | 2015-03-24 | 1 | -6/+0 |
|
|
* | Issue #23708: Add _Py_read() and _Py_write() functions to factorize code handle | Victor Stinner | 2015-03-19 | 1 | -0/+10 |
|
|
* | Issue #23694: Enhance _Py_open(), it now raises exceptions | Victor Stinner | 2015-03-17 | 1 | -0/+4 |
|
|
* | Issue #23524: Replace _PyVerify_fd function with calling _set_thread_local_in... | Steve Dower | 2015-03-06 | 1 | -0/+12 |
|
|
* | Issue #23152: Move declarations back to posixmodule.c. | Serhiy Storchaka | 2015-02-22 | 1 | -4/+0 |
|
|
* | Issue #23152: Move declaration into a header and exclude from stable API. | Serhiy Storchaka | 2015-02-22 | 1 | -0/+6 |
|
|
* | Issue #23152: Implement _Py_fstat() to support files larger than 2 GB on Wind... | Steve Dower | 2015-02-21 | 1 | -1/+30 |
|
|
* | Issue #18395: Rename ``_Py_char2wchar()`` to :c:func:`Py_DecodeLocale`, rename | Victor Stinner | 2014-08-01 | 1 | -2/+2 |
|
|
* | Issue #22054: Add os.get_blocking() and os.set_blocking() functions to get and | Victor Stinner | 2014-07-29 | 1 | -1/+8 |
|
|
* | Issue #19526: Exclude all new API from the stable ABI. | Martin v. Löwis | 2014-01-03 | 1 | -0/+4 |
|
|
* | Issue #18571: Implementation of the PEP 446: file descriptors and file handles | Victor Stinner | 2013-08-27 | 1 | -0/+15 |
|
|
* | Issue #14153 Create _Py_device_encoding() to prevent _io from having to import | Brett Cannon | 2012-02-29 | 1 | -0/+2 |
|
|
* | PyUnicode_EncodeFS() raises an exception if _Py_wchar2char() fails | Victor Stinner | 2010-11-08 | 1 | -1/+2 |
|
|
* | Add an optional size argument to _Py_char2wchar() | Victor Stinner | 2010-10-16 | 1 | -1/+2 |
|
|
* | Mark _Py_char2wchar() input argument as constant | Victor Stinner | 2010-10-15 | 1 | -1/+1 |
|
|
* | _Py_wrealpath() requires the size of the output buffer | Victor Stinner | 2010-10-07 | 1 | -1/+2 |
|
|
* | _Py_stat() and _Py_fopen(): avoid PyUnicode_AsWideCharString() on Windows | Victor Stinner | 2010-10-07 | 1 | -2/+2 |
|
|
* | Fix fileutils for Windows | Victor Stinner | 2010-10-07 | 1 | -1/+1 |
|
|
* | Create fileutils.c/.h | Victor Stinner | 2010-10-07 | 1 | -0/+55 |
|
|