summaryrefslogtreecommitdiff
path: root/Parser
Commit message (Expand)AuthorAgeFilesLines
* Whitespace normalization.Tim Peters2005-12-253-814/+814
* Fix SF bug #1072182, problems with signed characters.Neal Norwitz2005-12-192-2/+3
* Fix Bug #1378022, UTF-8 files with a leading BOM crashed the interpreter.Neal Norwitz2005-12-181-0/+6
* Merge from ast-arena. This reduces the code in Python/ast.c by ~300 lines,Neal Norwitz2005-12-171-5/+10
* When regenerating files like Python-ast.h, take care that the generatedArmin Rigo2005-12-141-3/+2
* SF #1373150, diffs in working copy after a buildNeal Norwitz2005-12-111-1/+5
* Fix some more memory leaks.Neal Norwitz2005-11-161-6/+11
* Prevent unlikely memory leak, tok should always be freed when parsetok() returnsNeal Norwitz2005-11-151-0/+1
* Thou shalt not lie, there are really 5 types nowNeal Norwitz2005-11-151-1/+1
* Whoops, checkin consistent versions of *all* files to stop pollutingNeal Norwitz2005-11-131-6/+80
* Prevent name pollution by making lots of internal functions static.Neal Norwitz2005-11-131-4/+4
* Remove .cvsignore files, as they live in svn:ignoreMartin v. Löwis2005-10-301-6/+0
* Use PyErr_NoMemory() instead of rolling our own.Neal Norwitz2005-10-231-7/+5
* Free coding spec (cs) if there was an error to prevent mem leak. Maybe backp...Neal Norwitz2005-10-211-0/+3
* Merge ast-branch to headJeremy Hylton2005-10-207-4/+1967
* - Fix segfault with invalid coding.Neal Norwitz2005-10-023-2/+12
* Apply SF patch #1101726: Fix buffer overrun in tokenizer.c when a source fileWalter Dörwald2005-07-121-27/+45
* In a threads-disabled build, typing Ctrl-C into a raw_input() crashed,Michael W. Hudson2005-04-071-0/+4
* Patch #802188: better parser error message for non-EOL following line cont.Martin v. Löwis2005-03-031-1/+1
* Patch #975056 - fixes for restartable signals on *BSD. In addition,Anthony Baxter2004-10-131-13/+4
* SF #941229: Decode source code with sys.stdin.encoding in interactiveHye-Shik Chang2004-08-041-0/+61
* PEP-0318, @decorator-style. In Guido's words:Anthony Baxter2004-08-021-0/+2
* PyThreadState_Swap(NULL) didn't do what I thought it did. FixesMichael W. Hudson2004-07-081-1/+1
* Pass the flags along, rather than ignoring them. Backport candidateNeal Norwitz2004-07-081-1/+1
* "#if WITH_THREAD" is incorrect; must be #ifdef instead; WITH_THREADTim Peters2004-07-071-4/+4
* This closes patch:Michael W. Hudson2004-07-071-3/+38
* [Patch #974633] Check PyObject_MALLOC return for errorAndrew M. Kuchling2004-06-291-0/+4
* Fix for SF 780407.Guido van Rossum2004-03-201-1/+1
* Remove support for --without-universal-newlines (see PEP 11).Skip Montanaro2004-02-071-2/+0
* Remove a "temporary" piece of code that was probably unneeded sinceGuido van Rossum2003-12-151-7/+0
* Talk about old code: removed a reference to THINK_C.Jack Jansen2003-11-201-30/+0
* Getting rid of all the code inside #ifdef macintosh too.Jack Jansen2003-11-203-28/+0
* Getting rid of support for the ancient Apple MPW compiler.Jack Jansen2003-11-192-24/+0
* SF bug 751956: graminit.[ch] don't build on windowsTim Peters2003-06-171-1/+4
* Patch #734231: Update RiscOS support. In particular, correctMartin v. Löwis2003-05-101-0/+4
* Patch #708495: Port more stuff to OpenVMS.Martin v. Löwis2003-05-031-0/+8
* Remove file that was moved to ../IncludeGuido van Rossum2003-04-291-18/+0
* Changes from Jonathan Riehl to allow his pgen extension (PEP 269) toGuido van Rossum2003-04-173-5/+34
* compile_atom(): Neal's last checkin removing the setting of i brokeBarry Warsaw2003-02-281-0/+3
* Remove setting i since it isn't used. Found in unrelated bug 690012.Neal Norwitz2003-02-281-3/+0
* Add URL for PEP to the source code encoding warning.Marc-André Lemburg2003-02-171-6/+12
* - Finally fixed the bug in compile() and exec where a string endingGuido van Rossum2003-02-131-0/+9
* patch 680474 that fixes bug 679880: compile/eval/exec refused utf-8 bomJust van Rossum2003-02-091-2/+2
* Fix [ 665014 ] files with long lines and an encoding crash.Mark Hammond2003-01-141-1/+2
* Constify filenames and scripts. Fixes #651362.Martin v. Löwis2002-12-113-12/+14
* Fix compiler warning on HP-UX.Neal Norwitz2002-11-021-2/+2
* Change PyOS_Readline declaration to match the recent change to myreadline.cSkip Montanaro2002-10-271-2/+2
* Patch #512981: Update readline input stream on sys.stdin/out change.Martin v. Löwis2002-10-262-10/+22
* Removed reliance on gcc/C99 extension.Tim Peters2002-09-031-1/+3
* Ignore encoding declarations inside strings. Fixes #603509.Martin v. Löwis2002-09-032-1/+17