summaryrefslogtreecommitdiff
path: root/Parser/tokenizer.c
Commit message (Expand)AuthorAgeFilesLines
* Make 'python -tt' the default, meaning Python won't allow mixing tabs andThomas Wouters2006-04-141-35/+4
* Fix crashing bug in tokenizer, when tokenizing files with non-ASCII bytesThomas Wouters2006-03-021-0/+5
* Patch #1440601: Add col_offset attribute to AST nodes.Martin v. Löwis2006-03-011-0/+5
* Change non-ASCII warning into a SyntaxError.Martin v. Löwis2006-02-281-10/+6
* Use Py_ssize_t to count the length.Martin v. Löwis2006-02-161-1/+1
* Merge ssize_t branch.Martin v. Löwis2006-02-151-10/+10
* Fix SF bug #1072182, problems with signed characters.Neal Norwitz2005-12-191-1/+1
* Fix Bug #1378022, UTF-8 files with a leading BOM crashed the interpreter.Neal Norwitz2005-12-181-0/+6
* Fix some more memory leaks.Neal Norwitz2005-11-161-6/+11
* Free coding spec (cs) if there was an error to prevent mem leak. Maybe backp...Neal Norwitz2005-10-211-0/+3
* - Fix segfault with invalid coding.Neal Norwitz2005-10-021-1/+4
* Apply SF patch #1101726: Fix buffer overrun in tokenizer.c when a source fileWalter Dörwald2005-07-121-27/+45
* Patch #802188: better parser error message for non-EOL following line cont.Martin v. Löwis2005-03-031-1/+1
* 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
* Getting rid of all the code inside #ifdef macintosh too.Jack Jansen2003-11-201-11/+0
* Add URL for PEP to the source code encoding warning.Marc-André Lemburg2003-02-171-6/+12
* 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-111-3/+5
* Fix compiler warning on HP-UX.Neal Norwitz2002-11-021-2/+2
* Patch #512981: Update readline input stream on sys.stdin/out change.Martin v. Löwis2002-10-261-2/+2
* Removed reliance on gcc/C99 extension.Tim Peters2002-09-031-1/+3
* Ignore encoding declarations inside strings. Fixes #603509.Martin v. Löwis2002-09-031-1/+16
* Squash a few calls to the hideously expensive PyObject_CallObject(o,a)Guido van Rossum2002-08-161-3/+14
* provide less mysterious error messages when seeing end-of-line inSkip Montanaro2002-08-151-3/+6
* Use Py_FatalError instead of abort.Martin v. Löwis2002-08-071-2/+3
* Fix PEP 263 code --without-unicode. Fixes #591943.Martin v. Löwis2002-08-071-0/+18
* Added a cast to shut up a compiler warning.Jack Jansen2002-08-051-1/+1
* Add 1 to lineno in deprecation warning. Fixes #590888.Martin v. Löwis2002-08-051-1/+3
* Make pgen compile with pydebug. Duplicate normalized names, as it mayMartin v. Löwis2002-08-041-2/+6
* Group statements properly.Martin v. Löwis2002-08-041-6/+12
* Repaired a fatal compiler error in the debug build: it's not clear whatTim Peters2002-08-041-1/+1
* Squash compiler wng about signed-vs-unsigned mismatch.Tim Peters2002-08-041-1/+1
* Patch #534304: Implement phase 1 of PEP 263.Martin v. Löwis2002-08-041-8/+440
* Mass checkin of universal newline support.Jack Jansen2002-04-141-4/+5
* SF patch #455966: Allow leading 0 in float/imag literals.Tim Peters2001-08-301-3/+22
* SF bug [#455775] float parsing discrepancy.Tim Peters2001-08-271-5/+8
* Implement PEP 238 in its (almost) full glory.Guido van Rossum2001-08-081-0/+13
* SF but #417587: compiler warnings compiling 2.1.Tim Peters2001-04-211-3/+0
* REMOVED all CWI, CNRI and BeOpen copyright markings.Guido van Rossum2000-09-011-9/+0
* Support for three-token characters (**=, >>=, <<=) which was written byThomas Wouters2000-08-241-0/+94
* Mass ANSIfication.Thomas Wouters2000-07-221-25/+12
* Create two new exceptions: IndentationError and TabError. These areFred Drake2000-07-111-9/+5
* Nuke all remaining occurrences of Py_PROTO and Py_FPROTO.Tim Peters2000-07-091-4/+4
* Change copyright notice - 2nd try.Guido van Rossum2000-06-301-6/+0
* Change copyright notice.Guido van Rossum2000-06-301-22/+7
* Trent Mick: familiar simple Win64 patchesGuido van Rossum2000-06-281-3/+3
* Vladimir Marangozov's long-awaited malloc restructuring.Guido van Rossum2000-05-031-6/+7
* Only write message about changed Tab size with -v.Guido van Rossum2000-04-031-1/+2