2008-12-19 |
Stefan Behnel | missing cpdef declarations for Parsing.py |
commit | commitdiff | tree | snapshot |
2008-12-19 |
Stefan Behnel | Cython compile fixes |
commit | commitdiff | tree | snapshot |
2008-12-19 |
Stefan Behnel | removed original iter-range optimisation (now replaced... |
commit | commitdiff | tree | snapshot |
2008-12-19 |
Stefan Behnel | disable comprehension transform to keep current leaking... |
commit | commitdiff | tree | snapshot |
2008-12-19 |
Stefan Behnel | major cleanup for comprehension code to remove redundan... |
commit | commitdiff | tree | snapshot |
2008-12-19 |
Stefan Behnel | cleanup |
commit | commitdiff | tree | snapshot |
2008-12-19 |
Stefan Behnel | use a straight call to PyList_Tuple() on code like... |
commit | commitdiff | tree | snapshot |
2008-12-19 |
Stefan Behnel | Py2.3 test fix |
commit | commitdiff | tree | snapshot |
2008-12-19 |
Stefan Behnel | allow skipping GIL checks on nodes generated by transforms |
commit | commitdiff | tree | snapshot |
2008-12-19 |
Stefan Behnel | work around for earlier compile error |
commit | commitdiff | tree | snapshot |
2008-12-19 |
Stefan Behnel | fix for-from loop in list comprehensions |
commit | commitdiff | tree | snapshot |
2008-12-18 |
Stefan Behnel | avoid recursive coercion in CoerceToPyTypeNode |
commit | commitdiff | tree | snapshot |
2008-12-18 |
Stefan Behnel | new transform that hides the loop variable in a compreh... |
commit | commitdiff | tree | snapshot |
2008-12-18 |
Stefan Behnel | extended test cases for for-loop and list comp |
commit | commitdiff | tree | snapshot |
2008-12-18 |
Stefan Behnel | for-from-loop: remember loopvar node instead of its... |
commit | commitdiff | tree | snapshot |
2008-12-18 |
Stefan Behnel | cleanup, keep for-range optimisation more local |
commit | commitdiff | tree | snapshot |
2008-12-18 |
Stefan Behnel | more tests for for-loops and constant expressions |
commit | commitdiff | tree | snapshot |
2008-12-18 |
Stefan Behnel | ... and through type casts |
commit | commitdiff | tree | snapshot |
2008-12-18 |
Stefan Behnel | better error messages during constant folding, forward... |
commit | commitdiff | tree | snapshot |
2008-12-17 |
Stefan Behnel | moved iter-range() optimisation into a transform (worth... |
commit | commitdiff | tree | snapshot |
2008-12-17 |
Stefan Behnel | give a hint on what went wrong on a failed Cython impor... |
commit | commitdiff | tree | snapshot |
2008-12-16 |
Stefan Behnel | small refactoring |
commit | commitdiff | tree | snapshot |
2008-12-16 |
Lisandro Dalcin | fix outdated Parsing.pxd |
commit | commitdiff | tree | snapshot |
2008-12-14 |
Stefan Behnel | replace set([...]) by a literal set {...} |
commit | commitdiff | tree | snapshot |
2008-12-14 |
Stefan Behnel | all Nodes inherit from object, so should CmpNode |
commit | commitdiff | tree | snapshot |
2008-12-14 |
Stefan Behnel | extended test case to make sure we didn't break some... |
commit | commitdiff | tree | snapshot |
2008-12-14 |
Stefan Behnel | cleanup |
commit | commitdiff | tree | snapshot |
2008-12-14 |
Stefan Behnel | generic aggregation of a constant BinopNode into a... |
commit | commitdiff | tree | snapshot |
2008-12-14 |
Stefan Behnel | also pre-calculate the constant result of floats |
commit | commitdiff | tree | snapshot |
2008-12-14 |
Stefan Behnel | one more common exception silenced during constant... |
commit | commitdiff | tree | snapshot |
2008-12-14 |
Stefan Behnel | Py2.3 fix |
commit | commitdiff | tree | snapshot |
2008-12-14 |
Stefan Behnel | cleanup |
commit | commitdiff | tree | snapshot |
2008-12-13 |
Stefan Behnel | initial test for constant folding |
commit | commitdiff | tree | snapshot |
2008-12-13 |
Stefan Behnel | initial constant folding transform: calculate constant... |
commit | commitdiff | tree | snapshot |
2008-12-13 |
Stefan Behnel | doctests must set __doc__ in Py2.3 |
commit | commitdiff | tree | snapshot |
2008-12-13 |
Robert Bradshaw | optional arguments for list.sort() |
commit | commitdiff | tree | snapshot |
2008-12-13 |
Stefan Behnel | make sure we have the Py2.3 set code available when... |
commit | commitdiff | tree | snapshot |
2008-12-13 |
Stefan Behnel | extended test case |
commit | commitdiff | tree | snapshot |
2008-12-12 |
Stefan Behnel | test fix |
commit | commitdiff | tree | snapshot |
2008-12-12 |
Stefan Behnel | fix for dict literals that end with ',' |
commit | commitdiff | tree | snapshot |
2008-12-12 |
Stefan Behnel | test fixes after latest with transform changes |
commit | commitdiff | tree | snapshot |
2008-12-12 |
Stefan Behnel | implement set/dict comprehensions and set literals |
commit | commitdiff | tree | snapshot |
2008-12-12 |
Stefan Behnel | export set builtin type |
commit | commitdiff | tree | snapshot |
2008-12-11 |
Stefan Behnel | embed __init__ signature in class docstring |
commit | commitdiff | tree | snapshot |
2008-12-10 |
Stefan Behnel | minor fixes to the with statement transform |
commit | commitdiff | tree | snapshot |
2008-12-08 |
Stefan Behnel | runnable test case for try-finally |
commit | commitdiff | tree | snapshot |
2008-12-08 |
Stefan Behnel | missing temp cleanup on assignment to TempRefNode |
commit | commitdiff | tree | snapshot |
2008-12-07 |
Stefan Behnel | extended with statement test case - disabled for now... |
commit | commitdiff | tree | snapshot |
2008-12-07 |
Stefan Behnel | renamed node |
commit | commitdiff | tree | snapshot |
2008-12-07 |
Stefan Behnel | fixed FlattenInListTransform by providing a temp block... |
commit | commitdiff | tree | snapshot |
2008-12-07 |
Stefan Behnel | removed unused (and broken) PersistantNode |
commit | commitdiff | tree | snapshot |
2008-12-07 |
Stefan Behnel | extended test case for in/not-in operator |
commit | commitdiff | tree | snapshot |
2008-12-07 |
Stefan Behnel | code simplification |
commit | commitdiff | tree | snapshot |
2008-12-05 |
Stefan Behnel | disabled in-list transform again as the CloneNode still... |
commit | commitdiff | tree | snapshot |
2008-12-05 |
Stefan Behnel | extended test case for dict iteration in list comprehen... |
commit | commitdiff | tree | snapshot |
2008-12-05 |
Stefan Behnel | extended test case |
commit | commitdiff | tree | snapshot |
2008-12-04 |
Stefan Behnel | comment |
commit | commitdiff | tree | snapshot |
2008-12-04 |
Stefan Behnel | merge |
commit | commitdiff | tree | snapshot |
2008-12-04 |
Stefan Behnel | same test for 'and' operator |
commit | commitdiff | tree | snapshot |
2008-12-04 |
Stefan Behnel | fixed ref-counting in BoolBinopNode |
commit | commitdiff | tree | snapshot |
2008-12-04 |
Robert Bradshaw | Avoid some trivial tree traversal to speed up compilation. |
commit | commitdiff | tree | snapshot |
2008-12-03 |
Stefan Behnel | merge |
commit | commitdiff | tree | snapshot |
2008-12-03 |
Stefan Behnel | fix crashes on type casts |
commit | commitdiff | tree | snapshot |
2008-12-03 |
Stefan Behnel | extended 'if' test case that enforces heavy temp usage |
commit | commitdiff | tree | snapshot |
2008-12-03 |
Stefan Behnel | fix temp deallocation in PrimaryCmpNode |
commit | commitdiff | tree | snapshot |
2008-12-03 |
Stefan Behnel | better exception message for temp failure tracking |
commit | commitdiff | tree | snapshot |
2008-12-03 |
Stefan Behnel | make CallNode a NewTempExprNode |
commit | commitdiff | tree | snapshot |
2008-12-03 |
Stefan Behnel | some cleanup, fix temp handling in 'if' conditions |
commit | commitdiff | tree | snapshot |
2008-12-03 |
Lisandro Dalcin | fix generation of C++-style comment, use C-style |
commit | commitdiff | tree | snapshot |
2008-12-02 |
Stefan Behnel | while loop needs temp disposal, too |
commit | commitdiff | tree | snapshot |
2008-12-02 |
Stefan Behnel | minor code cleanup |
commit | commitdiff | tree | snapshot |
2008-12-02 |
Stefan Behnel | forgot to make the lhs in FlattenInListTransform a... |
commit | commitdiff | tree | snapshot |
2008-12-02 |
Stefan Behnel | merge |
commit | commitdiff | tree | snapshot |
2008-12-02 |
Stefan Behnel | fix FlattenInListTransform for the trivial case |
commit | commitdiff | tree | snapshot |
2008-12-01 |
Dag Sverre... | More fixes for new temps |
commit | commitdiff | tree | snapshot |
2008-11-30 |
Dag Sverre... | Fix major problem (recently introduced) with temp relea... |
commit | commitdiff | tree | snapshot |
2008-11-30 |
Dag Sverre... | merge |
commit | commitdiff | tree | snapshot |
2008-11-30 |
Dag Sverre... | Fix for temp releasing in assignment to TupleNode |
commit | commitdiff | tree | snapshot |
2008-11-30 |
Stefan Behnel | fix method signatures |
commit | commitdiff | tree | snapshot |
2008-11-30 |
Dag Sverre... | Fix suboptimal temp usage in BoolBinopNode. For further... |
commit | commitdiff | tree | snapshot |
2008-11-30 |
Stefan Behnel | merge |
commit | commitdiff | tree | snapshot |
2008-11-30 |
Dag Sverre... | Disabled FlattenInListTransform (see #146) |
commit | commitdiff | tree | snapshot |
2008-11-30 |
Dag Sverre... | BoolBinopNode converted, introduced parameters to gener... |
commit | commitdiff | tree | snapshot |
2008-11-30 |
Dag Sverre... | merge |
commit | commitdiff | tree | snapshot |
2008-11-30 |
Dag Sverre... | Small fix |
commit | commitdiff | tree | snapshot |
2008-11-30 |
Stefan Behnel | moved CoercionNode to new temps (fixes 8 tests) |
commit | commitdiff | tree | snapshot |
2008-11-30 |
Stefan Behnel | micro cleanup |
commit | commitdiff | tree | snapshot |
2008-11-30 |
Stefan Behnel | merge |
commit | commitdiff | tree | snapshot |
2008-11-30 |
Stefan Behnel | extended test case for returning from for loops |
commit | commitdiff | tree | snapshot |
2008-11-29 |
Dag Sverre... | Convert low-hanging fruit to new temps. 12 down, 27... |
commit | commitdiff | tree | snapshot |
2008-11-29 |
Dag Sverre... | Converted IteratorNode to new temps, fixes #124 |
commit | commitdiff | tree | snapshot |
2008-11-29 |
Dag Sverre... | Upgraded NewTempExprNode, converted PrimaryCmpNode... |
commit | commitdiff | tree | snapshot |
2008-11-29 |
Dag Sverre... | Cleanup |
commit | commitdiff | tree | snapshot |
2008-11-29 |
Dag Sverre... | merge |
commit | commitdiff | tree | snapshot |
2008-11-29 |
Dag Sverre... | NewTempsExprNode cleanup -- easier to override temp... |
commit | commitdiff | tree | snapshot |
2008-11-29 |
Dag Sverre... | Remove use of TempNode from ForInStatNode to simplify... |
commit | commitdiff | tree | snapshot |
2008-11-29 |
Dag Sverre... | BoolBinopNode cleanup due to new temps |
commit | commitdiff | tree | snapshot |
2008-11-28 |
Stefan Behnel | optimise dict(a=1,b=2,...) into {'a':1, 'b':2, ...... |
commit | commitdiff | tree | snapshot |
2008-11-28 |
Stefan Behnel | removed caching for subexpr attributes as it can break... |
commit | commitdiff | tree | snapshot |
2008-11-28 |
Stefan Behnel | extended test cases |
commit | commitdiff | tree | snapshot |
next |