COMMITS
/ Python/ast.c December 28, 2006
N
PEP 3107 - Function Annotations thanks to Tony Lownds
Neal Norwitz committed
December 13, 2006
T
Four months of trunk changes (including a few releases...)
Thomas Wouters committed
October 27, 2006
G
Jiwon Seo's PEP 3102 implementation.
Guido van Rossum committed
September 6, 2006
G
Patch #1550786: ellipsis literal.
Georg Brandl committed
G
Patch #1550800: make exec a function.
Georg Brandl committed
August 28, 2006
G
SF patch 1547796 by Georg Brandl -- set literals.
Guido van Rossum committed
August 25, 2006
B
Remove the UNARY_CONVERT opcode (was used for backticks). Also bumped up the
Brett Cannon committed
B
Remove support for backticks from the grammar and compiler.
Brett Cannon committed
August 24, 2006
G
Killed the <> operator. You must now use !=.
Guido van Rossum committed
August 21, 2006
T
Merge current trunk into p3yk. This includes the PyNumber_Index API change,
Thomas Wouters committed
August 11, 2006
T
Merged revisions 46753-51188 via svnmerge from
Thomas Wouters committed
May 27, 2006
T
Much-needed merge (using svnmerge.py this time) of trunk changes into p3yk.
Thomas Wouters committed
April 21, 2006
T
Merge p3yk branch with the trunk up to revision 45595. This breaks a fair
Thomas Wouters committed
March 7, 2006
H
SF #1444030: Fix several potential defects found by Coverity.
Hye-Shik Chang committed
March 1, 2006
M
Patch #1440601: Add col_offset attribute to AST nodes.
Martin v. Löwis committed
T
Fix uninitialized value. (Why are we using bools instead of ints, like we do
Thomas Wouters committed
February 28, 2006
T
Make 'as' an actual keyword when with's future statement is used. Not
Thomas Wouters committed
J
Remove asdl_seq_APPEND() and simplify asdl seq implementation.
Jeremy Hylton committed
T
SF patch #1438387, PEP 328: relative and absolute imports.
Thomas Wouters committed
February 27, 2006
G
PEP 343 -- the with-statement.
Guido van Rossum committed
J
Fix parsing of subscriptlist.
Jeremy Hylton committed
T
And some more cleanup.
Thomas Wouters committed
T
Clean up from-import handling.
Thomas Wouters committed
J
Simplify ast_for_trailer() in anticipation of more changes.
Jeremy Hylton committed
T
Fix old not-reading-pep-308-right artifact.
Thomas Wouters committed
T
Fix assertion errors in debug build, brought on by PEP 308 patch.
Thomas Wouters committed
T
PEP 308 implementation, including minor refdocs and some testcases. It
Thomas Wouters committed
February 5, 2006
N
Use C-style comment
Neal Norwitz committed
January 27, 2006
J
Improved handling of syntax errors.
Jeremy Hylton committed
January 8, 2006
T
Repair bizarre indentation created by VC 7.1.
Tim Peters committed
T
alias_for_import_name(): Dueling compiler warnings ;-)
Tim Peters committed
N
Fix icc warnings: conversion from "long" to "int" may lose significant bits
Neal Norwitz committed
January 7, 2006
N
Fix icc warnings: shadowing local variables
Neal Norwitz committed
December 29, 2005
F
SF#1391872
Fredrik Lundh committed
December 19, 2005
N
Fix SF bug #1072182, problems with signed characters.
Neal Norwitz committed
December 18, 2005
N
Cleanup a bit and make things more consistent.
Neal Norwitz committed
December 17, 2005
N
SF patch #1355913, PEP 341 - Unification of try/except and try/finally
Neal Norwitz committed
N
Merge from ast-arena. This reduces the code in Python/ast.c by ~300 lines,
Neal Norwitz committed
December 11, 2005
N
SF #1377897, Bus error in ast
Neal Norwitz committed
N
SF #1370197, memory leak - ast_error_finish (in error conditions).
Neal Norwitz committed
December 5, 2005
N
Remove unnecessary extern variable
Neal Norwitz committed
November 20, 2005
N
Fix a few more memory leaks
Neal Norwitz committed
November 16, 2005
N
add more doc
Neal Norwitz committed
November 15, 2005
N
Fix another memory leak or two (one real, one potential)
Neal Norwitz committed
N
Add a note about how to do the memory deallocation a bit.
Neal Norwitz committed
N
Fix a whole bunch of potential memory leaks (and some real ones too)
Neal Norwitz committed
November 14, 2005
N
Convert all internal errors from Exception to SystemError
Neal Norwitz committed
N
Fix memory leak with bad generator expression
Neal Norwitz committed
November 13, 2005
N
remove useless debug print helper. fix a couple of exceptions
Neal Norwitz committed
October 25, 2005
N
Refactor code for translating "power" nodes.
Neil Schemenauer committed