cython.git
2008-12-19 Stefan Behnelfix for-from loop in list comprehensions
2008-12-18 Stefan Behnelavoid recursive coercion in CoerceToPyTypeNode
2008-12-18 Stefan Behnelnew transform that hides the loop variable in a compreh...
2008-12-18 Stefan Behnelextended test cases for for-loop and list comp
2008-12-18 Stefan Behnelfor-from-loop: remember loopvar node instead of its...
2008-12-18 Stefan Behnelcleanup, keep for-range optimisation more local
2008-12-18 Stefan Behnelmore tests for for-loops and constant expressions
2008-12-18 Stefan Behnel... and through type casts
2008-12-18 Stefan Behnelbetter error messages during constant folding, forward...
2008-12-17 Stefan Behnelmoved iter-range() optimisation into a transform (worth...
2008-12-17 Stefan Behnelgive a hint on what went wrong on a failed Cython impor...
2008-12-16 Stefan Behnelsmall refactoring
2008-12-16 Lisandro Dalcinfix outdated Parsing.pxd
2008-12-14 Stefan Behnelreplace set([...]) by a literal set {...}
2008-12-14 Stefan Behnelall Nodes inherit from object, so should CmpNode
2008-12-14 Stefan Behnelextended test case to make sure we didn't break some...
2008-12-14 Stefan Behnelcleanup
2008-12-14 Stefan Behnelgeneric aggregation of a constant BinopNode into a...
2008-12-14 Stefan Behnelalso pre-calculate the constant result of floats
2008-12-14 Stefan Behnelone more common exception silenced during constant...
2008-12-14 Stefan BehnelPy2.3 fix
2008-12-14 Stefan Behnelcleanup
2008-12-13 Stefan Behnelinitial test for constant folding
2008-12-13 Stefan Behnelinitial constant folding transform: calculate constant...
2008-12-13 Stefan Behneldoctests must set __doc__ in Py2.3
2008-12-13 Robert Bradshawoptional arguments for list.sort()
2008-12-13 Stefan Behnelmake sure we have the Py2.3 set code available when...
2008-12-13 Stefan Behnelextended test case
2008-12-12 Stefan Behneltest fix
2008-12-12 Stefan Behnelfix for dict literals that end with ','
2008-12-12 Stefan Behneltest fixes after latest with transform changes
2008-12-12 Stefan Behnelimplement set/dict comprehensions and set literals
2008-12-12 Stefan Behnelexport set builtin type
2008-12-11 Stefan Behnelembed __init__ signature in class docstring
2008-12-10 Stefan Behnelminor fixes to the with statement transform
2008-12-08 Stefan Behnelrunnable test case for try-finally
2008-12-08 Stefan Behnelmissing temp cleanup on assignment to TempRefNode
2008-12-07 Stefan Behnelextended with statement test case - disabled for now...
2008-12-07 Stefan Behnelrenamed node
2008-12-07 Stefan Behnelfixed FlattenInListTransform by providing a temp block...
2008-12-07 Stefan Behnelremoved unused (and broken) PersistantNode
2008-12-07 Stefan Behnelextended test case for in/not-in operator
2008-12-07 Stefan Behnelcode simplification
2008-12-05 Stefan Behneldisabled in-list transform again as the CloneNode still...
2008-12-05 Stefan Behnelextended test case for dict iteration in list comprehen...
2008-12-05 Stefan Behnelextended test case
2008-12-04 Stefan Behnelcomment
2008-12-04 Stefan Behnelmerge
2008-12-04 Stefan Behnelsame test for 'and' operator
2008-12-04 Stefan Behnelfixed ref-counting in BoolBinopNode
2008-12-04 Robert BradshawAvoid some trivial tree traversal to speed up compilation.
2008-12-03 Stefan Behnelmerge
2008-12-03 Stefan Behnelfix crashes on type casts
2008-12-03 Stefan Behnelextended 'if' test case that enforces heavy temp usage
2008-12-03 Stefan Behnelfix temp deallocation in PrimaryCmpNode
2008-12-03 Stefan Behnelbetter exception message for temp failure tracking
2008-12-03 Stefan Behnelmake CallNode a NewTempExprNode
2008-12-03 Stefan Behnelsome cleanup, fix temp handling in 'if' conditions
2008-12-03 Lisandro Dalcinfix generation of C++-style comment, use C-style
2008-12-02 Stefan Behnelwhile loop needs temp disposal, too
2008-12-02 Stefan Behnelminor code cleanup
2008-12-02 Stefan Behnelforgot to make the lhs in FlattenInListTransform a...
2008-12-02 Stefan Behnelmerge
2008-12-02 Stefan Behnelfix FlattenInListTransform for the trivial case
2008-12-01 Dag Sverre... More fixes for new temps
2008-11-30 Dag Sverre... Fix major problem (recently introduced) with temp relea...
2008-11-30 Dag Sverre... merge
2008-11-30 Dag Sverre... Fix for temp releasing in assignment to TupleNode
2008-11-30 Stefan Behnelfix method signatures
2008-11-30 Dag Sverre... Fix suboptimal temp usage in BoolBinopNode. For further...
2008-11-30 Stefan Behnelmerge
2008-11-30 Dag Sverre... Disabled FlattenInListTransform (see #146)
2008-11-30 Dag Sverre... BoolBinopNode converted, introduced parameters to gener...
2008-11-30 Dag Sverre... merge
2008-11-30 Dag Sverre... Small fix
2008-11-30 Stefan Behnelmoved CoercionNode to new temps (fixes 8 tests)
2008-11-30 Stefan Behnelmicro cleanup
2008-11-30 Stefan Behnelmerge
2008-11-30 Stefan Behnelextended test case for returning from for loops
2008-11-29 Dag Sverre... Convert low-hanging fruit to new temps. 12 down, 27...
2008-11-29 Dag Sverre... Converted IteratorNode to new temps, fixes #124
2008-11-29 Dag Sverre... Upgraded NewTempExprNode, converted PrimaryCmpNode...
2008-11-29 Dag Sverre... Cleanup
2008-11-29 Dag Sverre... merge
2008-11-29 Dag Sverre... NewTempsExprNode cleanup -- easier to override temp...
2008-11-29 Dag Sverre... Remove use of TempNode from ForInStatNode to simplify...
2008-11-29 Dag Sverre... BoolBinopNode cleanup due to new temps
2008-11-28 Stefan Behneloptimise dict(a=1,b=2,...) into {'a':1, 'b':2, ......
2008-11-28 Stefan Behnelremoved caching for subexpr attributes as it can break...
2008-11-28 Stefan Behnelextended test cases
2008-11-28 Stefan Behnelunit test fix
2008-11-28 Stefan Behnelfix final optimisations for calls inside of assignments
2008-11-28 Stefan Behnelmerge
2008-11-28 Stefan Behnelfix type of AsTupleNode to tuple_type
2008-11-27 Dag Sverre... One shouldn't have to maintain manual recursion stacks...
2008-11-27 Dag Sverre... Inline function definitions in pxd files
2008-11-27 Dag Sverre... Fix broken error reporting for functions in pxds
2008-11-27 Stefan Behnelanother simplification after Dag's cleanup
2008-11-27 Stefan Behnelmerge
2008-11-27 Stefan Behnelsimplification for iter-dict optimisation after moving...
next