aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/Python/fileutils.c
Commit message (Expand)AuthorAge
* Issue #18203: Fix decode_ascii_surrogateescape(), use PyMem_RawMalloc() as _P...Victor Stinner2013-07-07
* Issue #18203: Replace malloc() with PyMem_RawMalloc() at Python initializationVictor Stinner2013-07-07
* If MS_WIN64 is defined, MS_WINDOWS is also defined: #ifdef can be simplified.Victor Stinner2013-06-25
* Issue #9566: Fix compiler warning on Windows 64-bitVictor Stinner2013-06-05
* Fix a compiler warning: in and out are unused in _Py_char2wchar() ifVictor Stinner2013-05-07
* thinkoPhilip Jenvey2013-01-15
* Issue #16455: On FreeBSD and Solaris, if the locale is C, theVictor Stinner2012-12-04
* Issue #16416: Fix error handling in _Py_wchar2char() _Py_char2wchar() functionsVictor Stinner2012-11-12
* Issue #16416: OS data are now always encoded/decoded to/fromVictor Stinner2012-11-12
* Merge 3.3.Stefan Krah2012-11-12
|\
| * Issue #15835: Define PATH_MAX on HP-UX.Stefan Krah2012-11-12
* | Issue #16330: Use surrogate-related macrosVictor Stinner2012-10-30
|/
* Issue #14153 Create _Py_device_encoding() to prevent _io from having to importBrett Cannon2012-02-29
* Issue #13626: Add support for SSL Diffie-Hellman key exchange, through theAntoine Pitrou2011-12-22
* _Py_fopen now allows bytes filenames under non-Windows platforms.Antoine Pitrou2011-12-19
* import.c now catchs _Py_stat() exceptionsVictor Stinner2011-12-18
* Add PyUnicode_DecodeLocaleAndSize() and PyUnicode_DecodeLocale()Victor Stinner2011-12-16
* Catch PyUnicode_AS_UNICODE() errors in fileutils.cVictor Stinner2011-11-17
* _Py_char2wchar() frees the memory on conversion errorVictor Stinner2010-11-08
* PyUnicode_EncodeFS() raises an exception if _Py_wchar2char() failsVictor Stinner2010-11-08
* Add an optional size argument to _Py_char2wchar()Victor Stinner2010-10-16
* _Py_wrealpath() uses _Py_char2wchar() to decode the result, to supportVictor Stinner2010-10-16
* _Py_wreadlink(): catch _Py_char2wchar() failureVictor Stinner2010-10-16
* _Py_wreadlink() uses _Py_char2wchar() to decode the result, to supportVictor Stinner2010-10-16
* Mark _Py_char2wchar() input argument as constantVictor Stinner2010-10-15
* _Py_wgetcwd() decodes the path using _Py_char2wchar() to support surrogatesVictor Stinner2010-10-14
* fileutils.c: document which encodings are usedVictor Stinner2010-10-07
* _Py_wrealpath() requires the size of the output bufferVictor Stinner2010-10-07
* _Py_stat() and _Py_fopen(): avoid PyUnicode_AsWideCharString() on WindowsVictor Stinner2010-10-07
* Fix fileutils for WindowsVictor Stinner2010-10-07
* Ooops, fileutils.c contains twice the same codeVictor Stinner2010-10-07
* Create fileutils.c/.hVictor Stinner2010-10-07