summaryrefslogtreecommitdiff
path: root/Parser/tokenizer.c
Commit message (Expand)AuthorAgeFilesLines
* Issue #9020: The Py_IS* macros from pyctype.h should generally only beStefan Krah2010-06-241-1/+1
* Untabify C files. Will watch buildbots.Antoine Pitrou2010-05-091-1370/+1370
* use our own locale independent ctype macrosBenjamin Peterson2010-04-031-19/+3
* ensure that the locale does not affect the tokenization of identifiersBenjamin Peterson2010-04-031-4/+18
* Issue #3137: Don't ignore errors at startup, especially a keyboard interruptVictor Stinner2010-03-101-1/+5
* Issue #7820: The parser tokenizer restores all bytes in the right if the BOMVictor Stinner2010-03-021-22/+32
* rewrite translate_newlines for clarityBenjamin Peterson2009-12-061-12/+11
* fix several compile() issues by translating newlines in the tokenizerBenjamin Peterson2009-11-121-16/+66
* spellingBenjamin Peterson2009-11-071-1/+1
* fix some coding styleBenjamin Peterson2009-10-091-13/+30
* don't mask encoding errors when decoding a string #6289Benjamin Peterson2009-06-161-4/+1
* #3367: revert rev. 65539: this change causes test_parser to failAndrew M. Kuchling2008-08-051-1/+1
* #3367 from Kristjan Valur Jonsson:Andrew M. Kuchling2008-08-051-1/+1
* This reverts r63675 based on the discussion in this thread:Gregory P. Smith2008-06-091-16/+16
* Renamed PyString to PyBytesChristian Heimes2008-05-261-16/+16
* Issue2681: the literal 0o8 was wrongly accepted, and evaluated as float(0.0).Amaury Forgeot d'Arc2008-04-241-1/+1
* Revert r61969 which added casts to Py_CHARMASK to avoid compiler warnings.Neal Norwitz2008-03-281-8/+0
* Make Py3k warnings consistent w.r.t. punctuation; also respect theGeorg Brandl2008-03-251-1/+1
* Finished backporting PEP 3127, Integer Literal Support and Syntax.Eric Smith2008-03-171-1/+25
* Add assertion that we do not blow out newlNeal Norwitz2008-01-271-0/+1
* Fixed bug #1915: Python compiles with --enable-unicode=no again. However seve...Christian Heimes2008-01-231-2/+1
* Add a "const" to make gcc happy.Georg Brandl2008-01-211-1/+1
* Issue #1882: when compiling code from a string, encoding cookies in theGeorg Brandl2008-01-211-2/+13
* Fix #1679: "0x" was taken as a valid integer literal.Georg Brandl2008-01-191-0/+7
* Added bytes and b'' as aliases for str and ''Christian Heimes2008-01-181-0/+8
* Fix #define ordering.Georg Brandl2008-01-071-3/+2
* Make Python compile with --disable-unicode.Georg Brandl2008-01-071-0/+2
* Warning "<> not supported in 3.x" should be enabled only when the -3 option i...Amaury Forgeot d'Arc2007-11-241-1/+1
* Fixed problems in the last commit. Filenames and line numbers weren't reporte...Christian Heimes2007-11-231-9/+11
* Applied patch #1754273 and #1754271 from Thomas GleeChristian Heimes2007-11-231-1/+10
* Change a PyErr_Print() into a PyErr_Clear(),Guido van Rossum2007-10-151-1/+1
* Patch #1031213: Decode source line in SyntaxErrors back to its originalMartin v. Löwis2007-09-041-0/+62
* Comment grammarAndrew M. Kuchling2006-10-061-1/+1
* Don't truncate if size_t is bigger than uintNeal Norwitz2006-06-121-1/+1
* Patch #1357836:Neal Norwitz2006-06-021-9/+11
* C++ compiler cleanup: cast signed to unsignedSkip Montanaro2006-04-181-1/+1
* As discussed on python-dev, really fix the PyMem_*/PyObject_* memory APINeal Norwitz2006-04-111-22/+22
* Fix the code in Parser/ to also compile with C++. This was mostly casts forAnthony Baxter2006-04-111-12/+13
* SF patch #1467512, fix double free with triple quoted string in standard build.Neal Norwitz2006-04-101-6/+6
* Years in the making.Tim Peters2006-03-261-39/+44
* Use macro versions instead of function versions when we already know the type.Neal Norwitz2006-03-201-1/+3
* 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