summaryrefslogtreecommitdiffstats
path: root/Parser/tokenizer.c
Commit message (Expand)AuthorAgeFilesLines
* Basic support for PEP 414 without docs or tests.Armin Ronacher2012-03-041-3/+7
* Issue #13748: Raw bytes literals can now be written with the `rb` prefix as w...Antoine Pitrou2012-01-121-7/+9
* Rename _Py_identifier to _Py_IDENTIFIER.Martin v. Löwis2011-10-141-2/+2
* Use identifier API for PyObject_GetAttrString.Martin v. Löwis2011-10-101-1/+2
* Add API for static strings, primarily good for identifiers.Martin v. Löwis2011-10-091-1/+2
* Implement PEP 393.Martin v. Löwis2011-09-281-2/+4
* Revert bb62908896fe, but keep the testJesus Cea2011-04-251-13/+6
* Correctly merging #9319 into 3.3?Jesus Cea2011-04-251-6/+13
|\
| * Issue #9319: Fix a crash on parsing a Python source code without encodingVictor Stinner2011-04-221-1/+4
* | Issue #9319: Include the filename in "Non-UTF8 code ..." syntax error.Victor Stinner2011-04-041-14/+27
* | Issue #10785: Store the filename as Unicode in the Python parser.Victor Stinner2011-04-041-13/+22
|/
* Issue #10841: don't translate newlines for pgenVictor Stinner2011-01-071-1/+1
* Issue #10841: set binary mode on files; the parser translates newlinesVictor Stinner2011-01-071-0/+7
* Remove arbitrary string length limitsVictor Stinner2011-01-051-1/+1
* Issue #10778: decoding_fgets() decodes the filename from the filesystemVictor Stinner2010-12-271-6/+11
* Issue #10095: fp_setreadl() doesn't reopen the file, reuse instead the fileVictor Stinner2010-10-141-6/+9
* Recorded merge of revisions 81029 via svnmerge fromAntoine Pitrou2010-05-091-1384/+1384
* Use PyErr_Format() in decoding_fgets()Victor Stinner2010-04-281-3/+1
* Merged revisions 79725 via svnmerge fromBenjamin Peterson2010-04-031-11/+1
* Merged revisions 79723 via svnmerge fromBenjamin Peterson2010-04-031-1/+11
* Merged revisions 78826 via svnmerge fromVictor Stinner2010-03-121-5/+12
* Merged revisions 78603 via svnmerge fromVictor Stinner2010-03-031-23/+28
* Merged revisions 76052,76522,76591,76689,76697,76733 via svnmerge fromBenjamin Peterson2009-12-131-12/+11
* Merged revisions 75149,75260-75263,75265-75267,75292,75300,75376,75405,75429-...Benjamin Peterson2009-11-131-11/+23
* Merged revisions 76230 via svnmerge fromBenjamin Peterson2009-11-131-18/+74
* Issue 7147 - remove ability to attempt to build Python without complex number...Skip Montanaro2009-10-181-6/+0
* Merged revisions 73004,73439,73496,73509,73529,73564,73576-73577,73595-73596,...Benjamin Peterson2009-06-281-4/+1
* The BDFL has retired! Long live the FLUFL (Friendly Language Uncle For Life)!Brett Cannon2009-04-011-0/+1
* ignore the coding cookie in compile(), exec(), and eval() if the source is a ...Benjamin Peterson2009-03-021-0/+22
* Fix an issue in the tokenizer, where a file is opened by fd, but the underlyi...Kristján Valur Jónsson2008-12-181-2/+2
* Latin-1 source code was not being properly decoded when passed throughBrett Cannon2008-10-171-2/+2
* Issues #2384 and #3975: Tracebacks were not correctly printed when the source...Amaury Forgeot d'Arc2008-10-091-0/+8
* Follow-up of #3773: In PyTokenizer_FindEncoding, remove the call to PyErr_NoM...Amaury Forgeot d'Arc2008-09-041-2/+0
* #3773: Check for errors around the use of PyTokenizer_FindEncoding().Amaury Forgeot d'Arc2008-09-041-1/+4
* PyTokenizer_FindEncoding() always failed because it set the tokenizer stateBrett Cannon2008-09-041-2/+6
* Rename PyUnicode_AsString -> _PyUnicode_AsString andMarc-André Lemburg2008-08-071-1/+1
* Renamed files bytesobject.[ch] and stringobject.[ch]Christian Heimes2008-05-261-1/+1
* Renamed PyString to PyBytesChristian Heimes2008-05-261-4/+4
* Renamed PyBytes to PyByteArrayChristian Heimes2008-05-261-4/+4
* Merged revisions 62425-62429,62434-62436,62441,62444,62446-62448,62450-62455,...Christian Heimes2008-05-041-1/+1
* Merged revisions 61981,61984-61987,61992-61993,61997-62000 via svnmerge fromChristian Heimes2008-03-281-8/+0
* Bug #2301: Don't try decoding the source code into the originalMartin v. Löwis2008-03-171-64/+0
* Merged revisions 60350-60363 via svnmerge fromChristian Heimes2008-01-271-0/+1
* Merged revisions 60176-60209 via svnmerge fromChristian Heimes2008-01-231-1/+1
* Merged revisions 60151-60159,60161-60168,60170,60172-60173,60175 via svnmerge...Georg Brandl2008-01-211-2/+13
* Merged revisions 60080-60089,60091-60093 via svnmerge fromGeorg Brandl2008-01-191-0/+19
* More PyImport_ImportModule -> PyImport_ImportModuleNoBlockChristian Heimes2008-01-031-1/+1
* #1629: Renamed Py_Size, Py_Type and Py_Refcnt to Py_SIZE, Py_TYPE and Py_REFCNT.Christian Heimes2007-12-191-1/+1
* Problem found while converting from PyBytes to PyString:Amaury Forgeot d'Arc2007-11-221-7/+17
* Cleanup of tokenizer.c.Guido van Rossum2007-11-161-61/+47