aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/Python/pythonrun.c
Commit message (Expand)AuthorAge
...
* Issue 1342: Python could not start if installed in a directoryAmaury Forgeot d'Arc2008-06-11
* Implement PEP 3121: new module initialization and finalization API.Martin v. Löwis2008-06-11
* Move the codec decode type checks to bytes/bytearray.decode().Marc-André Lemburg2008-06-06
* Fix uninitialized variable access, release memory.Martin v. Löwis2008-06-02
* Forward-port PYTHONIOENCODING.Martin v. Löwis2008-06-02
* Renamed PyString to PyBytesChristian Heimes2008-05-26
* Renamed PyBytes to PyByteArrayChristian Heimes2008-05-26
* Merged revisions 63066-63076,63079,63081-63085,63087-63097,63099,63101-63104 ...Alexandre Vassalotti2008-05-16
* Merged revisions 62774-62775,62785,62787-62788 via svnmerge fromChristian Heimes2008-05-06
* Added fast alternate io.BytesIO implementation and its test suite.Alexandre Vassalotti2008-05-06
* Merged revisions 62260-62261,62266,62271,62277-62279,62289-62290,62293-62298,...Christian Heimes2008-04-13
* Add a NEWS entry for issue2221.Amaury Forgeot d'Arc2008-04-10
* Change command line processing API to use wchar_t.Martin v. Löwis2008-04-05
* Issue2221: in Idle, exec('xx') raised a SystemError('error return without exc...Amaury Forgeot d'Arc2008-04-04
* Merged revisions 61958-61959 via svnmerge fromChristian Heimes2008-03-26
* Merged revisions 61954,61956-61957 via svnmerge fromChristian Heimes2008-03-26
* Merged revisions 61952-61953 via svnmerge fromChristian Heimes2008-03-26
* Issue2297: Fix a stack overflow in Windows caused by -v and -vv. When python...Trent Nelson2008-03-19
* Merged revisions 60481,60485,60489-60492,60494-60496,60498-60499,60501-60503,...Christian Heimes2008-02-19
* Merged revisions 60481,60485,60489-60492,60494-60496,60498-60499,60501-60503,...Christian Heimes2008-02-09
* Merged revisions 60364-60378 via svnmerge fromChristian Heimes2008-01-27
* Merged revisions 59822-59841 via svnmerge fromChristian Heimes2008-01-07
* Interpreter wasn't displaying the location of a SyntaxErrorKurt B. Kaiser2008-01-05
* Solve issue 1400 at least in part -- whenever we run Python code, at the endGuido van Rossum2007-12-05
* Add an errors parameter to open() and TextIOWrapper() to specify error handling.Guido van Rossum2007-12-03
* Cleanup: Replaced most PyInt_ aliases with PyLong_ and disabled the aliases i...Christian Heimes2007-12-02
* #1535: rename __builtin__ module to builtins.Georg Brandl2007-12-02
* Merged revisions 59226-59233 via svnmerge fromChristian Heimes2007-11-30
* Partial fix for bug #1306Christian Heimes2007-11-30
* Replace PyObject_Unicode with PyObject_Str everywhere, and remove theThomas Heller2007-11-15
* Added some additional checks for sys.std?? is None, see #1440Christian Heimes2007-11-15
* Moved the initalization of the exception before the initialization of sys.Christian Heimes2007-11-14
* Fixed space -> tabChristian Heimes2007-11-13
* Fix for #1415 pythonw.exe fails because std streams a missingChristian Heimes2007-11-13
* Merging the py3k-pep3137 branch back into the py3k branch.Guido van Rossum2007-11-06
* Patch 1352 (continued in issue 1329) by Christian Heimes.Guido van Rossum2007-10-30
* Patch 1329 (partial) by Christian Heimes.Guido van Rossum2007-10-30
* Issue 1267, continued.Guido van Rossum2007-10-22
* Patch 1267 by Christian Heimes.Guido van Rossum2007-10-19
* Patch #1272, by Christian Heimes and Alexandre Vassalotti.Guido van Rossum2007-10-15
* get rid of some more PyString uses.Guido van Rossum2007-10-10
* Convert code from sys.stdin.encoding to UTF-8 inMartin v. Löwis2007-09-04
* Explicitly convert err->text to Unicode. Fixes #1069.Martin v. Löwis2007-08-31
* Make some internal functions staticNeal Norwitz2007-08-27
* Use unicodeNeal Norwitz2007-08-25
* Implement PEP 3131. Add isidentifier to str.Martin v. Löwis2007-08-15
* Set sys.stdout.encoding properly.Martin v. Löwis2007-08-11
* Silence compiler warning.Guido van Rossum2007-07-10
* Upon exit, flush stdout and stderr (twice: before and after the code thatGuido van Rossum2007-07-09
* Rip out the file object's implementation.Guido van Rossum2007-06-12