summaryrefslogtreecommitdiffstats
path: root/Python/pythonrun.c
Commit message (Expand)AuthorAgeFilesLines
* Patch #984714: Properly diagnose E_DECODE errors.Martin v. Löwis2004-07-211-0/+3
* This closes patch:Michael W. Hudson2004-07-071-1/+2
* Changed random calls to PyThreadState_Get() to use the macroNicholas Bastin2004-03-241-3/+3
* Lost reference.Armin Rigo2004-03-221-6/+8
* remove support for missing ANSI C header files (limits.h, stddef.h, etc).Skip Montanaro2004-02-101-4/+0
* Py_Finalize(): disabled the second call of cyclic gc, and added extensiveTim Peters2003-12-011-2/+27
* Getting rid of all the code inside #ifdef macintosh too.Jack Jansen2003-11-201-14/+0
* Getting rid of support for the ancient Apple MPW compiler.Jack Jansen2003-11-191-12/+0
* Patch #804543: strdup saved locales. Backported to 2.3.Martin v. Löwis2003-11-131-1/+2
* Simplify and speedup uses of Py_BuildValue():Raymond Hettinger2003-10-121-1/+1
* Fix refcounting and cut & paste error (?) in last checkin.Michael W. Hudson2003-08-111-3/+1
* Move initialization of sys.std{in,out}.encoding to Py_Initialize.Martin v. Löwis2003-08-091-15/+51
* Correct previous patch looking for warnings module: sys.modules, notMark Hammond2003-07-161-1/+1
* Fix [ 771097 ] frozen programs fail due to implicit import of "warnings".Mark Hammond2003-07-151-5/+36
* PyGILState cleanup was too early - destructors called via module cleanup may ...Mark Hammond2003-04-221-5/+5
* handle_system_exit(): This leaked the current exception info, inTim Peters2003-04-191-4/+16
* New PyGILState_ API - implements pep 311, from patch 684256.Mark Hammond2003-04-191-0/+15
* _Py_PrintReferences(): Changed to print object address at start of eachTim Peters2003-04-171-2/+9
* - New C API PyGC_Collect(), same as calling gc.collect().Guido van Rossum2003-04-171-0/+8
* A missing piece of the PEP 269 patch: add PyParser_SetError(), aGuido van Rossum2003-04-171-0/+9
* Trimmed trailing whitespace.Tim Peters2003-04-171-10/+10
* Py_Finalize(): Reverted recent changes that tried to move theTim Peters2003-04-171-8/+11
* - pythunrun.c, Py_Finalize(): move the call to _Py_PrintReferences()Guido van Rossum2003-04-151-8/+8
* Move the call to _Py_PrintReferences() a bit further down. ThisGuido van Rossum2003-04-151-7/+12
* Move declaration of enc to scope where it is usedNeal Norwitz2003-04-101-2/+1
* Fixed SF bug #663074. The codec system was using global staticGustavo Niemeyer2003-03-191-8/+0
* Declare all variables at the start of their scope.Fred Drake2003-03-051-1/+1
* Always initialize Py_FileSystemDefaultEncoding on Unix in Py_Initialize,Martin v. Löwis2003-03-051-0/+28
* Addendum to #683658:Just van Rossum2003-02-251-2/+2
* Fix bug 683658 - PyErr_Warn may cause import deadlock.Mark Hammond2003-02-191-0/+11
* - Finally fixed the bug in compile() and exec where a string endingGuido van Rossum2003-02-131-6/+2
* MacPython-OS9 has had an abort() function for quite a while now, so there's n...Jack Jansen2003-01-241-3/+0
* Patch #671459: Invoke import hooks in Py_NewInterpreter.Martin v. Löwis2003-01-221-0/+1
* Since the *_Init() are private, prefix with _, suggested by SkipNeal Norwitz2002-12-311-2/+2
* SF #561244, Micro optimizationsNeal Norwitz2002-12-301-0/+6
* PEP 302 + zipimport:Just van Rossum2002-12-301-0/+2
* Added missing casts.Jack Jansen2002-12-131-2/+2
* Constify filenames and scripts. Fixes #651362.Martin v. Löwis2002-12-111-41/+41
* Remove _Py_ResetReferences. Fixes bug #529750 "Circular reference makesNeil Schemenauer2002-11-171-4/+0
* If we have a filename and __main__.__file__ hasn't already been set,Fred Drake2002-10-171-1/+11
* s/_alloca/alloca/g; Windows doesn't need the former, at least not unlessTim Peters2002-10-051-2/+2
* provide less mysterious error messages when seeing end-of-line inSkip Montanaro2002-08-151-0/+6
* Patch #534304: Implement phase 1 of PEP 263.Martin v. Löwis2002-08-041-0/+13
* _Py_AskYesNo(): Removed this function. It was defined only in aTim Peters2002-07-091-20/+0
* Fix SF Bug 564931: compile() traceback must include filename.Thomas Heller2002-07-091-2/+27
* The Py_REF_DEBUG/COUNT_ALLOCS/Py_TRACE_REFS macro minefield: addedTim Peters2002-07-091-1/+1
* Patch #569753: Remove support for WIN16.Martin v. Löwis2002-06-301-3/+3
* Ignore SIGXFSZ.Jeremy Hylton2002-04-231-0/+3
* _PyObject_DebugDumpStats: renamed to _PyObject_DebugMallocStats.Tim Peters2002-04-131-0/+5
* Move Unicode finalization further down in the chain.Marc-André Lemburg2002-04-081-5/+5