| Commit message (Expand) | Author | Age | Files | Lines |
* | Merged revisions 55407-55513 via svnmerge from | Guido van Rossum | 2007-05-22 | 1 | -2/+4 |
|
|
* | Add functions PyUnicode_Append() and PyUnicode_AppendAndDel() that mirror | Walter Dörwald | 2007-05-18 | 1 | -1/+1 |
|
|
* | Merged revisions 55328-55341 via svnmerge from | Guido van Rossum | 2007-05-15 | 1 | -48/+16 |
|
|
* | Merged revisions 55225-55227,55229-55269 via svnmerge from | Guido van Rossum | 2007-05-11 | 1 | -0/+3 |
|
|
* | Don't crash when nonlocal is used at module level (fixes SF#1705365) | Nick Coghlan | 2007-04-23 | 1 | -5/+10 |
|
|
* | Hide list comp variables and support set comprehensions | Nick Coghlan | 2007-04-15 | 1 | -136/+209 |
|
|
* | Implement PEP 3115 -- new metaclass syntax and semantics. | Guido van Rossum | 2007-03-18 | 1 | -0/+5 |
|
|
* | Provisional implementation of PEP 3104. | Jeremy Hylton | 2007-02-27 | 1 | -11/+66 |
|
|
* | Make bytes_repr return a string containing a b"" literal. | Georg Brandl | 2007-02-24 | 1 | -1/+2 |
|
|
* | * Remove PRINT_ITEM(_TO), PRINT_NEWLINE(_TO) opcodes. | Georg Brandl | 2007-02-09 | 1 | -5/+0 |
|
|
* | Some more changes related to the new except syntax and semantics, | Guido van Rossum | 2007-01-10 | 1 | -1/+2 |
|
|
* | PEP 3107 - Function Annotations thanks to Tony Lownds | Neal Norwitz | 2006-12-28 | 1 | -20/+53 |
|
|
* | Jiwon Seo's PEP 3102 implementation. | Guido van Rossum | 2006-10-27 | 1 | -0/+18 |
|
|
* | Patch #1550786: ellipsis literal. | Georg Brandl | 2006-09-06 | 1 | -2/+1 |
|
|
* | Patch #1550800: make exec a function. | Georg Brandl | 2006-09-06 | 1 | -27/+1 |
|
|
* | Fix set literals not being visited in symtable creation. | Georg Brandl | 2006-08-28 | 1 | -0/+3 |
|
|
* | Remove the UNARY_CONVERT opcode (was used for backticks). Also bumped up the | Brett Cannon | 2006-08-25 | 1 | -3/+0 |
|
|
* | Merge current trunk into p3yk. This includes the PyNumber_Index API change, | Thomas Wouters | 2006-08-21 | 1 | -10/+14 |
|
|
* | Merged revisions 46753-51188 via svnmerge from | Thomas Wouters | 2006-08-11 | 1 | -3/+13 |
|
|
* | Merge the rest of the trunk. | Thomas Wouters | 2006-06-08 | 1 | -1/+20 |
|
|
* | Merge p3yk branch with the trunk up to revision 45595. This breaks a fair | Thomas Wouters | 2006-04-21 | 1 | -11/+13 |
|
|
* | No need to export PySTEntry_New, it is only used in symtable.c | Neal Norwitz | 2006-02-28 | 1 | -1/+2 |
|
|
* | PEP 343 -- the with-statement. | Guido van Rossum | 2006-02-27 | 1 | -14/+30 |
|
|
* | PEP 308 implementation, including minor refdocs and some testcases. It | Thomas Wouters | 2006-02-27 | 1 | -0/+5 |
|
|
* | Use Py_ssize_t to count the | Martin v. Löwis | 2006-02-16 | 1 | -1/+1 |
|
|
* | Merge ssize_t branch. | Martin v. Löwis | 2006-02-15 | 1 | -3/+5 |
|
|
* | analyze_cells(): This no longer compiled under VC 7.1. | Tim Peters | 2006-01-08 | 1 | -1/+2 |
|
|
* | Fix icc warnings: conversion from "long" to "int" may lose significant bits | Neal Norwitz | 2006-01-08 | 1 | -10/+11 |
|
|
* | Fix icc warnings: shadowing local variable (i) and complex is set but not use... | Neal Norwitz | 2006-01-07 | 1 | -3/+2 |
|
|
* | Bug #889500, fix line number on SyntaxWarning for global declarations. | Neal Norwitz | 2005-12-19 | 1 | -7/+10 |
|
|
* | Fix a few more ref leaks. Backport candidate | Neal Norwitz | 2005-11-24 | 1 | -1/+3 |
|
|
* | Last batch of ref leaks in new AST code. | Neal Norwitz | 2005-11-19 | 1 | -4/+8 |
|
|
* | Bring handling of genexpr in line with other anonymous scope names | Nick Coghlan | 2005-11-16 | 1 | -4/+3 |
|
|
* | Fix a lot of memory and ref leaks in error paths. | Neal Norwitz | 2005-11-13 | 1 | -33/+75 |
|
|
* | Do not pollute name block_ty, prefix with _Py_ | Neal Norwitz | 2005-10-24 | 1 | -3/+3 |
|
|
* | Fix check_unoptimized() function. The only optimized namespaces are | Neil Schemenauer | 2005-10-23 | 1 | -1/+1 |
|
|
* | Fix private name mangling. The symtable also must do mangles so that | Neil Schemenauer | 2005-10-23 | 1 | -14/+30 |
|
|
* | Fix a bunch of imports to use code.h instead of compile.h. | Jeremy Hylton | 2005-10-21 | 1 | -1/+0 |
|
|
* | ANSI-C-ify the placement of local var declarations. | Armin Rigo | 2005-10-21 | 1 | -2/+4 |
|
|
* | Merge ast-branch to head | Jeremy Hylton | 2005-10-20 | 1 | -63/+1178 |
|
|
* | SF patch #872326: Generator expression implementation | Raymond Hettinger | 2004-05-19 | 1 | -0/+2 |
|
|
* | Fix for SF [ 734869 ] Lambda functions in list comprehensions | Jeremy Hylton | 2003-05-21 | 1 | -0/+1 |
|
|
* | Add a comment explaining the st_symbols cache. | Jeremy Hylton | 2001-12-10 | 1 | -1/+15 |
|
|
* | PySymtableEntry_New(): I'm not sure what this routine is doing, but it | Tim Peters | 2001-12-08 | 1 | -0/+1 |
|
|
* | SF bug #488687 reported by Neal Norwitz | Jeremy Hylton | 2001-12-04 | 1 | -0/+1 |
|
|
* | ste_repr(): Conversion of sprintf() to PyOS_snprintf() for buffer | Barry Warsaw | 2001-11-28 | 1 | -4/+5 |
|
|
* | Add optional docstrings to member descriptors. For backwards | Guido van Rossum | 2001-09-20 | 1 | -9/+20 |
|
|
* | Merging the gen-branch into the main line, at Guido's direction. Yay! | Tim Peters | 2001-06-18 | 1 | -0/+1 |
|
|
* | Improved __future__ parser; still more to do | Jeremy Hylton | 2001-02-27 | 1 | -0/+1 |
|
|
* | Preliminary support for future nested scopes | Jeremy Hylton | 2001-02-27 | 1 | -1/+1 |
|
|