summaryrefslogtreecommitdiff
path: root/Modules/getpath.c
Commit message (Expand)AuthorAgeFilesLines
* Issue #19398: Extra slash no longer added to sys.path components in case ofSerhiy Storchaka2016-11-111-2/+2
|\
| * merge 3.5Benjamin Peterson2016-06-021-19/+2
| |\
| * | Issue #25923: Added the const qualifier to static constant arrays.Serhiy Storchaka2015-12-251-2/+2
* | | Issue #19398: Extra slash no longer added to sys.path components in case ofSerhiy Storchaka2016-11-111-1/+4
| |/ |/|
* | remove (hilarious) defaults for various constants getpath.c needsBenjamin Peterson2016-06-021-19/+2
|/
* Issue #23731: Implement PEP 488.Brett Cannon2015-04-131-3/+2
* Issue #23753: Move _Py_wstat() from Python/fileutils.c to Modules/getpath.cVictor Stinner2015-03-241-0/+17
* Issue #23446: Use PyMem_New instead of PyMem_Malloc to avoid possible integerSerhiy Storchaka2015-02-161-1/+1
|\
| * Issue #23446: Use PyMem_New instead of PyMem_Malloc to avoid possible integerSerhiy Storchaka2015-02-161-1/+1
* | Issue #17095: merge from 3.4Ned Deily2014-09-141-14/+0
|\ \ | |/
| * Issue #17095: Temporarily revert getpath.c change that added the ModulesNed Deily2014-09-141-14/+0
* | 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-161-6/+13
* Issue #15905: Fix theoretical buffer overflow in handling of sys.argv[0],Christian Heimes2013-07-221-14/+10
|\
| * 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
* | Issue #15905: Fix theoretical buffer overflow in handling of sys.argv[0],Christian Heimes2013-07-221-4/+12
|/
* 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