typo
[cython.git] / Cython /
2010-07-20 Stefan Behneltypo
2010-07-20 Stefan Behnelgenerate the expected (fast) code for isinstance()...
2010-07-20 Stefan Behnelfix 'set' type checks (prevent match with frozenset)
2010-07-20 Stefan Behnelprovide 'complex' type as Builtin.complex_type
2010-07-20 Stefan Behnelfix return types of PyBytes_* C-API functions
2010-07-20 Stefan Behnelfix code annotation of 'finally' block
2010-07-17 Stefan Behnelapplied fix by haoyu for bug #543
2010-07-17 Stefan Behnelmerged in latest cython-devel
2010-07-17 Stefan Behnelbetter error message for tuple unpacking, following...
2010-07-17 Stefan Behnelreminder for code fix when general genexprs are supported
2010-07-17 Stefan Behnelcode cleanup and fixes for genexprs
2010-07-17 Craig Citromerge
2010-07-17 Craig CitroFix bug in type analysis for ComprehensionNodes.
2010-07-17 Stefan Behnelmerge
2010-07-17 Stefan Behnelfix tree structure for generator expressions
2010-07-17 Stefan Behnelmerged in latest cython-devel
2010-07-16 Robert BradshawRe-disable debug_trace_code_generation
2010-07-16 Robert BradshawDisable closures inside cdef functions for now.
2010-07-16 Stefan Behnelreimplement min()/max() optimisation before type analysis
2010-07-16 Stefan Behnelrewrite of min()/max() optimisation, now correctly...
2010-07-15 Stefan Behnelmerge
2010-07-14 Stefan Behnelmerged in latest cython-devel
2010-07-14 Stefan Behneldeploy unicode.encode() optimisation also for 'bytes...
2010-07-13 Stefan Behneldeclare PyThread_acquire_lock and PyThread_release_lock...
2010-07-13 Stefan Behnelfix return types of tuple C-API calls
2010-07-11 Stefan Behnelinclude standard cimport for pythread.pxd in cpython...
2010-07-11 Stefan Behneladded missing standard cimport for pythread.h
2010-07-09 Craig CitroFix imports in Cython/Include/numpy.pxd.
2010-07-07 Craig CitroMake str unsafe for type inference. See trac #553.
2010-07-07 Craig CitroCorrectly resolve imports of modules already cimported.
2010-07-07 Craig CitroFix type inference on unary operators.
2010-07-07 Craig CitroVarious cosmetic touch-ups.
2010-07-07 Craig CitroFix an error with coercing C ints in boolean context.
2010-07-07 Craig CitroFix a bug with automatic conversion of public attribute...
2010-07-06 Stefan Behnelminor cleanup
2010-07-06 Stefan Behneldo not let set/dict comprehensions leak in Py2, only...
2010-07-03 Stefan Behnelfix order of surrogate pair in wide unicode strings
2010-07-03 Stefan Behnelfix "Py_UNICODE in ..." against wide unicode literals...
2010-07-03 Stefan Behnelfix parsing of wide unicode escapes on narrow Unicode...
2010-07-02 Lisandro Dalcinuse PyCapsule for Py 2.7+ (but not in Py 3.0)
2010-06-30 Stefan Behnelalways use decoded filenames in FileSourceDescriptor
2010-06-25 Stefan Behnelmerged in latest cython-devel
2010-06-25 Stefan Behnelfix version - if anything, it's certainly no longer...
2010-06-15 Stefan Behnelmerged in latest cython-devel
2010-06-15 Stefan Behnelfix bug #544: handle side-effects in flattened in-list...
2010-06-15 Stefan Behnelfix node traversal in yield expressions
2010-06-11 Lisandro Dalcinmove legacy pxd files to Cython/Includes/Deprecated
2010-06-09 Chuck BlakeFix Py_ssize_t/Py_ssize_t* issues in buffer API signatu...
2010-06-10 Chuck BlakeAdd control of --line-directives to Distutils build_ext
2010-06-07 Robert BradshawAnother large integer literal fix (indexing).
2010-06-07 Robert BradshawFix large integer literal inference.
2010-06-02 Stefan Behnelreverted temp name changes - wrong 'fix'
2010-06-02 Stefan Behnelfix another temp var name encoding problem - seems...
2010-06-01 Stefan Behnelmerged in latest cython-devel
2010-06-01 Stefan Behnelfix stupid typo
2010-06-01 Stefan Behneltemp var names in the TemplateTransform may become...
2010-05-31 Stefan Behnelmerged in latest cython-devel
2010-05-31 Stefan Behnelcompiler cmdline switches -2 and -3
2010-05-31 Stefan Behnelsupport setting language level (2 or 3) for source...
2010-05-30 Stefan Behneldisable tuple(genexpr) as it has a non-obvious negative...
2010-05-28 Stefan Behnelre-enable friendly exceptions to make map exception...
2010-05-28 Stefan Behnelcleanup
2010-05-27 Stefan Behnelcleanup
2010-05-27 Stefan Behnelremember constant values during new constant node creation
2010-05-27 Stefan Behnelmerged in latest cython-devel
2010-05-27 Stefan Behnelimplement tuple(genexp) as tuple(list(genexp))
2010-05-27 Stefan Behnelclean up comprehensions to bring them closer to generat...
2010-05-27 Stefan Behneldrop sum(genexpr) into plain C code when the result...
2010-05-27 Stefan Behneldocstrings
2010-05-27 Robert BradshawAnother IntNode fix.
2010-05-27 Robert BradshawFix types of marked integer literals.
2010-05-27 Robert BradshawMore large literal as double fixes.
2010-05-27 Robert BradshawFix large integer literals used in C double context.
2010-05-26 Stefan Behnelimplement min(a,b,...) and max(a,b,...) in unrolled...
2010-05-26 Stefan Behnelmerged in latest cython-devel
2010-05-26 Stefan Behnelimplement sum(genexp) as inlined genexp loop
2010-05-26 Stefan Behnelmove 'for from' syntax out of the way in Python file...
2010-05-25 Stefan Behnelfix some error reportings in parser
2010-05-25 Stefan Behnelbetter error message
2010-05-25 Stefan Behnelsupport genexp loop variables that override builtin...
2010-05-25 Stefan Behnellet generator expressions inherit type declarations...
2010-05-25 Stefan Behnelrevert comprehensions to their previous (var-leaking...
2010-05-24 Robert BradshawAllow longer int literals on 64-bit machines.
2010-05-24 Stefan Behnelfix type inference and code generation for generator...
2010-05-23 Stefan Behnelfix scoping rules for comprehensions and inlined genera...
2010-05-18 Stefan Behnelmerged in latest cython-devel
2010-05-17 Stefan Behnelfix indexing for inferred Py_UNICODE 'strings'
2010-05-17 Stefan Behnelmake len(Py_UNICODE) efficient
2010-05-17 Stefan Behnelmerge
2010-05-17 Stefan Behneldo not optimise len(str) as it doesn't map to a simple...
2010-05-16 Stefan Behnelmerged in latest cython-devel
2010-05-16 Stefan Behnelmerge
2010-05-16 Stefan Behneloptimise predicates and methods for single unicode...
2010-05-15 Robert Bradshawmerge
2010-05-15 Stefan Behnelinfer plain object for bytes_string[i] and str/unicode...
2010-05-14 Stefan Behnelmerged in latest cython-devel
2010-05-14 Stefan Behnelinfer type of loop variable when for-in-looping over...
2010-05-13 Stefan Behneltypo
2010-05-13 Stefan Behnelcleanup
2010-05-13 Stefan Behnelcomment fixes
next