cython-devel

log

age author description
13 hours Robert Bradshaw Disable FlattenInListTransformdefault tip
13 hours Robert Bradshaw Enable FlattenInListTransform, IterationTransform.
15 hours Robert Bradshaw Another needed optimization.
15 hours Robert Bradshaw Another necessary "optimization."
16 hours Robert Bradshaw Disable optimizations (revert before release).
4 days Stefan Behnel code cleanup for function default arguments, make sure we keep any executable C code behind the type declarations in the function header regardless of how we get to the default values
4 days Stefan Behnel removed 'test3' make target - 'make PYTHON=python3 test' now works out of the box with Python 3
4 days Stefan Behnel comments
4 days Stefan Behnel fix performance hit in argument unpacking when passing keyword arguments into functions that have both required positional and optional keyword arguments
6 days Stefan Behnel coercions should always return a new node in order to support result reuse
7 days Robert Bradshaw Add wrapper files to MANIFEST.in.
8 days Robert Bradshaw Added tag 0.13.beta0 for changeset 5ac2eaefcdc9
8 days Robert Bradshaw Version bump.
8 days Stefan Behnel Py3 test fix0.13.beta0
8 days Stefan Behnel merge
8 days Stefan Behnel safety fix for unicode literals test - otherwise fails to print on some platforms
9 days Robert Bradshaw Merge closures into main development branch.
11 days Stefan Behnel typo
11 days Stefan Behnel generate the expected (fast) code for isinstance() checks on builtin types
11 days Stefan Behnel fix 'set' type checks (prevent match with frozenset)
11 days Stefan Behnel provide 'complex' type as Builtin.complex_type
11 days Stefan Behnel fix return types of PyBytes_* C-API functions
11 days Stefan Behnel fix code annotation of 'finally' block
2 weeks Stefan Behnel applied fix by haoyu for bug #543
2 weeks Stefan Behnel merged in latest cython-devel
2 weeks Stefan Behnel moved new listcomp test over to existing test module for list comprehensions
2 weeks Stefan Behnel reminder for code fix when general genexprs are supported
2 weeks Stefan Behnel code cleanup and fixes for genexprs
2 weeks Craig Citro merge
2 weeks Craig Citro Fix bug in type analysis for ComprehensionNodes.
2 weeks Stefan Behnel merge
2 weeks Stefan Behnel fix tree structure for generator expressions
2 weeks Stefan Behnel merged in latest cython-devel
2 weeks Robert Bradshaw Re-disable debug_trace_code_generation
2 weeks Robert Bradshaw Disable closures inside cdef functions for now.
2 weeks Stefan Behnel test fix
2 weeks Stefan Behnel reimplement min()/max() optimisation before type analysis
2 weeks Stefan Behnel rewrite of min()/max() optimisation, now correctly handling temps and types
2 weeks Stefan Behnel merge
2 weeks Stefan Behnel merged in latest cython-devel
3 weeks Robert Bradshaw Test for #554, closures inside cdef block.
3 weeks Stefan Behnel minor cleanup
3 weeks Stefan Behnel do not let set/dict comprehensions leak in Py2, only list comprehensions
5 weeks Stefan Behnel merged in latest cython-devel
6 weeks Stefan Behnel merged in latest cython-devel
6 weeks Stefan Behnel extended test case
6 weeks Stefan Behnel fix node traversal in yield expressions
2 months Stefan Behnel merged in latest cython-devel
2 months Stefan Behnel merged in latest cython-devel
2 months Stefan Behnel disable tuple(genexpr) as it has a non-obvious negative effect on memory usage - better let users write tuple([...]) explicitly
2 months Stefan Behnel avoid potential 32bit issues in test
2 months Stefan Behnel cleanup
2 months Stefan Behnel cleanup
2 months Stefan Behnel test comment
2 months Stefan Behnel extended test case
2 months Stefan Behnel merged in latest cython-devel
2 months Stefan Behnel implement tuple(genexp) as tuple(list(genexp))
2 months Stefan Behnel clean up comprehensions to bring them closer to generator expressions, make their scoping behaviour configurable
2 months Stefan Behnel extended test case
2 months Stefan Behnel drop sum(genexpr) into plain C code when the result is C typed