summaryrefslogtreecommitdiffstats
path: root/Python/fileutils.c
Commit message (Expand)AuthorAgeFilesLines
* (Merge 3.4) Closes #22258: Fix the the internal function set_inheritable() onVictor Stinner2014-09-021-14/+34
|\
| * Closes #22258: Fix the the internal function set_inheritable() on Illumos.Victor Stinner2014-09-021-14/+34
* | Issue #18395: Rename ``_Py_char2wchar()`` to :c:func:`Py_DecodeLocale`, renameVictor Stinner2014-08-011-32/+35
* | Issue #22054: Add os.get_blocking() and os.set_blocking() functions to get andVictor Stinner2014-07-291-0/+53
|/
* Merge from 3.3.Stefan Krah2014-01-201-1/+2
|\
| * Issue #19036: Including locale.h should not depend on HAVE_LANGINFO_H.Stefan Krah2014-01-201-1/+2
* | (Merge 3.3) fileutils.c: use MAXPATHLEN instead of PATH_MAXVictor Stinner2013-11-151-6/+6
|\ \ | |/
| * fileutils.c: use MAXPATHLEN instead of PATH_MAXVictor Stinner2013-11-151-6/+6
| * (Merge 3.2) Issue #16455: On FreeBSD and Solaris, if the locale is C, theVictor Stinner2013-01-031-23/+217
| |\
| | * Issue #16455: On FreeBSD and Solaris, if the locale is C, theVictor Stinner2013-01-031-23/+222
| | * Issue #16416: Fix compilation errorVictor Stinner2012-12-031-1/+3
| * | (Merge 3.2) Issue #16416: On Mac OS X, operating system data are now alwaysVictor Stinner2012-12-031-6/+54
| |\ \ | | |/
| | * Issue #16416: On Mac OS X, operating system data are now alwaysVictor Stinner2012-12-031-6/+54
* | | Add unused third arg for the benefit of Valgrind.Stefan Krah2013-11-141-1/+1
* | | Don't export internal symbols ("make smelly")Antoine Pitrou2013-10-121-1/+1
* | | Close #18954: Fix some typo in fileutils.c commentsVictor Stinner2013-09-071-3/+3
* | | Issue #18571: Implementation of the PEP 446: file descriptors and file handlesVictor Stinner2013-08-271-13/+328
* | | Issue #18203: Fix decode_ascii_surrogateescape(), use PyMem_RawMalloc() as _P...Victor Stinner2013-07-071-1/+1
* | | Issue #18203: Replace malloc() with PyMem_RawMalloc() at Python initializationVictor Stinner2013-07-071-11/+11
* | | If MS_WIN64 is defined, MS_WINDOWS is also defined: #ifdef can be simplified.Victor Stinner2013-06-241-2/+2
* | | Issue #9566: Fix compiler warning on Windows 64-bitVictor Stinner2013-06-041-1/+2
* | | Fix a compiler warning: in and out are unused in _Py_char2wchar() ifVictor Stinner2013-05-071-1/+1
* | | thinkoPhilip Jenvey2013-01-151-1/+1
* | | Issue #16455: On FreeBSD and Solaris, if the locale is C, theVictor Stinner2012-12-041-23/+217
* | | Issue #16416: Fix error handling in _Py_wchar2char() _Py_char2wchar() functionsVictor Stinner2012-11-121-11/+16
* | | Issue #16416: OS data are now always encoded/decoded to/fromVictor Stinner2012-11-121-2/+45
* | | Merge 3.3.Stefan Krah2012-11-121-0/+1
|\ \ \ | |/ /
| * | Issue #15835: Define PATH_MAX on HP-UX.Stefan Krah2012-11-121-0/+1
* | | Issue #16330: Use surrogate-related macrosVictor Stinner2012-10-301-2/+2
|/ /
* | Issue #14153 Create _Py_device_encoding() to prevent _io from having to importBrett Cannon2012-02-291-0/+34
* | Issue #13626: Add support for SSL Diffie-Hellman key exchange, through theAntoine Pitrou2011-12-221-0/+6
* | _Py_fopen now allows bytes filenames under non-Windows platforms.Antoine Pitrou2011-12-191-2/+2
* | import.c now catchs _Py_stat() exceptionsVictor Stinner2011-12-181-4/+4
* | Add PyUnicode_DecodeLocaleAndSize() and PyUnicode_DecodeLocale()Victor Stinner2011-12-161-9/+16
* | Catch PyUnicode_AS_UNICODE() errors in fileutils.cVictor Stinner2011-11-161-2/+11
|/
* _Py_char2wchar() frees the memory on conversion errorVictor Stinner2010-11-081-2/+7
* PyUnicode_EncodeFS() raises an exception if _Py_wchar2char() failsVictor Stinner2010-11-081-6/+14
* Add an optional size argument to _Py_char2wchar()Victor Stinner2010-10-161-11/+16
* _Py_wrealpath() uses _Py_char2wchar() to decode the result, to supportVictor Stinner2010-10-161-2/+12
* _Py_wreadlink(): catch _Py_char2wchar() failureVictor Stinner2010-10-161-0/+4
* _Py_wreadlink() uses _Py_char2wchar() to decode the result, to supportVictor Stinner2010-10-161-2/+7
* Mark _Py_char2wchar() input argument as constantVictor Stinner2010-10-151-1/+1
* _Py_wgetcwd() decodes the path using _Py_char2wchar() to support surrogatesVictor Stinner2010-10-141-3/+11
* fileutils.c: document which encodings are usedVictor Stinner2010-10-071-6/+26
* _Py_wrealpath() requires the size of the output bufferVictor Stinner2010-10-071-2/+3
* _Py_stat() and _Py_fopen(): avoid PyUnicode_AsWideCharString() on WindowsVictor Stinner2010-10-071-18/+6
* Fix fileutils for WindowsVictor Stinner2010-10-071-8/+7
* Ooops, fileutils.c contains twice the same codeVictor Stinner2010-10-071-380/+0
* Create fileutils.c/.hVictor Stinner2010-10-071-0/+758