| Commit message (Expand) | Author | Age | Files | Lines |
* | Warning "<> not supported in 3.x" should be enabled only when the -3 option i... | Amaury Forgeot d'Arc | 2007-11-24 | 1 | -1/+1 |
|
|
* | Fixed problems in the last commit. Filenames and line numbers weren't reporte... | Christian Heimes | 2007-11-23 | 1 | -9/+11 |
|
|
* | Applied patch #1754273 and #1754271 from Thomas Glee | Christian Heimes | 2007-11-23 | 1 | -1/+10 |
|
|
* | Change a PyErr_Print() into a PyErr_Clear(), | Guido van Rossum | 2007-10-15 | 1 | -1/+1 |
|
|
* | Fix Coverity 180: Don't overallocate. We don't need structs, but pointers. | Neal Norwitz | 2007-10-12 | 1 | -1/+2 |
|
|
* | Patch #1031213: Decode source line in SyntaxErrors back to its original | Martin v. Löwis | 2007-09-04 | 3 | -5/+77 |
|
|
* | Fix a couple of problems in generating the AST code: | Neal Norwitz | 2007-02-26 | 1 | -5/+3 |
|
|
* | Modify Parser/asdl_c.py so that the __version__ number for Python/Python-ast.c | Brett Cannon | 2007-02-12 | 1 | -2/+19 |
|
|
* | Change a very minor inconsistency (that is purely cosmetic) in the AST | Brett Cannon | 2007-02-11 | 1 | -1/+1 |
|
|
* | Prefix AST symbols with _Py_. Fixes #1637022. | Martin v. Löwis | 2007-01-19 | 1 | -1/+6 |
|
|
* | Comment grammar | Andrew M. Kuchling | 2006-10-06 | 1 | -1/+1 |
|
|
* | Fix a bug in the parser's future statement handling that led to "with" | Georg Brandl | 2006-09-24 | 1 | -10/+12 |
|
|
* | with and as are now keywords. There are some generated files I can't recreate. | Neal Norwitz | 2006-09-06 | 1 | -3/+5 |
|
|
* | Handle malloc failure. | Neal Norwitz | 2006-08-13 | 1 | -0/+4 |
|
|
* | Handle NULL nodes while parsing. I'm not entirely sure this is correct. | Neal Norwitz | 2006-08-12 | 1 | -0/+6 |
|
|
* | Don't truncate if size_t is bigger than uint | Neal Norwitz | 2006-06-12 | 1 | -1/+1 |
|
|
* | Fix comment typo | Andrew M. Kuchling | 2006-06-06 | 1 | -1/+1 |
|
|
* | Patch #1357836: | Neal Norwitz | 2006-06-02 | 1 | -9/+11 |
|
|
* | Patch #1475845: Raise IndentationError for unexpected indent. | Martin v. Löwis | 2006-05-04 | 1 | -1/+3 |
|
|
* | C++ compiler cleanup: cast signed to unsigned | Skip Montanaro | 2006-04-18 | 1 | -1/+1 |
|
|
* | Patch #1355883: Build Python-ast.c and Python-ast.h | Martin v. Löwis | 2006-04-14 | 1 | -30/+30 |
|
|
* | Introduce asdl_int_seq, to hold cmpop_ty. | Martin v. Löwis | 2006-04-13 | 1 | -3/+9 |
|
|
* | more low-hanging fruit to make code compile under a C++ compiler. Not | Anthony Baxter | 2006-04-11 | 1 | -2/+2 |
|
|
* | As discussed on python-dev, really fix the PyMem_*/PyObject_* memory API | Neal Norwitz | 2006-04-11 | 3 | -29/+29 |
|
|
* | Make _kind types global for C++ compilation. | Martin v. Löwis | 2006-04-11 | 1 | -3/+5 |
|
|
* | Fix the code in Parser/ to also compile with C++. This was mostly casts for | Anthony Baxter | 2006-04-11 | 7 | -36/+40 |
|
|
* | SF patch #1467512, fix double free with triple quoted string in standard build. | Neal Norwitz | 2006-04-10 | 9 | -37/+45 |
|
|
* | Make path calculation platform independent | Jeremy Hylton | 2006-04-04 | 1 | -1/+1 |
|
|
* | Add lineno, col_offset to excephandler to enable future fix for | Jeremy Hylton | 2006-04-04 | 2 | -3/+6 |
|
|
* | * Fix a refleak of *_attributes. | Neal Norwitz | 2006-04-03 | 1 | -5/+7 |
|
|
* | Years in the making. | Tim Peters | 2006-03-26 | 1 | -39/+44 |
|
|
* | Use macro versions instead of function versions when we already know the type. | Neal Norwitz | 2006-03-20 | 1 | -1/+3 |
|
|
* | SF #1444030: Fix several potential defects found by Coverity. | Hye-Shik Chang | 2006-03-07 | 1 | -0/+2 |
|
|
* | Fix crashing bug in tokenizer, when tokenizing files with non-ASCII bytes | Thomas Wouters | 2006-03-02 | 1 | -0/+5 |
|
|
* | Fix memory leak on attributes. | Martin v. Löwis | 2006-03-02 | 1 | -1/+3 |
|
|
* | Patch #1440601: Add col_offset attribute to AST nodes. | Martin v. Löwis | 2006-03-01 | 8 | -13/+29 |
|
|
* | Remove unused field. | Martin v. Löwis | 2006-03-01 | 1 | -1/+0 |
|
|
* | Don't pollute namespace as bad as before. All the types are static now. | Neal Norwitz | 2006-02-28 | 1 | -7/+7 |
|
|
* | Make 'as' an actual keyword when with's future statement is used. Not | Thomas Wouters | 2006-02-28 | 2 | -12/+14 |
|
|
* | Change non-ASCII warning into a SyntaxError. | Martin v. Löwis | 2006-02-28 | 1 | -10/+6 |
|
|
* | from __future__ import with_statement addon for 'with', mostly written by | Thomas Wouters | 2006-02-28 | 3 | -31/+65 |
|
|
* | Whitespace normalization. | Tim Peters | 2006-02-28 | 2 | -16/+16 |
|
|
* | SF patch #1438387, PEP 328: relative and absolute imports. | Thomas Wouters | 2006-02-28 | 1 | -1/+1 |
|
|
* | Generate return statement. | Martin v. Löwis | 2006-02-28 | 1 | -0/+1 |
|
|
* | Add generation of the version. | Martin v. Löwis | 2006-02-28 | 1 | -1/+2 |
|
|
* | Add support for version field on Modules | Martin v. Löwis | 2006-02-28 | 3 | -8/+29 |
|
|
* | PEP 343 -- the with-statement. | Guido van Rossum | 2006-02-27 | 1 | -0/+1 |
|
|
* | Create _ast module. | Martin v. Löwis | 2006-02-27 | 1 | -191/+86 |
|
|
* | PEP 308 implementation, including minor refdocs and some testcases. It | Thomas Wouters | 2006-02-27 | 1 | -0/+1 |
|
|
* | Avoid reinitializing the types twice. | Martin v. Löwis | 2006-02-27 | 1 | -0/+1 |
|
|