summaryrefslogtreecommitdiffstats
path: root/Modules/getpath.c
Commit message (Expand)AuthorAgeFilesLines
* 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
* Patch #614055: Support OpenVMS.Martin v. Löwis2002-12-061-0/+4
* SF # 602108 ensure string is null terminated after strncpyNeal Norwitz2002-09-131-0/+1
* Include <unistd.h> in Python.h. Fixes #500924.Martin v. Löwis2002-01-121-4/+0
* Changed logic for finding python home in Mac OS X framework Pythons.Jack Jansen2001-12-021-47/+45
* Be more rigorous about making pathnames absolute, to address SF bugGuido van Rossum2001-09-281-53/+58
* With WITH_NEXT_FRAMEWORK defined we now also expect a normal PythonJack Jansen2001-08-151-6/+20
* Put conditional S_ISDIR definition(s) into pyport.h.Martin v. Löwis2001-08-081-9/+0
* Add -E command line switch (ignore environment variables like PYTHONHOMENeil Schemenauer2001-07-231-1/+1
* Build now happens in toplevel directory, not Modules. Don't monkey withNeil Schemenauer2001-01-241-12/+1
* Clean up some comments and the default VERSION.Guido van Rossum2001-01-231-3/+2
* Minor ANSIfication: lib_python no longer needs to be initializedFred Drake2000-09-281-4/+1
* Fix buffer overflow vulnerabilities in calculate_path(). Code usedJeremy Hylton2000-09-271-16/+41