summaryrefslogtreecommitdiff
path: root/Parser/tokenizer.c
Commit message (Expand)AuthorAgeFilesLines
* Use _PyObject_CallNoArg()Victor Stinner2016-12-061-3/+3
* Replaced outdated macros _PyUnicode_AsString and _PyUnicode_AsStringAndSizeSerhiy Storchaka2016-11-201-1/+1
* merge 3.5 (#24022)Benjamin Peterson2016-09-181-1/+1
|\
| * merge 3.4Benjamin Peterson2016-09-181-18/+90
| |\
| * | properly handle the single null-byte file (closes #24022)Benjamin Peterson2016-09-181-1/+1
* | | merge 3.5 (#27981)Benjamin Peterson2016-09-121-15/+17
|\ \ \ | | |/ | |/|
| * | restructure fp_setreadl so as to avoid refleaks (closes #27981)Benjamin Peterson2016-09-121-15/+17
* | | Issue #26331: Implement the parsing part of PEP 515.Brett Cannon2016-09-091-68/+162
* | | Skip unused value in tokenizer codeChristian Heimes2016-09-091-1/+1
* | | Issue #22570: Renamed Py_SETREF to Py_XSETREF.Serhiy Storchaka2016-04-061-11/+9
|\ \ \ | |/ / |/| |
| * | remove duplicated check for fractions and complex numbers (closes #26076)Benjamin Peterson2016-03-241-4/+0
| * | Issue #26581: Use the first coding cookie on a line, not the last one.Serhiy Storchaka2016-03-201-0/+1
| |\ \
| * | | Issue #25923: Added more const qualifiers to signatures of static and private...Serhiy Storchaka2015-12-251-3/+3
| * | | Issue #20440: Massive replacing unsafe attribute setting code with specialSerhiy Storchaka2015-12-241-4/+6
| |\ \ \
| | * \ \ Issue #25388: Fixed tokenizer crash when processing undecodable source codeSerhiy Storchaka2015-11-141-4/+6
| | |\ \ \
| | | * | | Issue #24965: Implement PEP 498 "Literal String Interpolation". Documentation...Eric V. Smith2015-09-191-3/+5
| | | * | | Fixed indentation.Eric V. Smith2015-09-121-1/+1
* | | | | | Issue #22570: Renamed Py_SETREF to Py_XSETREF.Serhiy Storchaka2016-04-061-1/+1
| |_|_|/ / |/| | | |
* | | | | Issue #26581: Use the first coding cookie on a line, not the last one.Serhiy Storchaka2016-03-201-0/+1
|/ / / /
* | | | Issue #20440: Massive replacing unsafe attribute setting code with specialSerhiy Storchaka2015-12-241-2/+1
|/ / /
* | | Issue #25388: Fixed tokenizer crash when processing undecodable source codeSerhiy Storchaka2015-11-141-8/+6
|\ \ \ | |/ / |/| / | |/
| * Issue #25388: Fixed tokenizer crash when processing undecodable source codeSerhiy Storchaka2015-11-141-8/+6
* | Issue #24619: Simplify async/await tokenization.Yury Selivanov2015-07-231-87/+39
* | Issue #24619: New approach for tokenizing async/await.Yury Selivanov2015-07-221-35/+70
* | Issue 24226: Fix parsing of many sequential one-line 'def' statements.Yury Selivanov2015-05-181-8/+17
* | PEP 0492 -- Coroutines with async and await syntax. Issue #24017.Yury Selivanov2015-05-111-0/+68
* | merge 3.4 (#24022)Benjamin Peterson2015-04-211-4/+3
|\ \ | |/
| * do not call into python api if an exception is set (#24022)Benjamin Peterson2015-04-211-4/+3
* | merge 3.4 (#21642)Benjamin Peterson2014-06-071-5/+14
|\ \ | |/
| * allow the keyword else immediately after (no space) an integer (closes #21642)Benjamin Peterson2014-06-071-5/+14
* | PEP 465: a dedicated infix operator for matrix multiplication (closes #21176)Benjamin Peterson2014-04-091-1/+7
|/
* Merge with 3.3Martin v. L?wis2014-02-281-2/+12
|\
| * Issue #20731: Properly position in source code files even if theyMartin v. L?wis2014-02-281-2/+12
* | Do not reset the line number because we already set file position to correctSerhiy Storchaka2014-01-091-11/+18
|\ \ | |/ |/|
| * Issue #18960: Fix bugs with Python source code encoding in the second line.Serhiy Storchaka2014-01-091-4/+22
| |\
| * | Issue #1772673: The type of `char*` arguments now changed to `const char*`.Serhiy Storchaka2013-10-191-3/+4
| * | Issue #18571: Implementation of the PEP 446: file descriptors and file handlesVictor Stinner2013-08-281-0/+5
| * | Issue #18722: Remove uses of the "register" keyword in C code.Antoine Pitrou2013-08-131-6/+6
| * | merge 3.3Benjamin Peterson2013-07-151-2/+3
| |\ \
| | * \ merge 3.3 (closes #18470)Benjamin Peterson2013-07-151-2/+3
| | |\ \
| | | * \ Issue #18038: SyntaxError raised during compilation sources with illegalSerhiy Storchaka2013-06-091-7/+7
| | | |\ \
| | | * | | Issue #9566: Fix compiler warning on Windows 64-bitVictor Stinner2013-06-051-1/+2
| | | * | | make _PyParser_TokenNames constBenjamin Peterson2012-10-241-1/+1
* | | | | | Do not reset the line number because we already set file position to correctSerhiy Storchaka2014-01-091-8/+0
| |_|_|_|/ |/| | | |
* | | | | Issue #18960: Fix bugs with Python source code encoding in the second line.Serhiy Storchaka2014-01-091-4/+22
|/ / / /
* | | | move declaration to top of blockBenjamin Peterson2013-07-151-1/+2
|/ / /
* | | check the return value of new_string() (closes #18470)Benjamin Peterson2013-07-151-36/+46
| |/ |/|
* | Issue #18038: SyntaxError raised during compilation sources with illegalSerhiy Storchaka2013-06-091-7/+7
|/
* Issue #15096: Drop support for the ur string prefixChristian Heimes2012-06-201-2/+3
* Basic support for PEP 414 without docs or tests.Armin Ronacher2012-03-041-3/+7