summaryrefslogtreecommitdiffstats
path: root/Python/pythonrun.c
Commit message (Expand)AuthorAgeFilesLines
...
| | * Recorded merge of revisions 81032 via svnmerge fromAntoine Pitrou2010-05-091-1642/+1642
| | * Merged revisions 81016 via svnmerge fromJean-Paul Calderone2010-05-091-0/+4
| | * Revert my change on initsite(): don't change import site error handler in 3.1,Victor Stinner2010-03-211-4/+14
| | * Merged revisions 78872 via svnmerge fromVictor Stinner2010-03-211-16/+9
| | * Merged revisions 76573 via svnmerge fromAntoine Pitrou2009-11-281-1/+1
| | * Merged revisions 75571,75576-75577 via svnmerge fromAntoine Pitrou2009-10-201-0/+32
* | | faulthandler: dump all threads by defaultVictor Stinner2011-05-071-1/+1
* | | Issue #1856: Avoid crashes and lockups when daemon threads run while theAntoine Pitrou2011-05-041-4/+11
|\ \ \ | |/ /
| * | Issue #1856: Avoid crashes and lockups when daemon threads run while theAntoine Pitrou2011-05-041-4/+11
| * | Issue #10914: Initialize correctly the filesystem codec when creating a newVictor Stinner2011-04-261-8/+15
| * | Issue #10914: Py_NewInterpreter() uses PyErr_PrintEx(0)Victor Stinner2011-04-261-1/+1
| * | Fix #11586: typo in initfsencoding()Victor Stinner2011-03-201-1/+1
| * | Merged revisions 88530 via svnmerge fromVictor Stinner2011-02-231-1/+10
* | | Issue #10914: Initialize correctly the filesystem codec when creating a newVictor Stinner2011-04-261-8/+15
* | | Issue #10914: Py_NewInterpreter() uses PyErr_PrintEx(0)Victor Stinner2011-04-261-1/+1
* | | Issue #10785: Store the filename as Unicode in the Python parser.Victor Stinner2011-04-041-16/+24
* | | Issue #11393: The fault handler handles also SIGABRTVictor Stinner2011-04-011-0/+1
* | | Issue #11393: Add the new faulthandler moduleVictor Stinner2011-03-301-0/+21
* | | Fix #11586: typo in initfsencoding()Victor Stinner2011-03-201-1/+1
* | | Issue #11272: Fix input() and sys.stdin for Windows newlineVictor Stinner2011-02-231-1/+10
|/ /
* | Issue #9566: use Py_ssize_t instead of intVictor Stinner2011-01-041-1/+2
* | Add sys.flags.quiet attribute for the new -q option, as noted missing by Eric...Georg Brandl2010-12-281-0/+1
* | Add an "optimize" parameter to compile() to control the optimization level, a...Georg Brandl2010-12-041-4/+12
* | Merge branches/pep-0384.Martin v. Löwis2010-12-031-2/+10
* | Remove redundant includes of headers that are already included by Python.h.Georg Brandl2010-11-301-4/+0
* | Issue #10255: Fix reference leak in Py_InitializeEx(). Patch by NeilAntoine Pitrou2010-11-201-0/+2
* | Issue #10372: Import the warnings module only after the IO library isAntoine Pitrou2010-11-101-7/+9
* | Issue #10157: Fixed refleaks in pythonrun.c. Patch by Stefan Krah.Hirokazu Yamamoto2010-10-301-0/+3
* | decrement offset when it points to a newline (#10186 followup)Benjamin Peterson2010-10-291-1/+3
* | tighten loopBenjamin Peterson2010-10-241-4/+1
* | remove broken code accounting an offset the size of the line #10186Benjamin Peterson2010-10-241-2/+0
* | initfsencoding(): get_codeset() failure is now a fatal errorVictor Stinner2010-10-191-13/+6
* | _PyImport_FixupExtension() and _PyImport_FindExtension() uses FS encodingVictor Stinner2010-10-171-4/+4
* | Fix ast_error_finish() and err_input(): filename can be NULLVictor Stinner2010-10-161-1/+6
* | Issue #9713, #10114: Parser functions (eg. PyParser_ASTFromFile) expectsVictor Stinner2010-10-161-3/+9
* | Use locale encoding if Py_FileSystemDefaultEncoding is not setVictor Stinner2010-10-151-258/+0
* | redecode_filename(): don't need to initialize variablesVictor Stinner2010-10-151-1/+1
* | Issue #9992: Remove PYTHONFSENCODING environment variable.Victor Stinner2010-10-131-16/+6
* | Issue #9630: Redecode filenames when setting the filesystem encodingVictor Stinner2010-09-291-0/+258
* | Issue #9901: Destroying the GIL in Py_Finalize() can fail if some otherAntoine Pitrou2010-09-201-5/+8
* | Issue #9828: Destroy the GIL in Py_Finalize(), so that it gets properlyAntoine Pitrou2010-09-131-0/+4
* | Issue #8622: Add PYTHONFSENCODING environment variable to override theVictor Stinner2010-08-181-22/+43
* | Issue #8063: Call _PyGILState_Init() earlier in Py_InitializeEx().Victor Stinner2010-08-171-5/+5
* | Issue #477863: Print a warning at shutdown if gc.garbage is not empty.Antoine Pitrou2010-08-081-0/+3
* | Issue #5319: Print an error if flushing stdout fails at interpreterAntoine Pitrou2010-08-081-1/+1
* | 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