summaryrefslogtreecommitdiffstats
path: root/Python/pythonrun.c
Commit message (Expand)AuthorAgeFilesLines
* Issue #9079: Added _PyTime_gettimeofday(_PyTime_timeval *tp) to C APIAlexander Belopolsky2010-08-051-0/+2
* Issue #6543: Write the traceback in the terminal encoding instead of utf-8.Victor Stinner2010-06-171-1/+1
* Issue #8965: initfsencoding() doesn't change the encoding on Mac OS XVictor Stinner2010-06-111-17/+19
* Py_FatalError(): don't sys sys.last_xxx variablesVictor Stinner2010-06-081-1/+1
* Issue #3798: sys.exit(message) writes the message to sys.stderr file, insteadVictor Stinner2010-05-211-4/+6
* Issue #8766: Initialize _warnings module before importing the first module.Victor Stinner2010-05-191-1/+3
* Issue #6697: Check that _PyUnicode_AsString() result is not NULLVictor Stinner2010-05-191-5/+21
* handle_system_exit() flushs files to warranty the output orderVictor Stinner2010-05-171-0/+4
* Issue #8610: Load file system codec at startup, and display a fatal error onVictor Stinner2010-05-151-20/+42
* Issue #4653: fix typo in flush_std_files()Victor Stinner2010-05-141-1/+1
* Recorded merge of revisions 81029 via svnmerge fromAntoine Pitrou2010-05-091-1636/+1636
* Merged revisions 81007 via svnmerge fromJean-Paul Calderone2010-05-091-0/+4
* err_input(): don't encode/decode the unicode messageVictor Stinner2010-05-081-13/+12
* PEP 3147Barry Warsaw2010-04-171-0/+2
* * Replaces the internals of the subprocess module from fork through exec onGregory P. Smith2010-03-141-0/+26
* Merged revisions 78826 via svnmerge fromVictor Stinner2010-03-121-16/+9
* #4532: fixes to make 3.x compile on QNX 6.3.2 (reported by Matt Kraai)Andrew M. Kuchling2010-02-221-1/+1
* Issue #4486: When an exception has an explicit cause, do not print its implic...Antoine Pitrou2009-11-281-1/+1
* Merged revisions 75570 via svnmerge fromAntoine Pitrou2009-10-201-0/+32
* bytes -> bytearrayBenjamin Peterson2009-05-101-1/+1
* Issue #5915: Implement PEP 383, Non-decodable Bytes inMartin v. Löwis2009-05-051-16/+16
* Merged revisions 71152 via svnmerge fromMatthias Klose2009-04-041-2/+3
* The BDFL has retired! Long live the FLUFL (Friendly Language Uncle For Life)!Brett Cannon2009-04-011-0/+2
* Merged revisions 70908 via svnmerge fromJesse Noller2009-03-311-0/+1
* merge the io-c branch: C implementation of the io moduleBenjamin Peterson2009-03-041-1/+1
* ignore the coding cookie in compile(), exec(), and eval() if the source is a ...Benjamin Peterson2009-03-021-3/+11
* Followup of #4705: we can't skip the binary buffering layer for stdin because...Antoine Pitrou2009-01-261-2/+7
* Fix bug introduced in r68451: stdio must always be opened in line-buffered modeAntoine Pitrou2009-01-091-7/+15
* Issue #4705: Fix the -u ("unbuffered binary stdout and stderr") command-lineAntoine Pitrou2009-01-091-9/+76
* Merged revisions 68174 via svnmerge fromBenjamin Peterson2009-01-021-0/+2
* Merged revisions 68172-68173 via svnmerge fromMartin v. Löwis2009-01-021-3/+17
* 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