| Commit message (Expand) | Author | Age | Files | Lines |
* | Issue #3813: cannot lanch python.exe via symbolic link on cygwin. | Hirokazu Yamamoto | 2008-09-09 | 1 | -2/+1 |
|
|
* | Change command line processing API to use wchar_t. | Martin v. Löwis | 2008-04-05 | 1 | -120/+200 |
|
|
* | Merged revisions 53952-54987 via svnmerge from | Guido van Rossum | 2007-04-27 | 1 | -1/+1 |
|
|
* | Merged revisions 46753-51188 via svnmerge from | Thomas Wouters | 2006-08-11 | 1 | -5/+5 |
|
|
* | Merge p3yk branch with the trunk up to revision 45595. This breaks a fair | Thomas Wouters | 2006-04-21 | 1 | -1/+12 |
|
|
* | Patch #931938: prevent setting sys.prefix to "" | Georg Brandl | 2006-02-20 | 1 | -0/+6 |
|
|
* | squash compiler warning on Mac OSX 10.3 | Skip Montanaro | 2006-01-05 | 1 | -0/+4 |
|
|
* | Change type on variable to silence gcc 4 warning. Call signature was found at | Brett Cannon | 2005-09-16 | 1 | -1/+1 |
|
|
* | Bug 1003471: Python 1.5.2 security vulnerability still present in 2.3.4 | Tim Peters | 2004-08-08 | 1 | -4/+10 |
|
|
* | Modules/getpath.c now compiles properly under OS X when using the | Brett Cannon | 2004-06-26 | 1 | -1/+1 |
|
|
* | Change comment from C++ style to C. | Brett Cannon | 2004-06-24 | 1 | -1/+1 |
|
|
* | Fix for #932977: MacOSX does not pass the whole pathname in argv[0] for | Jack Jansen | 2004-06-03 | 1 | -0/+17 |
|
|
* | Make sure zip_path is null-terminated, since it's on the stack | Neal Norwitz | 2002-12-31 | 1 | -0/+1 |
|
|
* | PEP 302 + zipimport: | Just van Rossum | 2002-12-30 | 1 | -0/+18 |
|
|
* | Squashed compiler warnings by adding casts, making sure prototypes are in | Jack Jansen | 2002-12-23 | 1 | -1/+1 |
|
|
* | Patch #614055: Support OpenVMS. | Martin v. Löwis | 2002-12-06 | 1 | -0/+4 |
|
|
* | SF # 602108 ensure string is null terminated after strncpy | Neal Norwitz | 2002-09-13 | 1 | -0/+1 |
|
|
* | Include <unistd.h> in Python.h. Fixes #500924. | Martin v. Löwis | 2002-01-12 | 1 | -4/+0 |
|
|
* | Changed logic for finding python home in Mac OS X framework Pythons. | Jack Jansen | 2001-12-02 | 1 | -47/+45 |
|
|
* | Be more rigorous about making pathnames absolute, to address SF bug | Guido van Rossum | 2001-09-28 | 1 | -53/+58 |
|
|
* | With WITH_NEXT_FRAMEWORK defined we now also expect a normal Python | Jack Jansen | 2001-08-15 | 1 | -6/+20 |
|
|
* | Put conditional S_ISDIR definition(s) into pyport.h. | Martin v. Löwis | 2001-08-08 | 1 | -9/+0 |
|
|
* | Add -E command line switch (ignore environment variables like PYTHONHOME | Neil Schemenauer | 2001-07-23 | 1 | -1/+1 |
|
|
* | Build now happens in toplevel directory, not Modules. Don't monkey with | Neil Schemenauer | 2001-01-24 | 1 | -12/+1 |
|
|
* | Clean up some comments and the default VERSION. | Guido van Rossum | 2001-01-23 | 1 | -3/+2 |
|
|
* | Minor ANSIfication: lib_python no longer needs to be initialized | Fred Drake | 2000-09-28 | 1 | -4/+1 |
|
|
* | Fix buffer overflow vulnerabilities in calculate_path(). Code used | Jeremy Hylton | 2000-09-27 | 1 | -16/+41 |
|
|
* | fix bug #114290: when interpreter's argv[0] has a relative path make | Jeremy Hylton | 2000-09-25 | 1 | -2/+19 |
|
|
* | REMOVED all CWI, CNRI and BeOpen copyright markings. | Guido van Rossum | 2000-09-01 | 1 | -9/+0 |
|
|
* | Even more ANSIfication: fix as many function pointers and declarations as | Thomas Wouters | 2000-07-22 | 1 | -1/+1 |
|
|
* | Bunch of minor ANSIfications: 'void initfunc()' -> 'void initfunc(void)', | Thomas Wouters | 2000-07-21 | 1 | -5/+5 |
|
|
* | Spelling fixes supplied by Rob W. W. Hooft. All these are fixes in either | Thomas Wouters | 2000-07-16 | 1 | -1/+1 |
|
|
* | ANSI-fied sources, converted to four-space indentation. | Fred Drake | 2000-07-08 | 1 | -372/+363 |
|
|
* | Change copyright notice - 2nd try. | Guido van Rossum | 2000-06-30 | 1 | -6/+0 |
|
|
* | Change copyright notice. | Guido van Rossum | 2000-06-30 | 1 | -22/+7 |
|
|
* | Trent Mick: use size_t instead of int where appropriate (various spots). | Guido van Rossum | 2000-06-28 | 1 | -9/+9 |
|
|
* | Patch from M.-A. Lemburg: | Jeremy Hylton | 2000-05-26 | 1 | -25/+23 |
|
|
* | Vladimir Marangozov's long-awaited malloc restructuring. | Guido van Rossum | 2000-05-03 | 1 | -1/+1 |
|
|
* | Patches by William Lewis for Nextstep descendants. | Guido van Rossum | 1999-01-27 | 1 | -1/+25 |
|
|
* | When following symlinks to the real executable, use a loop so a | Guido van Rossum | 1998-04-29 | 1 | -1/+2 |
|
|
* | - Use Py_GetPythonHome() instead of getenv("PYTHONHOME"). | Guido van Rossum | 1998-02-06 | 1 | -2/+4 |
|
|
* | Instead of a single exists(), differentiate between files, modules, | Guido van Rossum | 1998-01-19 | 1 | -13/+70 |
|
|
* | Remove "Lib/test" from the default path; this is now a package! | Guido van Rossum | 1997-12-10 | 1 | -1/+0 |
|
|
* | Change sharedmodules to lib-dynload. | Guido van Rossum | 1997-10-20 | 1 | -6/+6 |
|
|
* | Globally renamed join() to joinpath() to avoid compilation error on Cray. | Guido van Rossum | 1997-08-20 | 1 | -22/+22 |
|
|
* | Use string.h, not strings.h | Guido van Rossum | 1997-06-02 | 1 | -1/+1 |
|
|
* | Make delimiter and separator static for K&R C. | Guido van Rossum | 1997-05-20 | 1 | -3/+11 |
|
|
* | Keep gcc -Wall happy. | Guido van Rossum | 1997-05-13 | 1 | -2/+2 |
|
|
* | Another change suggested by Donn Cave -- forget "step 5", which | Guido van Rossum | 1997-05-12 | 1 | -21/+2 |
|
|
* | Fix problem reported by Donn Cave: if VPATH is an absolute path, it | Guido van Rossum | 1997-05-12 | 1 | -18/+25 |
|
|