Cython has moved to github.

cython

log

age author description
22 months Stefan Behnel test fix
22 months Stefan Behnel reimplement min()/max() optimisation before type analysis
22 months Stefan Behnel rewrite of min()/max() optimisation, now correctly handling temps and types
22 months Stefan Behnel merge
22 months Stefan Behnel merged in latest cython-devel
22 months Robert Bradshaw Test for #554, closures inside cdef block.
22 months Stefan Behnel minor cleanup
22 months Stefan Behnel do not let set/dict comprehensions leak in Py2, only list comprehensions
23 months Stefan Behnel merged in latest cython-devel
23 months Stefan Behnel merged in latest cython-devel
23 months Stefan Behnel extended test case
23 months Stefan Behnel fix node traversal in yield expressions
24 months Stefan Behnel merged in latest cython-devel
24 months Stefan Behnel merged in latest cython-devel
24 months Stefan Behnel disable tuple(genexpr) as it has a non-obvious negative effect on memory usage - better let users write tuple([...]) explicitly
24 months Stefan Behnel avoid potential 32bit issues in test
24 months Stefan Behnel cleanup
24 months Stefan Behnel cleanup
24 months Stefan Behnel test comment
24 months Stefan Behnel extended test case
24 months Stefan Behnel merged in latest cython-devel
24 months Stefan Behnel implement tuple(genexp) as tuple(list(genexp))
24 months Stefan Behnel clean up comprehensions to bring them closer to generator expressions, make their scoping behaviour configurable
24 months Stefan Behnel extended test case
24 months Stefan Behnel drop sum(genexpr) into plain C code when the result is C typed
24 months Stefan Behnel docstrings
24 months Stefan Behnel test for min/max builtins
24 months Stefan Behnel implement min(a,b,...) and max(a,b,...) in unrolled conditional code
24 months Stefan Behnel extended test case
24 months Stefan Behnel merged in latest cython-devel
24 months Stefan Behnel implement sum(genexp) as inlined genexp loop
24 months Stefan Behnel better error message
24 months Stefan Behnel support genexp loop variables that override builtin names or global functions etc.
24 months Stefan Behnel renamed test case
24 months Stefan Behnel Py3 test fix
24 months Stefan Behnel typo
24 months Stefan Behnel let generator expressions inherit type declarations from surrounding scope
24 months Stefan Behnel revert test fix after reverting comprehension change
24 months Stefan Behnel revert comprehensions to their previous (var-leaking) behaviour
2 years Stefan Behnel fix type inference and code generation for generator expressions at module level
2 years Stefan Behnel fix scoping rules for comprehensions and inlined generator expressions by injecting a separate scope instance
2 years Stefan Behnel merged in latest cython-devel
2 years Stefan Behnel merge
2 years Stefan Behnel extended test cases
2 years Stefan Behnel merged in latest cython-devel
2 years Stefan Behnel merged in latest cython-devel
2 years Stefan Behnel cleanup
2 years Stefan Behnel merged in latest cython-devel
2 years Stefan Behnel re-enabled test
2 years Stefan Behnel merged in latest cython-devel
2 years Stefan Behnel disable a pyregr test that currently crashes
2 years Stefan Behnel no longer disable CPython regression test suite in runtests.py when running in Py3
2 years Stefan Behnel merged in latest cython-devel
2 years Stefan Behnel merged in latest cython-devel
2 years Stefan Behnel merged in latest cython-devel
2 years Stefan Behnel merged in latest cython-devel
2 years Stefan Behnel disable any/all tests in Py<2.5
2 years Stefan Behnel extended test case
2 years Stefan Behnel removed outdated comment
2 years Stefan Behnel implement any(genexpr) and all(genexpr) as special cased optimisations without requiring generators