support non-trivial switch() values in SwitchStatNode
[cython.git] / Cython /
2010-11-14 Stefan Behnelsupport non-trivial switch() values in SwitchStatNode
2010-11-14 Stefan Behnelparse integer literals differently based on the type...
2010-11-14 Robert Bradshawtiny fix, cleanup
2010-11-14 Robert BradshawInplace analysis fix.
2010-11-14 Robert BradshawFix large integer exception return codes.
2010-11-13 Robert BradshawCreate directive for fast __getattr__.
2010-11-12 Stefan Behnelfix interaction between complex types and IntNode
2010-11-12 Stefan Behnelproperly assign target type to new IntNode on coercion
2010-11-12 Stefan Behnelfix for Python <=2.5
2010-11-12 Stefan Behnelmerge
2010-11-12 Stefan Behnelbetter integer handling in constant folding, including...
2010-11-12 Stefan Behnelmake IntNode smarter about the type of integer it choos...
2010-11-12 Stefan Behnelfix coercion from IntNode to FloatNode, e.g. for hex...
2010-11-12 Stefan Behnelcleanup, support UnaryPlusNode in constant folding
2010-11-12 Stefan Behnelenable constant folding for UnaryMinusNode
2010-11-12 Lisandro DalcinCYTHON_INLINE for __Pyx_GetAttr3
2010-11-12 Stefan Behnelcleanup
2010-11-12 Stefan Behnelfix PostParse transform after changing its superclass
2010-11-12 Stefan Behnellet PostParse transform inherit from ScopeTrackingTrans...
2010-11-12 Stefan Behnelfix more dangling open files in tests
2010-11-12 Stefan Behneloptimise Visitor.ScopeTrackingTransform
2010-11-12 Stefan Behnelinclude RecursiveNodeReplacer in optimised Visitor...
2010-11-12 Stefan Behnelmerge
2010-11-12 Stefan Behnelinclude EnvTransform in optimised Visitor classes
2010-11-12 Stefan Behneldrop redundant code in ExpandInplaceOperators transform
2010-11-12 Robert BradshawFix for non-parse generated BinOp nodes.
2010-11-12 Stefan Behnelmerge
2010-11-12 Robert Bradshawmerge
2010-11-12 Stefan Behnelfix compiler crash in Py3 on negative Py2 octal integer...
2010-11-12 Robert BradshawActualy use PyNumber_Inplace* operations.
2010-11-12 Robert Bradshawcleanup
2010-11-12 Robert BradshawOne more buffer fix.
2010-11-12 Robert BradshawBuffer fix.
2010-11-12 Robert BradshawHandle inplace arithmatic via parse tree transform.
2010-11-12 Stefan Behneltimely close Cython source file when generating C sourc...
2010-11-11 Stefan Behneldeclare purely internal methods of Scanner class as...
2010-11-11 Stefan Behnelcleanup
2010-11-11 Stefan Behnelfix TupleNode typing as tuple_type instead of py_object...
2010-11-11 Stefan Behneltrial fix for bizarre build bug
2010-11-11 Stefan BehnelVisitor cleanup: mark internal (cdef) methods with...
2010-11-11 Stefan Behnelanother tiny bit faster Visitors
2010-11-11 Stefan Behnelanother bit less overhead inside of Visitor classes
2010-11-11 Stefan Behneldeclare purely internal method of Visitor class as...
2010-11-11 Stefan Behnelskip None checks on a node if we know its constant...
2010-11-11 Stefan Behnelreplace literal None check by a NoneCheckNode
2010-11-11 Stefan Behnelcomment
2010-11-11 Stefan Behnelfaster equality check for unicode strings (speeds up...
2010-11-11 Stefan Behnelanother minor scanner speed-up
2010-11-10 Stefan Behnelmore typing in Scanners.pxd for slightly faster scanning
2010-11-09 Stefan Behnelminor code cleanup
2010-11-08 Stefan Behnelerror handling fix in metaclass utility code
2010-11-08 Stefan BehnelPy2.3 fix
2010-11-08 Stefan Behnelclean up metaclass code
2010-11-08 Stefan Behnelbetter function names in parser, declare new functions...
2010-11-05 Vitja MakarovPy3 metaclasses initial support.
2010-11-08 Stefan Behnelsecond try to fix ticket #583: method signatures of...
2010-11-08 Stefan Behnelremoved dead code
2010-11-08 Stefan Behnelreverted last change - generates problematic C code
2010-11-08 Stefan Behneltrial fix for ticket #583: method signatures of overrid...
2010-11-08 Stefan Behnelfix ticket #589: bound methods of optimised builtin...
2010-11-07 Stefan Behnelremoved (hopefully) dead code
2010-11-07 Stefan Behnelreminder comment: need to disable C-API mapping for...
2010-11-07 Stefan Behneloptimise iteration over dict.keys/values/items() in...
2010-11-07 Stefan Behnelmajor refactoring of builtin method/function overrides...
2010-11-07 Stefan Behnelmore builtin method cleanups
2010-11-07 Stefan Behnelfix exception type on None error
2010-11-07 Stefan Behnelsimplify some builtin method optimisations
2010-11-07 Stefan Behnelfix 'self' argument type in generic builtin method...
2010-11-06 Stefan Behnelmoved string.h utility code over to Builtin.py to make...
2010-11-06 Robert BradshawCompile decorator.
2010-11-05 Stefan Behnelimplement builtin next() to make it available in Py2
2010-11-05 Robert Bradshawmerge
2010-11-05 Robert BradshawInline numpy support.
2010-11-05 Robert BradshawMore module caching.
2010-11-05 Robert BradshawString literal parsing in inline mode, hook up to cytho...
2010-11-05 Stefan Behnelslightly more telling error message on generic syntax...
2010-11-05 Robert BradshawFix doctests.
2010-11-05 Robert BradshawMove deps to new build directory.
2010-11-04 Stefan Behnelenable two-value form of builtin pow()
2010-11-03 Stefan Behnelfix ref-leak in Py2 metaclass support
2010-11-03 Stefan Behnelmake sure the cname really is unique when overriding...
2010-11-03 Stefan Behnelmerge getattr() optimisation into builtin function...
2010-11-03 Stefan Behnelcleanup
2010-11-03 Stefan Behnelsimplify iter() optimisation based on signature override
2010-11-03 Stefan Behnelsupport exec(cmd,g) as alternative signature for exec...
2010-11-03 Stefan Behnelsupport overriding builtins with different signatures...
2010-11-02 Vitja Makarov__metaclass__ support
2010-11-03 Stefan Behnelin pure mode: rename 'with nogil' to 'with cython.nogil...
2010-11-03 Stefan Behnelmerge
2010-11-03 Stefan Behneldisable 'with template' syntax in Python files
2010-11-03 Robert Bradshawmerge
2010-11-03 Robert BradshawPy < 2.6 fix.
2010-11-03 Stefan Behnelmove 'official' version number to Cython/__init__.py...
2010-11-03 Stefan Behnelmerge
2010-11-03 Stefan Behnelnew autotestdict.{cdef,all} directives that put cdef...
2010-11-03 Robert BradshawFix __version__ for py3
2010-11-02 Robert BradshawUnsigned PY_LONG_LONG.
2010-11-02 Stefan Behnelfix octal literals as Python constants, convert octal...
2010-11-02 Stefan Behnelprevent 'file' from being recognised as a builtin type...
2010-11-02 Stefan Behnelbuild fix
next