'type inference' for special temp nodes
[cython.git] / Cython /
2009-12-05 Stefan Behnel'type inference' for special temp nodes
2009-12-05 Stefan Behnelinfer types of special args/kwargs parameters
2009-12-05 Stefan Behnelminor refactoring; fix handling first argument in class...
2009-12-05 Stefan Behnelcomment
2009-12-05 Stefan Behnelcomment
2009-12-05 Stefan Behnelfix #463: TypeofNode crashes when typeof() is called...
2009-12-05 Stefan Behnelfix copy+paste error messages
2009-12-05 Lisandro Dalcindiscount one to min pos args for classmethod (complemen...
2009-12-04 Stefan Behneltest case for dotted attribute names, some cleanup
2009-12-04 Stefan Behnelsupport dotted attributes in TreePath
2009-12-04 Stefan Behnelreverted accidental left-over in last commit
2009-12-04 Stefan Behnelsafety fix for ticket 461: prevent imported extension...
2009-12-04 Stefan Behneltype inference for builtin/extension types
2009-12-04 Stefan Behnelfix compiler crashes on unknown functions
2009-12-04 Stefan Behneltype inference for SliceIndexNode
2009-12-04 Stefan Behnelforgotten commit: make sure we only infer types if...
2009-12-04 Stefan Behnel'safe' mode for type inference: only infer types that...
2009-12-04 Stefan Behnelinfer builtin/extension types from type constructors
2009-12-04 Stefan Behnellist of builtin types that are known to always return...
2009-12-03 Stefan Behnelmore explicit method to check if a type can coerce...
2009-12-03 Stefan Behnelemulate original error for attributes on unconvertible...
2009-12-03 Stefan Behnelcleanup
2009-12-03 Stefan Behnelenable Python methods on C types through coercion to...
2009-11-28 Stefan Behnelsupport "c_string.decode(enc)" and "c_string[x:].decode...
2009-11-28 Stefan Behnellet char*->bytes conversion know that it returns bytes
2009-11-28 Stefan Behnelfix recursive use of LetNodeMixin
2009-11-27 Stefan Behnelmerge
2009-11-27 Robert BradshawFix #258, extern builtin conflicts.
2009-11-27 Stefan Behnelfix #454: type of first parameter in classmethods
2009-11-27 Stefan Behneltiny cleanup
2009-11-26 Stefan Behnelmerge
2009-11-26 Stefan Behnelcomment
2009-11-26 Stefan Behnelsupport len(char*) efficiently by calling strlen()...
2009-11-26 Stefan Behnelmake sure we only optimise builtins and no user defined...
2009-11-26 Stefan Behnelmake declared builtin types recognisable as such
2009-11-26 Stefan Behnelrecognise when 'classmethod' gets overridden
2009-11-23 Robert Bradshawmerge
2009-11-23 Robert BradshawBump version number. 0.12
2009-11-22 Robert BradshawFix bug in handling of environment directives.
2009-11-22 Robert Bradshawmerge
2009-11-21 Robert BradshawBetter cmd line error message.
2009-11-17 Robert BradshawBump version.
2009-11-17 Robert BradshawFix for setting real/imaginary parts for MSVC C++.
2009-11-13 Lisandro Dalcinmake CTypedefType.declaration_code() honor dll_linkage
2009-11-13 Robert BradshawBump version number.
2009-11-12 Lisandro Dalcingroup definition of Py2/Py3 bytes/str compatibility... 0.12.rc0
2009-11-11 Robert Bradshawmerge
2009-11-11 Robert BradshawFix for in/not in cascading.
2009-11-11 Lisandro Dalcinimplementation of 'not in' is broken (ticket #455)
2009-11-11 Stefan Behnelcomment
2009-11-11 David CournapeauOptional setuptools-based cython build
2009-11-10 Lisandro Dalcinfix mixed declarations and code in function code generation
2009-11-05 Robert Bradshawremove broken option
2009-11-05 Robert BradshawVersion number.
2009-11-05 Robert BradshawFix bug #252, mangle illegal optional c argument names. 0.12.alpha0
2009-11-05 Robert BradshawFix ticket #446 (non-float complex regression).
2009-11-03 Dag Sverre SeljebotnFix #441
2009-11-03 Robert BradshawOptimized list pop.
2009-11-02 Dag Sverre SeljebotnTemporary fix for #441
2009-11-02 Dag Sverre Seljebotnmerge
2009-11-02 Dag Sverre SeljebotnFix #444 (utility code not pulled in in corner case)
2009-11-01 Stefan Behnelcleanup
2009-11-01 Stefan Behneldisable compile time error in favour of a runtime error...
2009-10-31 Robert Bradshawcomplex number coercion fix
2009-10-31 Robert BradshawFix complex zero division testing.
2009-10-31 Stefan Behnelfix tp_new() function return type
2009-10-31 Stefan Behnelfix C assignment issue for the typed target case
2009-10-31 Stefan Behneladd a None check, except for plain extension type names
2009-10-31 Stefan Behneloptimise MyType.__new__(MyType) into a tp_new() slot...
2009-10-30 Robert Bradshawremove sage-specific and unused incref-local-binop...
2009-10-29 Stefan Behnelrewrite of C array iteration support to iterate directl...
2009-10-29 Stefan Behnelfix #442: non-pyobject for-in-loop targets failed with...
2009-10-29 Stefan Behneloptimise calls to int() and float() for casting purposes
2009-10-29 Robert Bradshawuse plain malloc/free in freezing code
2009-10-29 Robert BradshawWorkaround for T441, enumerate optimization bug.
2009-10-29 Robert BradshawFix to compile sage.
2009-10-28 Dag Sverre SeljebotnFix complex return values
2009-10-28 Dag Sverre Seljebotnmerge
2009-10-28 Robert Bradshawmerge
2009-10-28 Stefan Behneldrop ref-counting on C attribute swaps
2009-10-27 Dag Sverre Seljebotnmerge
2009-10-27 Dag Sverre Seljebotnnumpy.pxd: Add intp_t and uintp_t
2009-10-27 Stefan Behnelefficiently support for-in loops over char* arrays...
2009-10-26 Dag Sverre SeljebotnNicer error message for undeclared[idx]
2009-10-26 Stefan Behneldrop redundant specialisation code from for-in loop...
2009-10-26 Stefan Behnelcleanup, support unbound method calls to bytes.decode()
2009-10-25 Stefan Behnelticket 436: efficiently support char*.decode() through...
2009-10-25 Lisandro Dalcinadd missing slots 'tp_del' (Py>=2.3) and 'tp_version_ta...
2009-10-24 Mark Lodato--embed mode: fix Py3, floating point on FreeBSD
2009-10-24 Stefan Behnelfix identifier decoding check
2009-10-24 Stefan Behnelfix exec in Py2.3
2009-10-24 Stefan Behnelmissing weakref .pxd file, include all python_*.pxd...
2009-10-24 Stefan Behnelremoved dead comment
2009-10-24 Stefan Behnelminor refactoring, use 'notnone=True' in type tests
2009-10-12 Mark Lodatoprevent warnings when compiling with `gcc -Wextra`
2009-10-22 Lisandro DalcinExtension type cast should reject None (ticket #417)
2009-10-16 Mark Lodatonumpy.pxd: add NPY_UINT64 and family
2009-10-16 Mark Lodatonumpy.pxd: fix typo PyArray_ISISCONTIGUOUS
2009-10-23 Stefan Behnelfix cascade order of assignments for complete assignmen...
2009-10-23 Stefan Behnelmore .pxd cleanups
next