- af01f66 Issue #16136: Remove VMS support and VMS-related code by Christian Heimes · 11 years ago
- 72967a4 calculate_path() now fails with a fatal error when it fails to allocate memory by Victor Stinner · 11 years ago
- ce4179d Don't mix wide character strings and byte strings (L"lib/python" VERSION): use by Victor Stinner · 11 years ago
- de0e63b Issue #15905: Fix theoretical buffer overflow in handling of sys.argv[0], by Christian Heimes · 11 years ago
- 60a6067 Issue #15905: Fix theoretical buffer overflow in handling of sys.argv[0], by Christian Heimes · 11 years ago
- 1a7425f Issue #18203: Replace malloc() with PyMem_RawMalloc() at Python initialization by Victor Stinner · 11 years ago
- 69032c8 Issue #16309: Make PYTHONPATH= behavior the same as if PYTHONPATH not set at all. by Andrew Svetlov · 12 years ago
- 90db661 Closes #15307: symlinks now work on OS X with framework Python builds. Patch by Ronald Oussoren. by Vinay Sajip · 12 years ago
- 7ded1f0 Implemented PEP 405 (Python virtual environments). by Vinay Sajip · 12 years ago
- 99563b1 calculate_path() decodes the PYTHONPATH environment variable from the locale by Victor Stinner · 13 years ago
- bb6eb85 Issue #10914: fix bogus memory management in Modules/getpath.c, leading to a possible crash when calling Py_SetPath() by Antoine Pitrou · 14 years ago
- 4d0d471 Merge branches/pep-0384. by Martin v. Löwis · 14 years ago
- 47f637c getpath.c: fix test to detech PyUnicode_AsWideChar() failure by Victor Stinner · 14 years ago
- ae4836d Issue #6011: decode PREFIX, EXEC_PREFIX and PYTHONPATH variables using by Victor Stinner · 14 years ago
- 2158231 Issue #6011: getpath: decode VPATH env var from the locale encoding by Victor Stinner · 14 years ago
- 61aad57 Oops, fix my previous commit (r85583) on calculate_path() by Victor Stinner · 14 years ago
- dc4b2a7 calculate_path(): use _Py_char2wchar() to decode the PATH environment variable, by Victor Stinner · 14 years ago
- f4061da _Py_wgetcwd() decodes the path using _Py_char2wchar() to support surrogates by Victor Stinner · 14 years ago
- 4f3abb0 copy_absolute() keeps the relative path on _Py_wgetcwd() failure by Victor Stinner · 14 years ago
- 41c8b37 copy_absolute() raises a fatal error on _Py_wgetcwd() failure by Victor Stinner · 14 years ago
- 4e31443 Create fileutils.c/.h by Victor Stinner · 14 years ago
- 7ae7c87 _wrealpath() and _Py_wreadlink() support surrogates (PEP 383) by Victor Stinner · 14 years ago
- 3b69db2 issue 9910 by Kristján Valur Jónsson · 14 years ago
- 99773ac Fix indentation in Modules/getpath.c by Antoine Pitrou · 14 years ago
- eba57b6 Add comments about Windows in Modules/getpath.c by Antoine Pitrou · 14 years ago
- e406ef4 Kill a gcc warning introduced by r83988 by Victor Stinner · 14 years ago
- f2e08b3 Create _Py_wchar2char() function, reverse of _Py_char2wchar() by Victor Stinner · 14 years ago
- e9b428f Reimplement addbuilddir() in C inside getpath.c, so as to execute it by Antoine Pitrou · 14 years ago
- 97d1119 Ensure that sys.prefix can reliably be found by Ronald Oussoren · 14 years ago
- f95a1b3 Recorded merge of revisions 81029 via svnmerge from by Antoine Pitrou · 15 years ago
- 171ba05 Merged revisions 78835-78837 via svnmerge from by Victor Stinner · 15 years ago
- b2ceb3a #4532: fixes to make 3.x compile on QNX 6.3.2 (reported by Matt Kraai) by Andrew M. Kuchling · 15 years ago
- 3e264e1 This fixes issue5143 and includes a test. by Ronald Oussoren · 16 years ago
- f824779 Issue #3813: cannot lanch python.exe via symbolic link on cygwin. by Hirokazu Yamamoto · 16 years ago
- 790465f Change command line processing API to use wchar_t. Fixes #2128. by Martin v. Löwis · 17 years ago
- d8faa36 Merged revisions 53952-54987 via svnmerge from by Guido van Rossum · 18 years ago
- 0e3f591 Merged revisions 46753-51188 via svnmerge from by Thomas Wouters · 18 years ago
- 49fd7fa Merge p3yk branch with the trunk up to revision 45595. This breaks a fair by Thomas Wouters · 19 years ago
- e393bf6 Patch #931938: prevent setting sys.prefix to "" by Georg Brandl · 19 years ago
- 2b47445 squash compiler warning on Mac OSX 10.3 by Skip Montanaro · 19 years ago
- bd9c3f7 Change type on variable to silence gcc 4 warning. Call signature was found at by Brett Cannon · 19 years ago
- ec8c5a9 Bug 1003471: Python 1.5.2 security vulnerability still present in 2.3.4 by Tim Peters · 20 years ago
- f6af76d Modules/getpath.c now compiles properly under OS X when using the by Brett Cannon · 20 years ago
- 6cc4814 Change comment from C++ style to C. by Brett Cannon · 20 years ago
- 1afd480 Fix for #932977: MacOSX does not pass the whole pathname in argv[0] for by Jack Jansen · 20 years ago
- b70557f Make sure zip_path is null-terminated, since it's on the stack by Neal Norwitz · 22 years ago
- 52e14d6 PEP 302 + zipimport: by Just van Rossum · 22 years ago
- 0a116f3 Squashed compiler warnings by adding casts, making sure prototypes are in by Jack Jansen · 22 years ago
- 79acb9e Patch #614055: Support OpenVMS. by Martin v. Löwis · 22 years ago
- bcf9f9e SF # 602108 ensure string is null terminated after strncpy by Neal Norwitz · 22 years ago
- cdc4451 Include <unistd.h> in Python.h. Fixes #500924. by Martin v. Löwis · 23 years ago
- 55070f5 Changed logic for finding python home in Mac OS X framework Pythons. by Jack Jansen · 23 years ago
- e296ced Be more rigorous about making pathnames absolute, to address SF bug #424002. by Guido van Rossum · 23 years ago
- e925faf With WITH_NEXT_FRAMEWORK defined we now also expect a normal Python by Jack Jansen · 23 years ago
- f9836ba Put conditional S_ISDIR definition(s) into pyport.h. by Martin v. Löwis · 23 years ago
- 7d4bb9f Add -E command line switch (ignore environment variables like PYTHONHOME by Neil Schemenauer · 23 years ago
- 6cf0702 Build now happens in toplevel directory, not Modules. Don't monkey with VPATH. by Neil Schemenauer · 24 years ago
- d0e74ea Clean up some comments and the default VERSION. by Guido van Rossum · 24 years ago
- b64c223 Minor ANSIfication: lib_python no longer needs to be initialized by Fred Drake · 24 years ago
- 6372fe1 Fix buffer overflow vulnerabilities in calculate_path(). Code used by Jeremy Hylton · 24 years ago
- 7198ba9 fix bug #114290: when interpreter's argv[0] has a relative path make by Jeremy Hylton · 24 years ago
- 8586991 REMOVED all CWI, CNRI and BeOpen copyright markings. by Guido van Rossum · 24 years ago
- bd4bc4e Even more ANSIfication: fix as many function pointers and declarations as by Thomas Wouters · 24 years ago
- f3f33dc Bunch of minor ANSIfications: 'void initfunc()' -> 'void initfunc(void)', by Thomas Wouters · 24 years ago
- 7e47402 Spelling fixes supplied by Rob W. W. Hooft. All these are fixes in either by Thomas Wouters · 24 years ago
- edabdc1 ANSI-fied sources, converted to four-space indentation. by Fred Drake · 24 years ago
- ffcc381 Change copyright notice - 2nd try. by Guido van Rossum · 24 years ago
- fd71b9e Change copyright notice. by Guido van Rossum · 24 years ago
- b6f657c Trent Mick: use size_t instead of int where appropriate (various spots). by Guido van Rossum · 24 years ago
- 847a996 Patch from M.-A. Lemburg: Python on UNIX now trusts PYTHONHOME unconditionally by Jeremy Hylton · 24 years ago
- b18618d Vladimir Marangozov's long-awaited malloc restructuring. by Guido van Rossum · 25 years ago
- 54ecc3d Patches by William Lewis for Nextstep descendants. by Guido van Rossum · 26 years ago
- 302be44 When following symlinks to the real executable, use a loop so a by Guido van Rossum · 27 years ago
- 131c92c - Use Py_GetPythonHome() instead of getenv("PYTHONHOME"). by Guido van Rossum · 27 years ago
- d29806c Instead of a single exists(), differentiate between files, modules, by Guido van Rossum · 27 years ago
- 79f016a Remove "Lib/test" from the default path; this is now a package! by Guido van Rossum · 27 years ago
- 266033e Change sharedmodules to lib-dynload. by Guido van Rossum · 27 years ago
- 6b9fdf5 Globally renamed join() to joinpath() to avoid compilation error on Cray. by Guido van Rossum · 27 years ago
- 21f8497 Use string.h, not strings.h by Guido van Rossum · 27 years ago
- 7929c6f Make delimiter and separator static for K&R C. by Guido van Rossum · 27 years ago
- 7d3246d Keep gcc -Wall happy. by Guido van Rossum · 28 years ago
- d776362 Another change suggested by Donn Cave -- forget "step 5", which by Guido van Rossum · 28 years ago
- 573a24a Fix problem reported by Donn Cave: if VPATH is an absolute path, it by Guido van Rossum · 28 years ago
- 9012603 Removed two unused static function: string_addsep() and by Barry Warsaw · 28 years ago
- 305e5d0 Completely revamped the way the default path is constructed. by Guido van Rossum · 28 years ago
- d266eb4 New permission notice, includes CNRI. by Guido van Rossum · 28 years ago
- 6e12d56 Don't have "." in the default path. by Guido van Rossum · 28 years ago
- c34c9a5 provide access to $(exec_)prefix by Guido van Rossum · 28 years ago
- 582646a grand renaming; added copyright to some files by Guido van Rossum · 28 years ago
- 468fc6a Include stdlib.h or declare getenv by Guido van Rossum · 29 years ago
- 667d704 Initial revision by Guido van Rossum · 29 years ago