support setting language level (2 or 3) for source code - currently configures string...
[cython.git] / Cython / Compiler /
2010-05-31 Stefan Behnelsupport setting language level (2 or 3) for source...
2010-05-28 Stefan Behnelre-enable friendly exceptions to make map exception...
2010-05-27 Stefan Behnelremember constant values during new constant node creation
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 Behnelmove 'for from' syntax out of the way in Python file...
2010-05-25 Stefan Behnelfix some error reportings in parser
2010-05-24 Robert BradshawAllow longer int literals on 64-bit machines.
2010-05-17 Stefan Behnelfix indexing for inferred Py_UNICODE 'strings'
2010-05-17 Stefan Behnelmake len(Py_UNICODE) efficient
2010-05-17 Stefan Behneldo not optimise len(str) as it doesn't map to a simple...
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 Behnelinfer type of loop variable when for-in-looping over...
2010-05-13 Stefan Behneltypo
2010-05-13 Stefan Behnelcomment fixes
2010-05-13 Stefan Behnelfix comment
2010-05-12 Stefan Behnelerror handling in __test__ dict creation code
2010-05-12 Stefan Behnelfix star import utility code in Py3
2010-05-12 Stefan Behnelprevent redundant coercion from Py_UNICODE to a unicode...
2010-05-12 Stefan Behnelfix copy+paste bug
2010-05-12 Stefan Behnelfix test py_unicode_type, remove code from Optimize...
2010-05-12 Stefan Behnelprevent Py_UNICODE from becoming a plain integer during...
2010-05-12 Stefan Behnelimplement ticket #535: fast index access into unicode...
2010-05-11 Stefan Behnelfix ticket #525: let float values pass through the...
2010-05-11 Robert BradshawString literal identifiers ending in newlines.
2010-05-10 Lisandro Dalcinbackout 63a493cdeee2 (usage of & is intentional)
2010-05-10 Lisandro Dalcinchange & to && in many places
2010-05-09 Stefan Behnelfix ticket #533: 'continue' in the 'else' block of...
2010-05-08 Lisandro Dalcinfix except+ for cppclass methods (with Denys Duchier)
2010-05-05 Stefan Behnelfix last commit
2010-05-05 Stefan Behnelfix ticket #145 also for CondExprNode, make "bint ...
2010-05-04 Stefan Behnelcollapse BoolBinopNode during constant folding, small...
2010-05-04 Stefan Behnelfix ticket #145: the result of 'True or 5' must not...
2010-05-04 Stefan Behnelenable .pop() optimisation also for typed lists
2010-05-03 Stefan Behnelslight speed-up in unicode/bytes indexing
2010-05-02 Stefan Behnelreverted last commit, cast must happen to the value...
2010-05-02 Stefan Behnelcode simplification
2010-05-01 Stefan Behnelfix 'cython.set' and 'cython.frozenset' when set/frozen...
2010-05-01 Stefan Behnelcode cleanup
2010-05-01 Stefan Behnelcode cleanup
2010-05-01 Stefan Behnelavoid GIL error for optimised container bool tests...
2010-05-01 Stefan Behnelfix error on def-nogil functions
2010-04-30 Lisandro Dalcinssize_t in Cython now means Py_ssize_t in C ((ticket...
2010-04-29 Stefan Behnelcode cleanup for if-const dead code removal
2010-04-29 Stefan Behnelcode cleanup for if-const dead code removal: move handl...
2010-04-28 Lisandro Dalcinintroduce CYTHON_UNUSED macro to annotate functions...
2010-04-28 Lisandro DalcinPy3: __cmp__ is gone, __bool__ instead of __nonzero__
2010-04-27 Stefan Behnelmore dead code removal for conditionals
2010-04-27 Stefan Behnelavoid generating code for 'if' conditions that are...
2010-04-27 Stefan Behnelfix constant folding in PrimaryCmpNode/CascadedCmpNode
2010-04-27 Stefan Behnelsupport casting '<bytes>int_val' and coercing integers...
2010-04-26 Stefan Behnelfix bytes indexing
2010-04-26 Stefan Behnelkeep 'constant_result' set when injecting new constant...
2010-04-25 Stefan Behnelmerge
2010-04-25 Stefan Behneloptimised char/Py_UNICODE indexing of bytes/unicode...
2010-04-25 Stefan Behnelwhitespace
2010-04-25 Stefan Behnelcoerce Py_UNICODE to and from single character unicode...
2010-04-25 Robert Bradshawtiny cleanup
2010-04-23 Lisandro Dalcinsupport arbitrarily sized typedef integral types
2010-04-23 Stefan Behnelreverted last commit - only a problem for closure scope
2010-04-23 Stefan Behnelsort ext type fields in GC functions to get a more...
2010-04-22 Lisandro DalcinPyrexTypes: reworked ranking of numeric types and cleanup
2010-04-22 Lisandro Dalcincustom from_py converter for Py_UNICODE
2010-04-22 Stefan Behnelcleanup
2010-04-22 Stefan Behnelcleanup
2010-04-22 Stefan Behnelgenerate switch-case characters in sorted order for...
2010-04-22 Stefan Behnelsimplify ExprNode.as_none_safe_node() with a sensible...
2010-04-22 Lisandro DalcinLet ssize_t be a native type (ticket #399)
2010-04-21 Lisandro DalcinPyrexTypes: simplify CIntType, add CReturnCodeType
2010-04-21 Stefan Behnelgeneric way to wrap an ExprNode in a NoneCheckNode
2010-04-21 Stefan Behnelset default debug flag to write out exceptions
2010-04-20 Stefan Behnelimplement 'char_val in bytes_string' and 'pyunicode_val...
2010-04-20 Stefan Behnelsafety fix: why should the return type always be exactl...
2010-04-20 Stefan Behneltypo
2010-04-19 Stefan Behnelnative support for Py_UNICODE, coercion between 1-chara...
2010-04-18 Stefan Behnelsignedness fix for unicode-for-loop iteration
2010-04-18 Stefan Behnelimplement "for int_var in bytes_string" and "for int_va...
2010-04-16 Lisandro Dalcinsupport for all C scalar types in pure mode
2010-04-16 Lisandro Dalcinremove unused sign_and_rank_to_type mapping
2010-04-16 Lisandro Dalcindefine PyBytes_XXX for Py<2.6 and use these through...
2010-04-16 Stefan Behnelspecial case '=None' default arguments in ext arg type...
2010-04-16 Stefan Behnelfix PyBytes_GET_SIZE usage
2010-04-15 Stefan Behnelmerge
2010-04-15 Stefan Behnelfix calling bool() and float() without arguments
2010-04-15 Stefan Behnelsupport 'frozenset' in cython namespace (just like...
2010-04-15 Lisandro Dalcinreworked type promotion rules, nearly identical to...
2010-04-15 Stefan Behnelmore type check removal during optimisations
2010-04-15 Stefan Behnelfix coercion optimisation
2010-04-15 Stefan Behnelcleanup
2010-04-15 Stefan Behneltransform bool(x) into a type coercion
2010-04-15 Stefan Behnelrefactoring: provide explicit method to retrieve the...
2010-04-15 Stefan Behnelfix stupid crash
2010-04-15 Stefan Behnelfaster way to test certain builtin types for truth...
2010-04-15 Stefan Behnelprint correct column in error message
2010-04-15 Stefan Behnelmerge
next