663 Commits (f111fd2e65ef7aefd4ebeadbb48e84d609bf3733)

Author SHA1 Message Date
Jim Fasarakis-Hilliard cf1958af4c Remove obsolete declaration in tokenizer.h (#962) 9 years ago
Serhiy Storchaka 0b3ec19225 Use NULL rather than 0. (#778) 9 years ago
INADA Naoki 4c78c527d2 bpo-29622: Make AST constructor to accept less than enough number of positional arguments (GH-249) 9 years ago
INADA Naoki cb41b2766d bpo-29463: Add docstring field to some AST nodes. (#46) 9 years ago
Berker Peksag 6f80562862 Issue #28489: Fix comment in tokenizer.c 9 years ago
INADA Naoki fc489082c8 Issue #29369: Use Py_IDENTIFIER in Python-ast.c 9 years ago
Victor Stinner a5ed5f000a Use _PyObject_CallNoArg() 9 years ago
Serhiy Storchaka 06515833fe Replaced outdated macros _PyUnicode_AsString and _PyUnicode_AsStringAndSize 9 years ago
Steve Dower 6c2b9d3479 Issue #28333: Fixes off-by-one error that was adding an extra space. 9 years ago
Steve Dower 59bd34fa8a Issue #28333: Remove unnecessary increment. 9 years ago
Steve Dower 3cd187b9f5 Issue #28333: Enables Unicode for ps1/ps2 and input() prompts. (Patch by Eryk Sun) 9 years ago
Serhiy Storchaka cf3806026b Issue #24098: Fixed possible crash when AST is changed in process of 9 years ago
Benjamin Peterson 26d998cfdd properly handle the single null-byte file (closes #24022) 9 years ago
Benjamin Peterson 9ac11a752a properly free memory in pgen 9 years ago
Benjamin Peterson 35ee948fa5 restructure fp_setreadl so as to avoid refleaks (closes #27981) 9 years ago
Berker Peksag 720acbf31b Issue #27981: Fix refleak in fp_setreadl() 9 years ago
Brett Cannon a721abac29 Issue #26331: Implement the parsing part of PEP 515. 9 years ago
Yury Selivanov 52c4e7cc84 Issue #28008: Implement PEP 530 -- asynchronous comprehensions. 9 years ago
Yury Selivanov f8cb8a16a3 Issue #27985: Implement PEP 526 -- Syntax for Variable Annotations. 9 years ago
Christian Heimes c6cc23d0b9 Skip unused value in tokenizer code 9 years ago
Steve Dower 3929499914 Issue #1602: Windows console doesn't input or print Unicode (PEP 528) 9 years ago
Steve Dower 940f33a50f Issue #23524: Finish removing _PyVerify_fd from sources 9 years ago
Benjamin Peterson 2f8bfef158 replace PY_SIZE_MAX with SIZE_MAX 9 years ago
Benjamin Peterson ca47063998 replace Py_(u)intptr_t with the c99 standard types 9 years ago
Victor Stinner 4bb31e90f0 Fix a clang warning in grammar.c 10 years ago
Berker Peksag 531396c764 Issue #27336: Fix compilation failures --without-threads 10 years ago
Serhiy Storchaka 48842714b9 Issue #22570: Renamed Py_SETREF to Py_XSETREF. 10 years ago
Berker Peksag 2a65ecb780 Issue #26130: Remove redundant variable 's' from Parser/parser.c 10 years ago
Benjamin Peterson 7285d520e0 remove duplicated check for fractions and complex numbers (closes #26076) 10 years ago
Serhiy Storchaka e431d3c9aa Issue #26581: Use the first coding cookie on a line, not the last one. 10 years ago
Victor Stinner 0611c26a58 On memory error, dump the memory block traceback 10 years ago
Victor Stinner 8a1be61849 Add more checks on the GIL 10 years ago
Victor Stinner 25219f596a Issue #26146: remove useless code 10 years ago
Victor Stinner f2c1aa1661 Add ast.Constant 10 years ago
Serhiy Storchaka ef1585eb9a Issue #25923: Added more const qualifiers to signatures of static and private functions. 10 years ago
Serhiy Storchaka 2d06e84455 Issue #25923: Added the const qualifier to static constant arrays. 10 years ago
Serhiy Storchaka 5a57ade58e Issue #20440: Massive replacing unsafe attribute setting code with special 10 years ago
Serhiy Storchaka 0d441119f5 Issue #25388: Fixed tokenizer crash when processing undecodable source code 10 years ago
Victor Stinner f9827ea618 Issue #25555: Fix parser and AST: fill lineno and col_offset of "arg" node when 10 years ago
Victor Stinner c106c68aeb Issue #25555: Fix parser and AST: fill lineno and col_offset of "arg" node when 10 years ago
Benjamin Peterson 669ff66c32 remove duplicated imports (closes #25502) 10 years ago
Eric V. Smith 235a6f0984 Issue #24965: Implement PEP 498 "Literal String Interpolation". Documentation is still needed, I'll open an issue for that. 10 years ago
Eric V. Smith 6408dc82fa Fixed indentation. 10 years ago
Serhiy Storchaka 481d3af82e Make asdl_c.py to generate Python-ast.c changed in issue #15989. 10 years ago
Yury Selivanov 96ec934e75 Issue #24619: Simplify async/await tokenization. 11 years ago
Yury Selivanov 8fb307cd65 Issue #24619: New approach for tokenizing async/await. 11 years ago
Yury Selivanov 8085b80c18 Issue 24226: Fix parsing of many sequential one-line 'def' statements. 11 years ago
Yury Selivanov 7544508f02 PEP 0492 -- Coroutines with async and await syntax. Issue #24017. 11 years ago
Benjamin Peterson 025e9ebd0a PEP 448: additional unpacking generalizations (closes #2292) 11 years ago
Benjamin Peterson d73aca769f do not call into python api if an exception is set (#24022) 11 years ago