summaryrefslogtreecommitdiffstats
path: root/Modules/getpath.c
Commit message (Expand)AuthorAgeFilesLines
* Issue #18395: Rename ``_Py_char2wchar()`` to :c:func:`Py_DecodeLocale`, renameVictor Stinner2014-08-011-8/+8
* Issue #17095: Fix Modules/Setup *shared* support.Ned Deily2014-06-021-0/+14
* Issue #16136: Remove VMS support and VMS-related codeChristian Heimes2013-12-211-5/+1
* calculate_path() now fails with a fatal error when it fails to allocate memoryVictor Stinner2013-11-161-49/+40
* Don't mix wide character strings and byte strings (L"lib/python" VERSION): useVictor Stinner2013-11-151-6/+13
* Issue #15905: Fix theoretical buffer overflow in handling of sys.argv[0],Christian Heimes2013-07-221-4/+12
|\
| * Issue #15905: Fix theoretical buffer overflow in handling of sys.argv[0],Christian Heimes2013-07-221-4/+12
* | Issue #18203: Replace malloc() with PyMem_RawMalloc() at Python initializationVictor Stinner2013-07-071-11/+9
* | Issue #16309: Make PYTHONPATH= behavior the same as if PYTHONPATH not set at ...Andrew Svetlov2012-11-031-3/+1
|/
* Closes #15307: symlinks now work on OS X with framework Python builds. Patch...Vinay Sajip2012-07-171-4/+12
* Implemented PEP 405 (Python virtual environments).Vinay Sajip2012-05-261-0/+86
* calculate_path() decodes the PYTHONPATH environment variable from the localeVictor Stinner2011-06-201-7/+9
* Issue #10914: fix bogus memory management in Modules/getpath.c, leading to a ...Antoine Pitrou2011-03-171-3/+7
* Merge branches/pep-0384.Martin v. Löwis2010-12-031-1/+1
* getpath.c: fix test to detech PyUnicode_AsWideChar() failureVictor Stinner2010-11-101-4/+4
* Issue #6011: decode PREFIX, EXEC_PREFIX and PYTHONPATH variables usingVictor Stinner2010-11-081-17/+30
* Issue #6011: getpath: decode VPATH env var from the locale encodingVictor Stinner2010-10-231-7/+10
* Oops, fix my previous commit (r85583) on calculate_path()Victor Stinner2010-10-161-4/+7
* calculate_path(): use _Py_char2wchar() to decode the PATH environment variable,Victor Stinner2010-10-161-9/+4
* _Py_wgetcwd() decodes the path using _Py_char2wchar() to support surrogatesVictor Stinner2010-10-141-6/+6
* copy_absolute() keeps the relative path on _Py_wgetcwd() failureVictor Stinner2010-10-071-2/+5
* copy_absolute() raises a fatal error on _Py_wgetcwd() failureVictor Stinner2010-10-071-1/+2
* Create fileutils.c/.hVictor Stinner2010-10-071-77/+4
* _wrealpath() and _Py_wreadlink() support surrogates (PEP 383)Victor Stinner2010-10-071-3/+6
* issue 9910Kristján Valur Jónsson2010-09-271-0/+20
* Fix indentation in Modules/getpath.cAntoine Pitrou2010-08-141-59/+59
* Add comments about Windows in Modules/getpath.cAntoine Pitrou2010-08-141-2/+7
* Kill a gcc warning introduced by r83988Victor Stinner2010-08-141-1/+2
* Create _Py_wchar2char() function, reverse of _Py_char2wchar()Victor Stinner2010-08-131-4/+7
* Reimplement addbuilddir() in C inside getpath.c, so as to execute itAntoine Pitrou2010-08-131-4/+27
* Ensure that sys.prefix can reliably be foundRonald Oussoren2010-07-231-1/+1
* Recorded merge of revisions 81029 via svnmerge fromAntoine Pitrou2010-05-091-85/+85
* Merged revisions 78835-78837 via svnmerge fromVictor Stinner2010-03-121-1/+1
* #4532: fixes to make 3.x compile on QNX 6.3.2 (reported by Matt Kraai)Andrew M. Kuchling2010-02-221-1/+1
* This fixes issue5143 and includes a test.Ronald Oussoren2009-02-121-2/+8
* Issue #3813: cannot lanch python.exe via symbolic link on cygwin.Hirokazu Yamamoto2008-09-091-2/+1
* Change command line processing API to use wchar_t.Martin v. Löwis2008-04-051-120/+200
* Merged revisions 53952-54987 via svnmerge fromGuido van Rossum2007-04-271-1/+1
* Merged revisions 46753-51188 via svnmerge fromThomas Wouters2006-08-111-5/+5
* Merge p3yk branch with the trunk up to revision 45595. This breaks a fairThomas Wouters2006-04-211-1/+12
* Patch #931938: prevent setting sys.prefix to ""Georg Brandl2006-02-201-0/+6
* squash compiler warning on Mac OSX 10.3Skip Montanaro2006-01-051-0/+4
* Change type on variable to silence gcc 4 warning. Call signature was found atBrett Cannon2005-09-161-1/+1
* Bug 1003471: Python 1.5.2 security vulnerability still present in 2.3.4Tim Peters2004-08-081-4/+10
* Modules/getpath.c now compiles properly under OS X when using theBrett Cannon2004-06-261-1/+1
* Change comment from C++ style to C.Brett Cannon2004-06-241-1/+1
* Fix for #932977: MacOSX does not pass the whole pathname in argv[0] forJack Jansen2004-06-031-0/+17
* Make sure zip_path is null-terminated, since it's on the stackNeal Norwitz2002-12-311-0/+1
* PEP 302 + zipimport:Just van Rossum2002-12-301-0/+18
* Squashed compiler warnings by adding casts, making sure prototypes are inJack Jansen2002-12-231-1/+1