summaryrefslogtreecommitdiffstats
path: root/Python/pythonrun.c
Commit message (Expand)AuthorAgeFilesLines
* Merged revisions 67295,67301-67302,67318,67330,67342-67343 via svnmerge fromAmaury Forgeot d'Arc2008-11-221-1/+1
* Merged revisions 67066 via svnmerge fromBenjamin Peterson2008-10-311-6/+12
* Issue 3723: Fixed initialization of subinterpretersChristian Heimes2008-10-301-0/+16
* Issue #4213: The file system encoding is now normalized by the codec subsyste...Christian Heimes2008-10-301-9/+32
* compile _bytesio and _stringio into the binary and initalize stdio before sit...Benjamin Peterson2008-09-051-2/+2
* #3663: extra DECREF on syntax errors.Antoine Pitrou2008-08-261-1/+4
* fix #3653 Python could segfault if invalid values were passed to sys.excepthookBenjamin Peterson2008-08-231-0/+7
* Rename PyUnicode_AsString -> _PyUnicode_AsString andMarc-André Lemburg2008-08-071-8/+8
* Merged revisions 65012,65035,65037-65040,65048,65057,65077,65091-65095,65097-...Georg Brandl2008-07-231-6/+7
* Merged revisions 64623,64640,64665,64687,64689-64690,64719,64721,64735,64742,...Georg Brandl2008-07-161-12/+12
* Make these files to compile again under Windows.Thomas Heller2008-07-151-2/+3
* implement chained exception tracebacksBenjamin Peterson2008-07-151-90/+161
* #2630: Implement PEP 3138.Georg Brandl2008-06-111-1/+1
* Issue 1342: Python could not start if installed in a directoryAmaury Forgeot d'Arc2008-06-111-1/+1
* Implement PEP 3121: new module initialization and finalization API.Martin v. Löwis2008-06-111-4/+2
* Move the codec decode type checks to bytes/bytearray.decode().Marc-André Lemburg2008-06-061-8/+4
* Fix uninitialized variable access, release memory.Martin v. Löwis2008-06-021-0/+3
* Forward-port PYTHONIOENCODING.Martin v. Löwis2008-06-021-6/+17
* Renamed PyString to PyBytesChristian Heimes2008-05-261-1/+1
* Renamed PyBytes to PyByteArrayChristian Heimes2008-05-261-2/+2
* Merged revisions 63066-63076,63079,63081-63085,63087-63097,63099,63101-63104 ...Alexandre Vassalotti2008-05-161-2/+2
* Merged revisions 62774-62775,62785,62787-62788 via svnmerge fromChristian Heimes2008-05-061-0/+1
* Added fast alternate io.BytesIO implementation and its test suite.Alexandre Vassalotti2008-05-061-2/+2
* Merged revisions 62260-62261,62266,62271,62277-62279,62289-62290,62293-62298,...Christian Heimes2008-04-131-60/+15
* Add a NEWS entry for issue2221.Amaury Forgeot d'Arc2008-04-101-2/+3
* Change command line processing API to use wchar_t.Martin v. Löwis2008-04-051-10/+20
* Issue2221: in Idle, exec('xx') raised a SystemError('error return without exc...Amaury Forgeot d'Arc2008-04-041-0/+7
* Merged revisions 61958-61959 via svnmerge fromChristian Heimes2008-03-261-4/+2
* Merged revisions 61954,61956-61957 via svnmerge fromChristian Heimes2008-03-261-0/+1
* Merged revisions 61952-61953 via svnmerge fromChristian Heimes2008-03-261-5/+18
* Issue2297: Fix a stack overflow in Windows caused by -v and -vv. When python...Trent Nelson2008-03-191-3/+17
* Merged revisions 60481,60485,60489-60492,60494-60496,60498-60499,60501-60503,...Christian Heimes2008-02-191-2/+8
* Merged revisions 60481,60485,60489-60492,60494-60496,60498-60499,60501-60503,...Christian Heimes2008-02-091-0/+1
* Merged revisions 60364-60378 via svnmerge fromChristian Heimes2008-01-271-0/+3
* Merged revisions 59822-59841 via svnmerge fromChristian Heimes2008-01-071-0/+3
* Interpreter wasn't displaying the location of a SyntaxErrorKurt B. Kaiser2008-01-051-1/+1
* Solve issue 1400 at least in part -- whenever we run Python code, at the endGuido van Rossum2007-12-051-0/+24
* Add an errors parameter to open() and TextIOWrapper() to specify error handling.Guido van Rossum2007-12-031-3/+3
* Cleanup: Replaced most PyInt_ aliases with PyLong_ and disabled the aliases i...Christian Heimes2007-12-021-4/+4
* #1535: rename __builtin__ module to builtins.Georg Brandl2007-12-021-8/+8
* Merged revisions 59226-59233 via svnmerge fromChristian Heimes2007-11-301-5/+5
* Partial fix for bug #1306Christian Heimes2007-11-301-0/+6
* Replace PyObject_Unicode with PyObject_Str everywhere, and remove theThomas Heller2007-11-151-4/+4
* Added some additional checks for sys.std?? is None, see #1440Christian Heimes2007-11-151-4/+9
* Moved the initalization of the exception before the initialization of sys.Christian Heimes2007-11-141-3/+3
* Fixed space -> tabChristian Heimes2007-11-131-3/+3
* Fix for #1415 pythonw.exe fails because std streams a missingChristian Heimes2007-11-131-12/+49
* Merging the py3k-pep3137 branch back into the py3k branch.Guido van Rossum2007-11-061-4/+28
* Patch 1352 (continued in issue 1329) by Christian Heimes.Guido van Rossum2007-10-301-1/+8
* Patch 1329 (partial) by Christian Heimes.Guido van Rossum2007-10-301-4/+4