617 Commits (09f3d080fe0cadab0db6380c58dd4968db20287d)

Author SHA1 Message Date
Benjamin Peterson 26d998cfdd properly handle the single null-byte file (closes #24022) 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
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
Serhiy Storchaka 45ec3288d0 Removed trailing whitespaces in miscalenous files. 11 years ago
Serhiy Storchaka a8cd4d482f Got rid of warnings "suggest braces around empty body in an ‘else’ statement" 11 years ago
Raymond Hettinger df1b699447 Issue #22823: Use set literals instead of creating a set from a list 11 years ago
Serhiy Storchaka 67c719b34b Silenced some warnings about comparison between signed and unsigned integer 11 years ago
Guido van Rossum 416b516d46 Fix bootstrapping asdl -- it didn't work with Python 2.7. 12 years ago
Benjamin Peterson c416162302 allow the keyword else immediately after (no space) an integer (closes #21642) 12 years ago
Eli Bendersky 5e3d338a74 Issue #19655: Replace the ASDL parser carried with CPython 12 years ago
Benjamin Peterson d51374ed78 PEP 465: a dedicated infix operator for matrix multiplication (closes #21176) 12 years ago
Martin v. Löwis 815b41b1cd Issue #20731: Properly position in source code files even if they 12 years ago
Benjamin Peterson c2f665e721 don't put runtime values in array initializer for C89 compliance (closes #20588) 12 years ago
Serhiy Storchaka 1064a13bb0 Do not reset the line number because we already set file position to correct 12 years ago
Serhiy Storchaka 768c16ce02 Issue #18960: Fix bugs with Python source code encoding in the second line. 12 years ago
Christian Heimes af01f66817 Issue #16136: Remove VMS support and VMS-related code 12 years ago
Christian Heimes 724b828e79 upcast int to size_t to silence two autological-constant-out-of-range-compare warnings with clang. 12 years ago
Victor Stinner cad876d542 Fix a compiler warning on Windows 64-bit in parsetok.c 12 years ago
Victor Stinner 3a8a333942 Fix compiler warnings on Windows 64-bit in grammar.c 12 years ago
Serhiy Storchaka c679227e31 Issue #1772673: The type of `char*` arguments now changed to `const char*`. 12 years ago
Victor Stinner c548660af5 Issue #16742: My fix on PyOS_StdioReadline() was incomplete, PyMem_FREE() was 12 years ago
Antoine Pitrou d01d396e7f Issue #4555: All exported C symbols are now prefixed with either "Py" or "_Py". 12 years ago
Victor Stinner 2fe9bac4dc Close #16742: Fix misuse of memory allocations in PyOS_Readline() 12 years ago
Eli Bendersky 1891cff587 Move open outside try/finally 12 years ago
Eli Bendersky 99081238e9 Don't use fancy new Python features like 'with' - some bots don't have them 12 years ago
Eli Bendersky 58fe1b1307 Normalize whitespace 12 years ago