cython.git
2008-12-25 Stefan Behnelextended test case
2008-12-24 Stefan Behnelcleanup, comments, less code for special case of no...
2008-12-24 Stefan Behnelalways parse keyword arguments in a PyDict_Next() loop...
2008-12-24 Stefan Behnelbe more optimistic when parsing optional keywords:...
2008-12-23 Stefan Behnelmerge
2008-12-23 Lisandro Dalcinfix distutils GCC compilation flags to remove -Wstrict...
2008-12-23 Stefan Behnelfix error message
2008-12-22 Lisandro Dalcinmake GCC happy when string literals and const char...
2008-12-22 Lisandro DalcinBacked out changeset 9ef9ef371247
2008-12-22 Lisandro Dalcinfix testcase to avoid GCC warning about unused function
2008-12-22 Lisandro Dalcinfix function declaration in utility code
2008-12-21 Stefan Behneland another tiny speed-up
2008-12-21 Stefan Behnelsome more cythonisation in Visitor.py
2008-12-21 Stefan Behnelcompile classes in Visitor.py into real extension classes
2008-12-21 Stefan Behneldon't complain when extension classes 'inherit' from...
2008-12-20 Stefan Behnelsmall cleanup in parser
2008-12-20 Stefan Behnellittle tweak for looking up node children
2008-12-20 Stefan Behnelmore streamlining
2008-12-20 Stefan Behnelsome profiler guided streamlining in compiler output...
2008-12-20 Lisandro Dalcinupdate clean target in makefile
2008-12-20 Jason EvansSet module name for Spam/__init__.pyx to Spam.
2008-12-19 Stefan Behneltiny cleanup, fix #163
2008-12-19 Stefan Behnelextended for-loop test case
2008-12-19 Stefan Behnelfix expected messages in error test
2008-12-19 Stefan Behnelfix previously introduced crash bug due to multiple...
2008-12-19 Stefan Behnelmissing cpdef declarations for Parsing.py
2008-12-19 Stefan BehnelCython compile fixes
2008-12-19 Stefan Behnelremoved original iter-range optimisation (now replaced...
2008-12-19 Stefan Behneldisable comprehension transform to keep current leaking...
2008-12-19 Stefan Behnelmajor cleanup for comprehension code to remove redundan...
2008-12-19 Stefan Behnelcleanup
2008-12-19 Stefan Behneluse a straight call to PyList_Tuple() on code like...
2008-12-19 Stefan BehnelPy2.3 test fix
2008-12-19 Stefan Behnelallow skipping GIL checks on nodes generated by transforms
2008-12-19 Stefan Behnelwork around for earlier compile error
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
next