summaryrefslogtreecommitdiffstats
path: root/Python/pythonrun.c
Commit message (Expand)AuthorAgeFilesLines
* Make identifiers str (not str8) objects throughout.Martin v. Löwis2007-06-101-0/+2
* Get rid of all #ifdef Py_USING_UNICODE (it is always present now).Guido van Rossum2007-05-031-6/+2
* Checkpoint. Manipulated things so that string literals are alwaysGuido van Rossum2007-04-271-1/+0
* Merged revisions 53952-54987 via svnmerge fromGuido van Rossum2007-04-271-7/+26
* Patch #1680961: remove sys.exitfunc and replace it with a private C API. Also...Collin Winter2007-03-211-23/+19
* SF patch #1669633, add methods for bytes from Pete Shinners.Neal Norwitz2007-02-271-0/+4
* Remove the exceptions builtin module, all the exceptions are already builtin.Neal Norwitz2007-02-261-2/+1
* Kill off softspace completely (except in formatter.py which seems to haveGuido van Rossum2007-02-091-15/+0
* Merged revisions 53451-53537 via svnmerge fromThomas Wouters2007-02-011-3/+6
* Merged the int/long unification branch, by very crude means (sorry Thomas!).Guido van Rossum2007-01-141-3/+5
* Four months of trunk changes (including a few releases...)Thomas Wouters2006-12-131-0/+14
* Merge current trunk into p3yk. This includes the PyNumber_Index API change,Thomas Wouters2006-08-211-0/+4
* Merged revisions 46753-51188 via svnmerge fromThomas Wouters2006-08-111-8/+41
* Partially merge trunk into p3yk. The removal of Mac/Tools is confusing svnThomas Wouters2006-06-081-13/+15
* Much-needed merge (using svnmerge.py this time) of trunk changes into p3yk.Thomas Wouters2006-05-271-4/+8
* Merge p3yk branch with the trunk up to revision 45595. This breaks a fairThomas Wouters2006-04-211-16/+131
* _Py_QnewFlag and INPLACE_DIVIDE are not necessary any longerNeal Norwitz2006-03-171-4/+0
* Checkpoint. 218 tests are okay; 53 are failing. Done so far:Guido van Rossum2006-03-151-3/+1
* Address an coverity issue. Coverity was complaining about a line that's fine,Guido van Rossum2006-03-071-1/+2
* Fix warnings on x86 (32-bit).Neal Norwitz2006-03-061-1/+2
* Use %Id for size_t-ish things on Win64.Martin v. Löwis2006-03-051-1/+1
* Use Py_ssize_t for _Py_RefTotal.Neal Norwitz2006-03-041-6/+12
* TabifyNeal Norwitz2006-03-041-34/+34
* Get rid of run_err_mod(). It was only used in two places.Neal Norwitz2006-03-041-14/+4
* Fix refleak in PyErr_Display().Brett Cannon2006-03-021-15/+14
* Reconst parameters that lost their const in the AST merge.Martin v. Löwis2006-03-011-1/+1
* PEP 352 implementation. Creates a new base class, BaseException, which has anBrett Cannon2006-03-011-7/+5
* from __future__ import with_statement addon for 'with', mostly written byThomas Wouters2006-02-281-2/+4
* Check whether there are flags.Martin v. Löwis2006-02-261-1/+1
* Generate code to recursively copy an AST intoMartin v. Löwis2006-02-261-0/+5
* Merge ssize_t branch.Martin v. Löwis2006-02-151-1/+1
* Fix Bug #1378022, UTF-8 files with a leading BOM crashed the interpreter.Neal Norwitz2005-12-181-2/+2
* Merge from ast-arena. This reduces the code in Python/ast.c by ~300 lines,Neal Norwitz2005-12-171-51/+58
* Patch #1350409: Port signal handling to VS 2005.Martin v. Löwis2005-11-281-0/+17
* Merge ast-branch to headJeremy Hylton2005-10-201-152/+124
* - Fix segfault with invalid coding.Neal Norwitz2005-10-021-1/+1
* Forward UnicodeDecodeError into SyntaxError for source encoding errors.Martin v. Löwis2005-08-241-5/+7
* * Improve code for the empty frozenset singleton:Raymond Hettinger2005-08-011-0/+1
* This is my patch:Michael W. Hudson2005-05-271-0/+2
* Move exception finalisation later in the shutdown process - thisAnthony Baxter2005-03-291-7/+8
* Patch #802188: better parser error message for non-EOL following line cont.Martin v. Löwis2005-03-031-0/+3
* Patch #975056 - fixes for restartable signals on *BSD. In addition,Anthony Baxter2004-10-131-24/+19
* SF patch 1044089: New C API function PyEval_ThreadsInitialized(), by NickTim Peters2004-10-111-1/+0
* Finalize the freelist of list objects.Raymond Hettinger2004-10-071-0/+1
* Patch #900727: Add Py_InitializeEx to allow embedding without signals.Martin v. Löwis2004-08-191-2/+10
* 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