summaryrefslogtreecommitdiff
path: root/Python/pythonrun.c
Commit message (Expand)AuthorAgeFilesLines
* Merged revisions 59822-59841 via svnmerge fromChristian Heimes2008-01-071-0/+3
* Interpreter wasn't displaying the location of a SyntaxErrorKurt B. Kaiser2008-01-051-1/+1
* Solve issue 1400 at least in part -- whenever we run Python code, at the endGuido van Rossum2007-12-051-0/+24
* Add an errors parameter to open() and TextIOWrapper() to specify error handling.Guido van Rossum2007-12-031-3/+3
* Cleanup: Replaced most PyInt_ aliases with PyLong_ and disabled the aliases i...Christian Heimes2007-12-021-4/+4
* #1535: rename __builtin__ module to builtins.Georg Brandl2007-12-021-8/+8
* Merged revisions 59226-59233 via svnmerge fromChristian Heimes2007-11-301-5/+5
* Partial fix for bug #1306Christian Heimes2007-11-301-0/+6
* Replace PyObject_Unicode with PyObject_Str everywhere, and remove theThomas Heller2007-11-151-4/+4
* Added some additional checks for sys.std?? is None, see #1440Christian Heimes2007-11-151-4/+9
* Moved the initalization of the exception before the initialization of sys.Christian Heimes2007-11-141-3/+3
* Fixed space -> tabChristian Heimes2007-11-131-3/+3
* Fix for #1415 pythonw.exe fails because std streams a missingChristian Heimes2007-11-131-12/+49
* Merging the py3k-pep3137 branch back into the py3k branch.Guido van Rossum2007-11-061-4/+28
* Patch 1352 (continued in issue 1329) by Christian Heimes.Guido van Rossum2007-10-301-1/+8
* Patch 1329 (partial) by Christian Heimes.Guido van Rossum2007-10-301-4/+4
* Issue 1267, continued.Guido van Rossum2007-10-221-3/+3
* Patch 1267 by Christian Heimes.Guido van Rossum2007-10-191-2/+84
* Patch #1272, by Christian Heimes and Alexandre Vassalotti.Guido van Rossum2007-10-151-1/+2
* get rid of some more PyString uses.Guido van Rossum2007-10-101-15/+19
* Convert code from sys.stdin.encoding to UTF-8 inMartin v. Löwis2007-09-041-7/+22
* Explicitly convert err->text to Unicode. Fixes #1069.Martin v. Löwis2007-08-311-3/+12
* Make some internal functions staticNeal Norwitz2007-08-271-1/+1
* Use unicodeNeal Norwitz2007-08-251-2/+2
* Implement PEP 3131. Add isidentifier to str.Martin v. Löwis2007-08-151-0/+4
* Set sys.stdout.encoding properly.Martin v. Löwis2007-08-111-5/+7
* Silence compiler warning.Guido van Rossum2007-07-101-1/+1
* Upon exit, flush stdout and stderr (twice: before and after the code thatGuido van Rossum2007-07-091-0/+32
* Rip out the file object's implementation.Guido van Rossum2007-06-121-34/+0
* 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