cython.git
2009-04-24 Stefan Behnelfix some 'python2.6 -3' warnings
2009-04-17 Stefan Behnelfix test case
2009-04-17 Stefan Behnelmerge
2009-04-17 Stefan Behnelmark bug test for T284 as failing
2009-04-17 Stefan Behneladded test case for T284
2009-04-17 Robert Bradshawmove stuff out of tests/bugs directory
2009-04-17 Robert BradshawUse bugs list instead of bugs directory.
2009-04-16 Robert BradshawVersion 0.11.1
2009-04-16 Robert BradshawAdded tag 0.11.1 for changeset 6454db601984
2009-04-16 Robert BradshawModify test for T158 as warnings, not errors, are raised. 0.11.1
2009-04-16 Robert BradshawMove fixed ticket tests to testing directories.
2009-04-16 Robert BradshawMove T252 back to bugs until it is fixed.
2009-04-15 Dag Sverre... Add warning in situations where command line directive...
2009-04-15 Dag Sverre... Deprecation warning for -X switch
2009-04-15 Robert BradshawRequire GIL for pythonic division, check for division...
2009-04-14 Robert Bradshaw0.11.1 release candidate
2009-04-14 Robert Bradshawcdivision - raise zero division errors
2009-04-14 Lisandro Dalcinfix error when Lexicon source file cannot be open ...
2009-04-14 Stefan Behnelremoved unused import of ComprehensionTransform (which...
2009-04-10 Stefan Behnelfix compile time constants in array size declarations...
2009-04-10 Stefan Behnelremoved unused code and outdated comment
2009-04-10 Stefan Behnelfix compiler crash - but not the underlying problem...
2009-04-10 Robert Bradshaw0.11.1.beta
2009-04-10 Robert BradshawAdded tag 0.11.1.beta for changeset 7bc36a0f8172
2009-04-10 Stefan Behnelfix compiler crash in function cimport code
2009-04-10 Stefan Behnelfix compiler crash on mangled ctypedef names
2009-04-10 Stefan Behnelenabled now working test case
2009-04-10 Stefan Behnelextended test case
2009-04-09 Stefan Behnelrefactored 'starred' status into a separate node to...
2009-04-09 Stefan Behnelfix error test
2009-04-09 Stefan Behnelmerge with latest cython-devel
2009-04-09 Stefan Behnelfix for normal assignments to a non-sequence LHS
2009-04-09 Stefan Behnelfeature complete implementation of PEP 3132
2009-04-09 Stefan Behnelfix some compiler errors
2009-04-08 Stefan Behnelmerge
2009-04-07 Lisandro Dalcinuse a "size_t" integral for casting to "char*" pointer...
2009-04-07 Lisandro Dalcincast result of "sizeof()" to "int" in testcase, silents...
2009-04-07 Stefan Behnelparser support for PEP 3132 (extended iterable unpacking)
2009-04-07 Stefan Behnelfix temp allocation when importing external C functions
2009-04-07 Stefan Behnelre-enable friendly exception traces
2009-04-07 Stefan Behneldeclare standard C functions 'nogil'
2009-04-06 Stefan Behnelmerge
2009-04-06 Stefan Behneldisable some constant folding operations that can break...
2009-04-06 Lisandro Dalcinfix bug in __Pyx_SetItemInt_Fast
2009-04-06 Lisandro Dalcinbetter Py -> C conversion for integral types (ticket... 0.11.1.beta
2009-04-10 Robert Bradshawno need for print in exectest
2009-04-10 Robert Bradshawmerge
2009-04-10 Robert BradshawTicket #270, CEnumDefNode leaks memory during construction
2009-04-08 Lisandro Dalcinfixes for "exec" statement implementation.
2009-04-10 Stefan Behnelsimplify nogil declarations in std*.pxd
2009-04-10 Stefan Behnelmerge
2009-04-09 Robert BradshawAnother for..from fix when target is a python global
2009-04-09 Stefan Behnelmerge
2009-04-09 Robert BradshawTrac #158 (defined after used) a warning for now for...
2009-04-09 Robert BradshawPropagate env directives the correct way (fallout from...
2009-04-09 Robert Bradshawfilter cpp tests based on module name
2009-04-09 Robert BradshawFix 158 to ignore extern redeclarations.
2009-04-06 Lisandro Dalcinuse PY_FORMAT_SIZE_T to format Py_ssize_t values
2009-04-08 Lisandro Dalcinfix bad core generation for ctypedef classes when init...
2009-04-03 Robert BradshawInclude stdexcept in all cases.
2009-04-03 Robert BradshawTest for cpp exception handling
2009-04-03 Robert Bradshaw0.11.1.alpha
2009-04-03 Robert BradshawAdded tag 0.11.1.alpha for changeset 4497f635d5fd
2009-04-03 Robert BradshawTests for #230 0.11.1.alpha
2009-04-03 Robert BradshawFix ticket #230, pxd cdef override for subclass methods
2009-04-03 Robert BradshawTest for ticket #4, from package cimport module, finish...
2009-04-03 Lisandro Dalcinspecial-case __weakref__ when determining C-safe identi...
2009-04-02 Robert BradshawFix ticket #4, from package cimport module
2009-04-02 Robert BradshawAdd c99 keywords to invalid name list
2009-04-02 Robert Bradshawmerge latest cython-devel
2009-03-31 Dag Sverre... Merge of #271 bugfix
2009-03-31 Dag Sverre... Fix #271
2009-03-31 Dag Sverre... Remove old temp system
2009-03-31 Dag Sverre... Move local manual temporaries from env to code
2009-03-31 Dag Sverre... Remove allocate_temps/release_temps phase
2009-03-30 Dag Sverre... All exprnodes over; NewTempExprNode folded into ExprNode
2009-03-30 Dag Sverre... TempNode to new temps (changes its interface was necesarry)
2009-03-29 Stefan BehnelNone check for optimised dict() call
2009-03-29 Stefan BehnelNoneCheckNode to enforce runtime None checks for object...
2009-03-29 Stefan Behnelfix GeneralCallNode
2009-03-29 Stefan Behnelfix for ticket 232: remember result type when calling...
2009-03-29 Stefan Behnelforgotten name change
2009-03-29 Stefan Behneldebritification
2009-03-29 Stefan Behnelmerge
2009-03-29 Stefan Behneloptimise dict(some_dict) into a call to PyDict_Copy()
2009-03-29 Stefan Behnelcleanup and simplification, moved some optimised builti...
2009-03-29 Dag Sverre... CondExprNode over to new temps
2009-03-29 Dag Sverre... merge
2009-03-29 Stefan Behnelcleanup
2009-03-29 Stefan Behnelgeneral optimisation support for calls to builtin types...
2009-03-29 Dag Sverre... IndexNode went smoothly to newtemps
2009-03-29 Dag Sverre... Guard against the class of bugs which #267 was a member of
2009-03-29 Stefan Behnelmake import explicit (would be better to avoid the...
2009-03-29 Dag Sverre... merge
2009-03-29 Dag Sverre... Fix #267
2009-03-29 Dag Sverre... Fixed error in testcase
2009-03-29 Robert BradshawSplit int/float division cases for efficiency, make...
2009-03-29 Robert BradshawTest (and fix) corner case in C division
2009-03-28 Robert Bradshawtest for #183
2009-03-28 Robert BradshawFix for #260, float floor div
next