summaryrefslogtreecommitdiff
path: root/Parser/parsetok.c
Commit message (Expand)AuthorAgeFilesLines
* bpo-34400: Fix more undefined behavior in parsetok.c (GH-8833)Miss Islington (bot)2018-08-201-2/+4
* closes bpo-34400: Fix undefined behavior in parsetok(). (GH-4439)Miss Islington (bot)2018-08-151-1/+1
* bpo-34084: Fix setting an error message for the "Barry as BDFL" easter egg. (...Miss Islington (bot)2018-07-241-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
* Convert code from sys.stdin.encoding to UTF-8 inMartin v. Löwis2007-09-041-4/+5
* Four months of trunk changes (including a few releases...)Thomas Wouters2006-12-131-3/+3
* Merge current trunk into p3yk. This includes the PyNumber_Index API change,Thomas Wouters2006-08-211-0/+6
* Much-needed merge (using svnmerge.py this time) of trunk changes into p3yk.Thomas Wouters2006-05-271-1/+3
* Make 'python -tt' the default, meaning Python won't allow mixing tabs andThomas Wouters2006-04-141-11/+4
* Get rid of compiler warningNeal Norwitz2006-03-171-1/+1
* Get rid of compiler warning about with_msg and as_msg being unusedNeal Norwitz2006-03-161-0/+2
* Checkpoint. 218 tests are okay; 53 are failing. Done so far:Guido van Rossum2006-03-151-1/+2
* Patch #1440601: Add col_offset attribute to AST nodes.Martin v. Löwis2006-03-011-2/+7
* Make 'as' an actual keyword when with's future statement is used. NotThomas Wouters2006-02-281-2/+2
* from __future__ import with_statement addon for 'with', mostly written byThomas Wouters2006-02-281-16/+39
* Remove C99ism.Martin v. Löwis2006-02-151-1/+2
* Merge ssize_t branch.Martin v. Löwis2006-02-151-1/+2
* Prevent unlikely memory leak, tok should always be freed when parsetok() returnsNeal Norwitz2005-11-151-0/+1
* Merge ast-branch to headJeremy Hylton2005-10-201-3/+2
* - Fix segfault with invalid coding.Neal Norwitz2005-10-021-1/+1
* Pass the flags along, rather than ignoring them. Backport candidateNeal Norwitz2004-07-081-1/+1