summaryrefslogtreecommitdiff
path: root/Parser/parsetok.c
Commit message (Expand)AuthorAgeFilesLines
* bpo-40335: Correctly handle multi-line strings in tokenize error scenarios (G...Pablo Galindo2020-04-211-19/+22
* bpo-40267: Fix message when last input character produces a SyntaxError (GH-1...Lysandros Nikolaou2020-04-151-0/+3
* bpo-40020: Fix realloc leak on failure in growable_comment_array_add (GH-19083)Alexander Riccio2020-03-301-3/+5
* closes bpo-39721: Fix constness of members of tok_state struct. (GH-18600)Andy Lester2020-02-271-2/+2
* Remove unused functions in Parser/parsetok.c (GH-17365)Emmanuel Arias2020-01-131-18/+0
* bpo-39307: Fix memory leak on error path in parsetok (GH-17953)Alex Henrie2020-01-131-0/+1
* bpo-36842: Implement PEP 578 (GH-12613)Steve Dower2019-05-231-0/+9
* bpo-36878: Track extra text added to 'type: ignore' in the AST (GH-13479)Michael J. Sullivan2019-05-221-15/+28
* bpo-36623: Clean parser headers and include files (GH-12253)Pablo Galindo2019-04-131-1/+1
* bpo-35975: Support parsing earlier minor versions of Python 3 (GH-12086)Guido van Rossum2019-03-071-0/+2
* bpo-35808: Retire pgen and use pgen2 to generate the parser (GH-11814)Pablo Galindo2019-03-011-16/+0
* Fix potential memory leak in parsetok.c (GH-11832)Pablo Galindo2019-02-131-1/+2
* bpo-35879: Fix type comment leaks (GH-11728)Guido van Rossum2019-02-011-0/+1
* bpo-35766: Merge typed_ast back into CPython (GH-11645)Guido van Rossum2019-01-311-0/+78
* bpo-33416: Add end positions to Python AST (GH-11605)Ivan Levkivskyi2019-01-221-2/+12
* bpo-16806: Fix `lineno` and `col_offset` for multi-line string tokens (GH-10021)Anthony Sottile2019-01-131-3/+12
* bpo-34683: Make SyntaxError column offsets consistently 1-indexed (gh-9338)Ammar Askar2018-09-241-2/+6
* bpo-34400: Fix more undefined behavior in parsetok.c (GH-8833)Zackery Spytz2018-08-201-2/+4
* closes bpo-34400: Fix undefined behavior in parsetok(). (GH-4439)Zackery Spytz2018-08-141-1/+1
* bpo-34084: Fix setting an error message for the "Barry as BDFL" easter egg. (...Serhiy Storchaka2018-07-231-2/+1
* replace Py_(u)intptr_t with the c99 standard typesBenjamin Peterson2016-09-061-1/+1
* Issue #25923: Added the const qualifier to static constant arrays.Serhiy Storchaka2015-12-251-2/+2
* Fix a compiler warning on Windows 64-bit in parsetok.cVictor Stinner2013-11-181-1/+2
* Issue #1772673: The type of `char*` arguments now changed to `const char*`.Serhiy Storchaka2013-10-191-6/+9
* Close #11619: The parser and the import machinery do not encode UnicodeVictor Stinner2013-08-261-14/+65
* Issue #18408: parsetok() must not write into stderr on memory allocation errorVictor Stinner2013-07-111-1/+0
* Issue #18408: parsetok() must not write into stderr on memory allocation errorVictor Stinner2013-07-111-1/+0
* check after comments, too (#13832)Benjamin Peterson2012-01-191-7/+17
* don't leak nodeBenjamin Peterson2012-01-191-0/+1
* only check this when parsing pythonBenjamin Peterson2012-01-191-0/+2
* Issue #12705: Raise SyntaxError when compiling multiple statements as single ...Meador Inge2012-01-191-0/+17
* Fix memory leak with FLUFL-related syntax errors (!)Antoine Pitrou2011-11-131-0/+2
|\
| * Fix memory leak with FLUFL-related syntax errors (!)Antoine Pitrou2011-11-131-0/+2
* | don't restrict unexpected EOF errors to the first line (closes #12216)Benjamin Peterson2011-05-301-1/+1
* | Issue #10785: Store the filename as Unicode in the Python parser.Victor Stinner2011-04-051-7/+25
* | Issue #8914: fix various warnings from the Clang static analyzer v254.Brett Cannon2011-02-221-2/+1
|/
* Recorded merge of revisions 81029 via svnmerge fromAntoine Pitrou2010-05-091-186/+186
* Merged revisions 76230 via svnmerge fromBenjamin Peterson2009-11-131-2/+3
* http://bugs.python.org/issue6836Kristján Valur Jónsson2009-09-281-3/+11
* The BDFL has retired! Long live the FLUFL (Friendly Language Uncle For Life)!Brett Cannon2009-04-011-21/+17
* ignore the coding cookie in compile(), exec(), and eval() if the source is a ...Benjamin Peterson2009-03-021-1/+5
* Remove meaning of -ttt, but still accept -t option on cmdline for compatibility.Georg Brandl2008-06-041-8/+0
* Revert r63934 -- it was mixing two patches.Georg Brandl2008-06-041-0/+8
* Remove meaning of -ttt, but still accept -t option on cmdline for compatibility.Georg Brandl2008-06-041-8/+0
* Merged revisions 61954,61956-61957 via svnmerge fromChristian Heimes2008-03-261-0/+1
* Merged revisions 61952-61953 via svnmerge fromChristian Heimes2008-03-261-6/+28
* Bug #2301: Don't try decoding the source code into the originalMartin v. Löwis2008-03-171-10/+5
* Remove traces of Py_USING_UNICODE and Unicode-specific conditionals in config...Georg Brandl2008-01-071-3/+0
* Merged revisions 57778-58052 via svnmerge fromThomas Wouters2007-09-081-5/+13
* Cast away const qualifier to silence a compiler warning about it.Brett Cannon2007-09-051-1/+1