- 3f22811 bpo-32892: Use ast.Constant instead of specific constant AST types. (GH-9445) by Serhiy Storchaka · 6 years ago
- a5c4228 bpo-33677: Fix signatures of tp_clear handlers for AST and deque. (GH-7196) by Serhiy Storchaka · 6 years ago
- 73cbe7a bpo-32911: Revert bpo-29463. (GH-7121) (GH-7197) by Serhiy Storchaka · 6 years ago
- f320be7 bpo-32571: Avoid raising unneeded AttributeError and silencing it in C code (GH-5222) by Serhiy Storchaka · 7 years ago
- bba2239 bpo-31572: Get rid of _PyObject_HasAttrId() in the ASDL parser. (#3725) by Serhiy Storchaka · 7 years ago
- a6296d3 bpo-31095: fix potential crash during GC (GH-2974) by INADA Naoki · 7 years ago
- 2af565b Fix a shadow-compatible-local warning (#2180) by Yuan Chao Chou · 7 years ago
- 4c78c52 bpo-29622: Make AST constructor to accept less than enough number of positional arguments (GH-249) by INADA Naoki · 8 years ago
- cb41b27 bpo-29463: Add docstring field to some AST nodes. (#46) by INADA Naoki · 8 years ago
- fc48908 Issue #29369: Use Py_IDENTIFIER in Python-ast.c by INADA Naoki · 8 years ago
- 228b12e Issue #28999: Use Py_RETURN_NONE, Py_RETURN_TRUE and Py_RETURN_FALSE wherever by Serhiy Storchaka · 8 years ago
- 5e80855 Issue #24098: Fixed possible crash when AST is changed in process of by Serhiy Storchaka · 8 years ago
- cf38060 Issue #24098: Fixed possible crash when AST is changed in process of by Serhiy Storchaka · 8 years ago
- 52c4e7c Issue #28008: Implement PEP 530 -- asynchronous comprehensions. by Yury Selivanov · 8 years ago
- f8cb8a1 Issue #27985: Implement PEP 526 -- Syntax for Variable Annotations. by Yury Selivanov · 8 years ago
- 25219f5 Issue #26146: remove useless code by Victor Stinner · 9 years ago
- f2c1aa1 Add ast.Constant by Victor Stinner · 9 years ago
- c106c68 Issue #25555: Fix parser and AST: fill lineno and col_offset of "arg" node when by Victor Stinner · 9 years ago
- 235a6f0 Issue #24965: Implement PEP 498 "Literal String Interpolation". Documentation is still needed, I'll open an issue for that. by Eric V. Smith · 9 years ago
- 56f6e76 Issue #15989: Fixed some scarcely probable integer overflows. by Serhiy Storchaka · 9 years ago
- 7544508 PEP 0492 -- Coroutines with async and await syntax. Issue #24017. by Yury Selivanov · 10 years ago
- 025e9eb PEP 448: additional unpacking generalizations (closes #2292) by Benjamin Peterson · 10 years ago
- d51374e PEP 465: a dedicated infix operator for matrix multiplication (closes #21176) by Benjamin Peterson · 11 years ago
- 42ec031 merge 3.3 (#20588) by Benjamin Peterson · 11 years ago
- c2f665e don't put runtime values in array initializer for C89 compliance (closes #20588) by Benjamin Peterson · 11 years ago
- d01d396e Issue #4555: All exported C symbols are now prefixed with either "Py" or "_Py". by Antoine Pitrou · 11 years ago
- b7f1b38 Issue #18552: Check return value of PyArena_AddPyObject() in obj2ast_object(). by Christian Heimes · 11 years ago
- 70c94e7 Issue #18552: Check return value of PyArena_AddPyObject() in obj2ast_object(). by Christian Heimes · 11 years ago
- b318990 (Merge 3.3) Parser/asdl_c.py: use Py_CLEAR() by Victor Stinner · 11 years ago
- 1acc129 Parser/asdl_c.py: use Py_CLEAR() by Victor Stinner · 11 years ago
- ee4b59c (Merge 3.3) According to the PEP 7, C code must "use 4-space indents" 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
- bdf630c Issue #18408: Fix Python-ast.c: handle init_types() failure (ex: MemoryError) by Victor Stinner · 11 years ago
- 74ca886 Issue #17917: Use PyModule_AddIntMacro() instead of PyModule_AddIntConstant() by Charles-Francois Natali · 11 years ago
- 3a61943 bump Python-ast.c by Benjamin Peterson · 12 years ago
- b72406b refactor to fix refleaks by Benjamin Peterson · 12 years ago
- cda75be unify some ast.argument's attrs; change Attribute column offset (closes #16795) by Benjamin Peterson · 12 years ago
- f7a17b4 Replace IOError with OSError (#16715) by Andrew Svetlov · 12 years ago
- 442f209 create NameConstant AST class for None, True, and False literals (closes #16619) by Benjamin Peterson · 12 years ago
- ded35ae Issue #16546: make ast.YieldFrom argument mandatory. by Mark Dickinson · 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
- 77fa937 use Py_ssize_t for ast sequence lengths by Benjamin Peterson · 12 years ago
- 41829e8 Document f4d7ad6c9d6e. by Martin v. Löwis · 12 years ago
- cc10a37 Widen ASDL sequences to Py_ssize_t lengths to better match PEP 353. by Martin v. Löwis · 12 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
- 527c622 make YieldFrom its own distinct from Yield (closes #13780) by Benjamin Peterson · 13 years ago
- 5136ac0 Issue #13645: pyc files now contain the size of the corresponding source by Antoine Pitrou · 13 years ago
- 1f7ce62 Implement PEP 380 - 'yield from' (closes #11682) by Nick Coghlan · 13 years ago
- 942d5ba Merge branch 3.2 by Amaury Forgeot d'Arc · 13 years ago
- 5e8f810 Issue #13436: commit regenerated Python-ast.c by Amaury Forgeot d'Arc · 13 years ago
- f9827ea Issue #25555: Fix parser and AST: fill lineno and col_offset of "arg" node when by Victor Stinner · 9 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
- 6f08f53 Merge 3.2 by Éric Araujo · 13 years ago
- 0224d4e accept bytes for the AST 'string' type 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
- 04a90b4 bump ast version by Benjamin Peterson · 13 years ago
- 43af12b unify TryExcept and TryFinally (closes #12199) by Benjamin Peterson · 13 years ago
- 7f670e5 bump ast version by Benjamin Peterson · 13 years ago
- bf1bbc1 reflect with statements with multiple items in the AST (closes #12106) by Benjamin Peterson · 13 years ago
- c9723d0 use only the hex version, since the revno is unreliable across repos by Benjamin Peterson · 14 years ago
- 678da9f bump ast version by Benjamin Peterson · 14 years ago
- 6cb2b92 convert ast versioning to mercurial by Benjamin Peterson · 14 years ago
- 0a4dae5 fix refleak by Benjamin Peterson · 14 years ago
- d8f6597 new plan: functions that want 'tmp' can declare it by Benjamin Peterson · 14 years ago
- 0e9e98e c89 declarations by Benjamin Peterson · 14 years ago
- 5b06681 use %R format code; fixes invalid dereferencing #10391 by Benjamin Peterson · 14 years ago
- 3e5cd1d Merged revisions 81465-81466,81468,81679,81735,81760,81868,82183 via svnmerge from by Benjamin Peterson · 14 years ago
- 1b7046b Issue #9051: Instances of timezone class can now be pickled. by Alexander Belopolsky · 14 years ago
- 7eeb5b5 Issue #8848: U / U# formats of Py_BuildValue() are just alias to s / s# by Victor Stinner · 14 years ago
- 0496c9e regenerate Python-ast.c by Benjamin Peterson · 15 years ago
- 2e24deb update ast version by Benjamin Peterson · 15 years ago
- 78565b2 Merged revisions 73376,73393,73398,73400,73404-73405,73409,73419-73421,73432,73457,73460,73485-73486,73488-73489,73501-73502,73513-73514 via svnmerge from by Benjamin Peterson · 15 years ago
- e94c679 Issue #1717: rename tp_compare to tp_reserved. I'll change the by Mark Dickinson · 16 years ago
- e6d4a9b update version number by Benjamin Peterson · 16 years ago
- 1a6e0d0 Merged revisions 66974,66977,66984,66989,66992,66994-66996,66998-67000,67007,67015 via svnmerge from by Benjamin Peterson · 16 years ago
- ce825f1 update Python-ast.c by Benjamin Peterson · 16 years ago
- 245c70b Merged revisions 66377 via svnmerge from by Amaury Forgeot d'Arc · 16 years ago
- 1a21451 Implement PEP 3121: new module initialization and finalization API. by Martin v. Löwis · 16 years ago
- 72b710a Renamed PyString to PyBytes by Christian Heimes · 16 years ago
- ee9b10a Merged revisions 61440-61441,61443,61445-61448,61451-61452,61455-61457,61459-61464,61466-61467,61469-61470,61476-61477,61479,61481-61482,61485,61487,61490,61493-61494,61497,61499-61502,61505-61506,61508,61511-61514,61519,61521-61522,61530-61531,61533-61537,61541-61555,61557-61558,61561-61562,61566-61569,61572-61574,61578-61579,61583-61584,61588-61589,61592,61594,61598-61601,61603-61604,61607-61612,61617,61619-61620,61624,61626,61628-61630,61635-61638,61640-61643,61645,61648,61653-61655,61659-61662,61664,61666,61668-61671,61673,61675,61679-61680,61682,61685-61686,61689-61695,61697-61699,61701-61703,61706,61710,61713,61717,61723,61726-61730,61736,61738,61740,61742,61745-61752,61754-61760,61762-61764,61768,61770-61772,61774-61775,61784-61787,61789-61792,61794-61795,61797-61806,61808-61809,61811-61812,61814-61819,61824,61826-61833,61835-61840,61843-61845,61848,61850,61854-61862,61865-61866,61868,61872-61873,61876-61877,61883-61888,61890-61891,61893-61899,61901-61903,61905-61912,61914,61917,61920-61921,61927,61930,61932-61934,61939,61941-61942,61944-61951,61955,61960-61963,61980,61982-61983,61991,61994-61996,62001-62003,62008-62010,62016-62017,62022,62024,62027,62031-62034,62041,62045-62046,62048,62050-62051,62055-62066,62068-62074,62076-62078 via svnmerge from by Neal Norwitz · 17 years ago
- ad74aa8 Merged revisions 62047 via svnmerge from by Neal Norwitz · 17 years ago
- 207c9f3 Merged revisions 62049,62054 via svnmerge from by Neal Norwitz · 17 years ago
- db4115f Merged revisions 62039-62042 via svnmerge from by Neal Norwitz · 17 years ago
- 617fa91 Merged revisions 62013-62014 via svnmerge from by Martin v. Löwis · 17 years ago
- 618dc5e Merged revisions 62004 via svnmerge from by Martin v. Löwis · 17 years ago
- d3eb5a15 Merged revisions 61003-61033 via svnmerge from by Christian Heimes · 17 years ago
- 05e8be1 Merged revisions 60990-61002 via svnmerge from by Christian Heimes · 17 years ago
- 217cfd1 Cleanup: Replaced most PyInt_ aliases with PyLong_ and disabled the aliases in intobject.h by Christian Heimes · 17 years ago
- e845c0f Fixes for issue 1752184, ensuring type objects are always created by Guido van Rossum · 17 years ago