- 1064a13 Do not reset the line number because we already set file position to correct by Serhiy Storchaka · 11 years ago
- 768c16c Issue #18960: Fix bugs with Python source code encoding in the second line. by Serhiy Storchaka · 11 years ago
- 7c4a7e6 #18803: fix more typos. Patch by Févry Thibault. by Ezio Melotti · 11 years ago
- 9ae513c Issue #18368: PyOS_StdioReadline() no longer leaks memory when realloc() fails. by Christian Heimes · 11 years ago
- 5e4d372 Silence warning about set but unused variable inside compile_atom() in non-debug builds by Christian Heimes · 11 years ago
- 70c94e7 Issue #18552: Check return value of PyArena_AddPyObject() in obj2ast_object(). by Christian Heimes · 11 years ago
- 1acc129 Parser/asdl_c.py: use Py_CLEAR() by Victor Stinner · 11 years ago
- ce72e1c According to the PEP 7, C code must "use 4-space indents" by Victor Stinner · 11 years ago
- 1eb0cb1 Some compilers complain about 'control reaches end of non-void function' by Christian Heimes · 11 years ago
- 53d2dc4 Add sanity check to PyGrammar_LabelRepr() in order to catch invalid tokens when debugging by Christian Heimes · 11 years ago
- 265fba4 move declaration to top of block by Benjamin Peterson · 11 years ago
- 2dbfd88 check the return value of new_string() (closes #18470) by Benjamin Peterson · 11 years ago
- 3af14aa Issue #18038: SyntaxError raised during compilation sources with illegal by Serhiy Storchaka · 11 years ago
- ded35ae Issue #16546: make ast.YieldFrom argument mandatory. by Mark Dickinson · 12 years ago
- aee3c76 - Issue #16262: fix out-of-src-tree builds, if mercurial is not installed. by Matthias Klose · 12 years ago
- 8a9cc52 #15923: merge with 3.2. by Ezio Melotti · 12 years ago
- cb2916a #15923: fix a mistake in asdl_c.py that resulted in a TypeError after 2801bf875a24 (see #15801). by Ezio Melotti · 12 years ago
- ca8aa4a Issue #15144: Fix possible integer overflow when handling pointers as integer values, by using Py_uintptr_t instead of size_t. by Antoine Pitrou · 12 years ago
- cc98887 Remove unused variables in parsetok(). by Georg Brandl · 12 years ago
- 88ca04e MERGE: Closes #15512: Correct __sizeof__ support for parser by Jesus Cea · 12 years ago
- e9c5318 Closes #15512: Correct __sizeof__ support for parser by Jesus Cea · 12 years ago
- 481ae50 construct fields in the right order (closes #15517) by Benjamin Peterson · 12 years ago
- 8107176 add gc support to the AST base type (closes #15293) by Benjamin Peterson · 12 years ago
- 5075074 Issue #15291: Fix a memory leak where AST nodes where not properly deallocated. by Antoine Pitrou · 12 years ago
- 035997f Issue #1677: Unused variable warning in Non-Windows by Jesus Cea · 12 years ago
- 9175c3d Issue #1677: Handle better a race condition between the interactive interpreter and by Tim Golden · 12 years ago
- b92b757 Issue #1677: Handle better a race condition between the interactive interpreter and by Tim Golden · 12 years ago
- 0b3847d Issue #15096: Drop support for the ur string prefix by Christian Heimes · 12 years ago
- 77fa937 use Py_ssize_t for ast sequence lengths by Benjamin Peterson · 12 years ago
- ce58ed3 Merge with 3.2: issue #14433 by Martin v. Löwis · 13 years ago
- e654c11 Issue #14433: Prevent msvcrt crash in interactive prompt when stdin is closed. by Martin v. Löwis · 13 years ago
- 1767e02 free AST's dict by Benjamin Peterson · 13 years ago
- 45e50de Try to fix compilation of Python-ast.c on Visual Studio 2008 by Victor Stinner · 13 years ago
- 7e0dbfb give the AST class a __dict__ by Benjamin Peterson · 13 years ago
- 6ecf77b Basic support for PEP 414 without docs or tests. by Armin Ronacher · 13 years ago
- cff9237 check after comments, too (#13832) by Benjamin Peterson · 13 years ago
- 188bee5 don't leak node by Benjamin Peterson · 13 years ago
- 79c1f96 only check this when parsing python by Benjamin Peterson · 13 years ago
- fa21bf0 Issue #12705: Raise SyntaxError when compiling multiple statements as single interactive statement by Meador Inge · 13 years ago
- 8d5a62d murder tabs by Benjamin Peterson · 13 years ago
- 527c622 make YieldFrom its own distinct from Yield (closes #13780) by Benjamin Peterson · 13 years ago
- 1f7ce62 Implement PEP 380 - 'yield from' (closes #11682) by Nick Coghlan · 13 years ago
- 3a5d4cb Issue #13748: Raw bytes literals can now be written with the `rb` prefix as well as `br`. by Antoine Pitrou · 13 years ago
- f51d36a evidently some buildbots don't have python 3 installed by Benjamin Peterson · 13 years ago
- 3ab8588 run AST toolchain on python3 by Benjamin Peterson · 13 years ago
- ab0e9f7 Issue #10350: Read and save errno before calling a function which might overwrite it. by Antoine Pitrou · 13 years ago
- c345ce1 Issue #10350: Read and save errno before calling a function which might overwrite it. by Antoine Pitrou · 13 years ago
- 942d5ba Merge branch 3.2 by Amaury Forgeot d'Arc · 13 years ago
- 58e8761 Issue #13436: Fix a bogus error message when an AST object was passed by Amaury Forgeot d'Arc · 13 years ago
- f364e7b Fix memory leak with FLUFL-related syntax errors (!) by Antoine Pitrou · 13 years ago
- 9ec2593 Fix memory leak with FLUFL-related syntax errors (!) by Antoine Pitrou · 13 years ago
- 70d86bd Issue 13243: Rename _Py_identifier to _Py_IDENTIFIER in asdl_c.py by Meador Inge · 13 years ago
- 1c67dd9 Port SetAttrString/HasAttrString to SetAttrId/GetAttrId. by Martin v. Löwis · 13 years ago
- bd928fe Rename _Py_identifier to _Py_IDENTIFIER. by Martin v. Löwis · 13 years ago
- 1ee1b6f Use identifier API for PyObject_GetAttrString. by Martin v. Löwis · 13 years ago
- afe55bb Add API for static strings, primarily good for identifiers. by Martin v. Löwis · 13 years ago
- d63a3b8 Implement PEP 393. by Martin v. Löwis · 13 years ago
- 6f08f53 Merge 3.2 by Éric Araujo · 13 years ago
- 0224d4e accept bytes for the AST 'string' type by Benjamin Peterson · 13 years ago
- 5a3f49b revert code which conditionally writes Python-ast.h (closes #12727) by Benjamin Peterson · 13 years ago
- 257a1d0 2.x syntax by Benjamin Peterson · 13 years ago
- 4ec450d make this work on 2.4 by Benjamin Peterson · 13 years ago
- 6f75004 make this work with py2.5 by Benjamin Peterson · 13 years ago
- 398256b don't rewrite the header file if it hasn't changed; this reduces development build time by Benjamin Peterson · 13 years ago
- 4dc6499 the bool asdl type died a while ago by Benjamin Peterson · 13 years ago
- e249841 add a asdl bytes type, so Bytes.s be properly typechecked by Benjamin Peterson · 13 years ago
- 8a4b42b merge 3.2 by Benjamin Peterson · 13 years ago
- 180e635 None is ok for identifiers but not strings by Benjamin Peterson · 13 years ago
- 86f088e merge 3.2 by Benjamin Peterson · 13 years ago
- 2193d2b type check AST strings and identifiers by Benjamin Peterson · 13 years ago
- efad244 hardcode the old svn __version__ by Benjamin Peterson · 13 years ago
- 0bd152c remove ast.__version__ (closes #12273) by Benjamin Peterson · 13 years ago
- 620b2c8 comment which is not applicable anymore by Benjamin Peterson · 13 years ago
- 0c10362 remove intrcheck.c, which hasn't been used for years by Benjamin Peterson · 13 years ago
- 0c9f31b (Merge 3.2) Issue #12016: my_fgets() now always clears errors before calling by Victor Stinner · 13 years ago
- 4f71101 Issue #12016: my_fgets() now always clears errors before calling fgets(). Fix by Victor Stinner · 13 years ago
- 758888d don't restrict unexpected EOF errors to the first line (closes #12216) by Benjamin Peterson · 13 years ago
- 43af12b unify TryExcept and TryFinally (closes #12199) by Benjamin Peterson · 13 years ago
- bf1bbc1 reflect with statements with multiple items in the AST (closes #12106) by Benjamin Peterson · 13 years ago
- 00c5925 (Merge 3.2) Issue #1195: Fix input() if it is interrupted by CTRL+d and then by Victor Stinner · 13 years ago
- db93278 Issue #1195: Fix input() if it is interrupted by CTRL+d and then CTRL+c, clear by Victor Stinner · 13 years ago
- 4755ab0 Issue #1195: Fix input() if it is interrupted by CTRL+d and then CTRL+c, by Victor Stinner · 13 years ago
- c1935d2 Revert bb62908896fe, but keep the test by Jesus Cea · 14 years ago
- 88f7841 Correctly merging #9319 into 3.3? by Jesus Cea · 14 years ago
- c68b6aa Issue #9319: Fix a crash on parsing a Python source code without encoding by Victor Stinner · 14 years ago
- 4ae3b44 (Merge 3.2) Issue #11650: PyOS_StdioReadline() retries fgets() if it was by Victor Stinner · 14 years ago
- a870e35 (Merge 3.1) Issue #11650: PyOS_StdioReadline() retries fgets() if it was by Victor Stinner · 14 years ago
- 52c950f Issue #11650: PyOS_StdioReadline() retries fgets() if it was interrupted by Victor Stinner · 14 years ago
- fe7c5b5 Issue #9319: Include the filename in "Non-UTF8 code ..." syntax error. by Victor Stinner · 14 years ago
- 7f2fee3 Issue #10785: Store the filename as Unicode in the Python parser. by Victor Stinner · 14 years ago
- 4969f70 #11515: Merge with 3.1. by Ezio Melotti · 14 years ago
- 42da663 #11515: fix several typos. Patch by Piotr Kasprzyk. by Ezio Melotti · 14 years ago
- 3730892 #11515: Merge with 3.2. by Ezio Melotti · 14 years ago
- c9723d0 use only the hex version, since the revno is unreliable across repos by Benjamin Peterson · 14 years ago
- 0d6245d actually get file rev by Benjamin Peterson · 14 years ago
- 6cb2b92 convert ast versioning to mercurial by Benjamin Peterson · 14 years ago
- b94767f Issue #8914: fix various warnings from the Clang static analyzer v254. by Brett Cannon · 14 years ago
- 034c753 Issue #10841: don't translate newlines for pgen by Victor Stinner · 14 years ago
- 89e3436 Issue #10841: set binary mode on files; the parser translates newlines by Victor Stinner · 14 years ago
- aaa4e9a Remove arbitrary string length limits by Victor Stinner · 14 years ago