cython.git
2008-11-26 Stefan Behnelfix for two problems with optimised dict iteration...
2008-11-26 Robert Bradshawcleanup
2008-11-26 Robert Bradshawmerge
2008-11-26 Robert Bradshawcdef extern structs may be c++ classes, can refer to...
2008-11-25 Robert Bradshawmerge
2008-11-25 Robert Bradshawmerge 0.10.2
2008-11-25 Robert Bradshawbump version number
2008-11-25 Robert BradshawAdded tag 0.10.2 for changeset 92baafe0edf3
2008-11-25 Robert BradshawFix gcc crash on recursive typedef struct 0.10.2
2008-11-25 Stefan Behneltest case from ticket 123
2008-11-25 Stefan Behnelfix PyTypeTestNode after iter-dict changes
2008-11-25 Stefan Behneluse type cast to enforce INCREF() on Python objects
2008-11-25 Stefan Behnelhandle value coercion correctly in dict iteration
2008-11-25 Stefan Behnelsupport 'yield' statement/expression in parser to provi...
2008-11-24 Stefan Behnelcleanup
2008-11-24 Stefan Behnelnew test for import-from with/without parentheses
2008-11-24 Stefan Behnelsupport parentheses around import-from names
2008-11-23 Stefan Behneltest case for inlined function
2008-11-23 Stefan Behnelavoid GCC warning about '/*' in generated C comments
2008-11-23 Stefan Behnelmerge
2008-11-23 Stefan Behnelc function predeclarations need to know about INLINE
2008-11-23 Stefan Behnelfix compiler crash on forward declarations
2008-11-25 DagSverreSeljebotnfix for infinite loop in buffer code
2008-11-23 Stefan Behnelfix compiler crash on forward declarations
2008-11-23 Lisandro Dalcinadd custom distutils build_ext command ignoring C compi...
2008-11-22 Robert Bradshawfix typo
2008-11-22 Robert BradshawPut cimported includes first.
2008-11-21 Stefan Behnelfix sequence assignments for value coercion to non...
2008-11-21 Stefan Behnelfix for assignments to sequences
2008-11-19 Stefan BehnelPyDict_Copy() can be used for dict.copy()
2008-11-19 Stefan Behnelfixed wrong signature of PyList_Insert()
2008-11-19 Stefan Behnelenable iter-dict optimisation also for a plain 'for...
2008-11-19 Stefan Behnelmerge
2008-11-19 Stefan Behnelgenerate expected code when for-looping over type-decla...
2008-11-19 Stefan Behnelextended for-loop test case
2008-11-19 Stefan Behneldon't use PyTuple_SetItem(): it differs from 'tup[i...
2008-11-19 Robert BradshawMerge 0.10.1 release.
2008-11-19 Robert Bradshaw0.10.1 - bump version, metadata
2008-11-19 Robert BradshawAdded tag cython-0.10.1 for changeset ef9d2c680684
2008-11-18 Stefan Behneluse PyDict_DelItem() for 'del d[x]'
2008-11-18 Stefan Behneluse type specific Py*_SetItem() functions
2008-11-18 Stefan Behnelcleanup
2008-11-18 Stefan Behnelavoid calling TupleNode.allocate_temps() in iter-dict...
2008-11-17 Stefan Behnelfixed ref-count bug in try-except handling 0.10.1
2008-11-17 Stefan Behnelfixed ref-count bug in try-except handling
2008-11-16 Stefan Behneltest case for iter-dict transform
2008-11-16 Stefan Behnelintegrate new iter-dict transform
2008-11-16 Stefan Behnelnew transform that converts for-in-dict.iter*() into...
2008-11-16 Stefan Behnelcrash work-around
2008-11-16 Stefan Behnelinheritance fix
2008-11-16 Stefan Behnelcleanup
2008-11-14 Lisandro Dalcinarray size could be expressions with known C compile...
2008-11-14 Stefan Behnelfix Python level 'import as' of packages
2008-11-14 Stefan Behnelmerge
2008-11-14 Stefan Behneldisable slice assignments to pointers for now
2008-11-14 Stefan Behneloff-by-one fix
2008-11-14 Stefan Behnelcompile time/runtime checks for array slice assignments
2008-11-14 Stefan Behnelarray size must be set as int, not numeric string
2008-11-14 Dag Sverre... merge
2008-11-13 Stefan Behneltest case for array slice assignments
2008-11-13 Stefan Behnelmore fixme's
2008-11-13 Stefan Behnelallow slice assignments for arrays
2008-11-13 Stefan Behnelextended test case
2008-11-13 Stefan Behneltest cases for 'import as'
2008-11-12 Stefan Behnelcompile Visitor.py, reduces lxml compile time by anothe...
2008-11-12 Stefan Behnelfixed bug in Visitor cache, reduces lxml compile time...
2008-11-12 Robert Bradshawmerge
2008-11-12 Robert BradshawMake raising a KeyError not the default for parsing...
2008-11-12 Robert BradshawMore Parsing.py optimizations
2008-11-12 Robert BradshawCompile Cython.Compiler.Parsing.py, auto_cpdef, fix...
2008-11-11 Stefan Behnelmerge
2008-11-11 Stefan Behnelextended test case
2008-11-11 Stefan Behnelpartial implementation of the "exec" statement
2008-11-11 Stefan Behnelimport fixes for Py2.6
2008-11-11 Robert Bradshawmore bootstrap tweaks
2008-11-11 Robert Bradshawmore compiler cythonization
2008-11-11 Robert BradshawFurther bootstrapping of Scanner
2008-11-11 Robert BradshawAdd __file__, __doc__, __name__, __builtins__ to module...
2008-11-10 Robert BradshawCleanup manifest, auxiliary files.
2008-11-10 Dag Sverre... cleanup
2008-11-10 Dag Sverre... Fix segfault problem with recent numpy.pxd/Python 2...
2008-11-10 Dag Sverre... Include complex float structs in numpy.pxd
2008-11-10 Dag Sverre... Minor optimization of previous change.
2008-11-10 David Cournapeaunumpy.pxd support also when Py_ssize_t and npy_intp...
2008-11-09 Robert Bradshawmerge
2008-11-09 Robert BradshawVersion 0.10 released
2008-11-09 Robert BradshawAdded tag 0.10 for changeset a89b05b78236
2008-11-07 Lisandro Dalcinadd explicit cast to avoid GCC warnings with -Wwrite...
2008-11-07 Stefan Behnelconservative fix for empty switch statements
2008-11-07 Stefan Behnelconservative fix for empty switch statements
2008-11-06 Lisandro DalcinFor Py>=2.5, make GCC happy when passing -Wwrite-strings
2008-11-04 Robert Bradshawremove line comments from annotated html 0.10
2008-11-04 Robert BradshawFix trac #107.
2008-11-04 Robert Bradshawmerge
2008-11-04 Robert BradshawFix compiler crash on error.
2008-11-01 Stefan Behneluse argument name directly instead of indirect pointer
2008-11-01 Stefan Behnelavoid generating inlined keyword unpacking code when...
2008-11-01 Stefan BehnelOptimisation for kw args parsing: static parsing only...
2008-11-01 Stefan Behnelfix Cython code context comments in C code when annotat...
2008-10-31 Stefan Behnelerror test case for boolean cooercion of incompatible...
next