| Commit message (Expand) | Author | Age | Files | Lines |
... | |
* | Four months of trunk changes (including a few releases...) | Thomas Wouters | 2006-12-13 | 3 | -14/+16 |
|
|
* | Jiwon Seo's PEP 3102 implementation. | Guido van Rossum | 2006-10-27 | 1 | -2/+2 |
|
|
* | Patch #1550786: ellipsis literal. | Georg Brandl | 2006-09-06 | 1 | -1/+2 |
|
|
* | Patch #1550800: make exec a function. | Georg Brandl | 2006-09-06 | 1 | -5/+0 |
|
|
* | SF patch 1547796 by Georg Brandl -- set literals. | Guido van Rossum | 2006-08-28 | 1 | -0/+1 |
|
|
* | Remove the UNARY_CONVERT opcode (was used for backticks). Also bumped up the | Brett Cannon | 2006-08-25 | 1 | -1/+0 |
|
|
* | Remove support for backticks from the grammar and compiler. | Brett Cannon | 2006-08-25 | 1 | -2/+0 |
|
|
* | Switch to using %r in the format string. | Brett Cannon | 2006-08-25 | 2 | -2/+2 |
|
|
* | Get rid of all two uses of backticks (bad Jeremy!). | Brett Cannon | 2006-08-24 | 2 | -2/+2 |
|
|
* | Killed the <> operator. You must now use !=. | Guido van Rossum | 2006-08-24 | 1 | -1/+0 |
|
|
* | Merge current trunk into p3yk. This includes the PyNumber_Index API change, | Thomas Wouters | 2006-08-21 | 2 | -0/+10 |
|
|
* | Merge the rest of the trunk. | Thomas Wouters | 2006-06-08 | 1 | -1/+1 |
|
|
* | Partially merge trunk into p3yk. The removal of Mac/Tools is confusing svn | Thomas Wouters | 2006-06-08 | 1 | -9/+11 |
|
|
* | Much-needed merge (using svnmerge.py this time) of trunk changes into p3yk. | Thomas Wouters | 2006-05-27 | 1 | -1/+3 |
|
|
* | Merge p3yk branch with the trunk up to revision 45595. This breaks a fair | Thomas Wouters | 2006-04-21 | 11 | -126/+158 |
|
|
* | Make 'python -tt' the default, meaning Python won't allow mixing tabs and | Thomas Wouters | 2006-04-14 | 2 | -46/+8 |
|
|
* | Get rid of compiler warning | Neal Norwitz | 2006-03-17 | 1 | -1/+1 |
|
|
* | Get rid of compiler warning about with_msg and as_msg being unused | Neal Norwitz | 2006-03-16 | 1 | -0/+2 |
|
|
* | Checkpoint. 218 tests are okay; 53 are failing. Done so far: | Guido van Rossum | 2006-03-15 | 2 | -1/+4 |
|
|
* | 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 |
|
|
* | Stop generating empty arrays. | Martin v. Löwis | 2006-02-26 | 1 | -12/+22 |
|
|
* | Fix iterating over cmpop_ty lists. | Martin v. Löwis | 2006-02-26 | 1 | -5/+13 |
|
|
* | Generate code to recursively copy an AST into | Martin v. Löwis | 2006-02-26 | 1 | -59/+206 |
|
|
* | Use Py_ssize_t to count the length. | Martin v. Löwis | 2006-02-16 | 1 | -1/+1 |
|
|
* | Remove C99ism. | Martin v. Löwis | 2006-02-15 | 1 | -1/+2 |
|
|
* | Merge ssize_t branch. | Martin v. Löwis | 2006-02-15 | 2 | -11/+12 |
|
|
* | Improved handling of syntax errors. | Jeremy Hylton | 2006-01-27 | 1 | -0/+1 |
|
|
* | Revert previous checkin, the check is for <, not ==. i is unsed in non-debug... | Neal Norwitz | 2006-01-08 | 1 | -2/+5 |
|
|
* | Fix icc warnings. This couldn't have been correct since i is checked | Neal Norwitz | 2006-01-08 | 1 | -5/+2 |
|
|
* | Whitespace normalization. | Tim Peters | 2005-12-25 | 3 | -814/+814 |
|
|
* | Fix SF bug #1072182, problems with signed characters. | Neal Norwitz | 2005-12-19 | 2 | -2/+3 |
|
|
* | Fix Bug #1378022, UTF-8 files with a leading BOM crashed the interpreter. | Neal Norwitz | 2005-12-18 | 1 | -0/+6 |
|
|
* | Merge from ast-arena. This reduces the code in Python/ast.c by ~300 lines, | Neal Norwitz | 2005-12-17 | 1 | -5/+10 |
|
|