use 'hg identify' to generate .hgrev file
[cython.git] / tests /
2010-05-12 Stefan Behnelmerged in latest cython-devel
2010-05-12 Stefan Behnelre-enabled test
2010-05-12 Stefan Behnelmerged in latest cython-devel
2010-05-12 Stefan Behneldisable a pyregr test that currently crashes
2010-05-12 Stefan Behnelmerged in latest cython-devel
2010-05-12 Stefan Behnelprevent redundant coercion from Py_UNICODE to a unicode...
2010-05-12 Stefan Behnelmerged in latest cython-devel
2010-05-12 Stefan Behnelfix doctest in Py3
2010-05-12 Stefan Behnelmerged in latest cython-devel
2010-05-12 Stefan Behnelfix test py_unicode_type, remove code from Optimize...
2010-05-12 Stefan Behnelmerged in latest cython-devel
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-09 Stefan Behnelextended test case
2010-05-09 Stefan Behnelimplement any(genexpr) and all(genexpr) as special...
2010-05-09 Stefan Behnelmerged in latest cython-devel
2010-05-09 Stefan Behnelenable working test
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-08 Stefan Behneltest for ticket #533: reference leak in 'continue'...
2010-05-06 Stefan Behneltest for generator expressions (disabled)
2010-05-06 Stefan Behnelextended test case
2010-05-05 Stefan Behnelnew test for pointer operations
2010-05-05 Stefan Behnelmerged in latest cython-devel
2010-05-05 Lisandro Dalcinadd some POSIX pxd's and a few tests
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 Behnelseveral test cases for ticket 145
2010-05-04 Stefan Behnelextended test case based on ticket #145
2010-05-04 Stefan Behnelnew test for ticket #354
2010-05-04 Stefan Behnelenable .pop() optimisation also for typed lists
2010-05-03 dalcinlMSVC: quick fix for int complex test failing in C+...
2010-05-03 dalcinlDisable test for libc.stdint (missing stdint.h in MSVC)
2010-05-02 Lisandro Dalcinfix ssize_t tescase (ticket #399)
2010-05-01 Stefan Behnelnew test case for bug found in cython-devel that is...
2010-05-01 Stefan Behnelmerged in latest cython-devel
2010-05-01 Stefan Behnelfix 'cython.set' and 'cython.frozenset' when set/frozen...
2010-05-01 Stefan Behnelavoid GIL error for optimised container bool tests...
2010-05-01 Stefan Behnelfix error on def-nogil functions
2010-05-01 Stefan Behnelremoved dead copy of test file
2010-04-29 Stefan Behneltest fix after extending dead code removal
2010-04-29 Stefan Behnelextended test case
2010-04-29 Stefan Behnelextended test case
2010-04-29 Stefan Behnelextended test case
2010-04-29 Stefan Behnelcode cleanup for if-const dead code removal: move handl...
2010-04-29 Stefan Behnelnew test case
2010-04-28 dalcinlsizeof(long double)==sizeof(double) in MSVC conficts...
2010-04-28 Lisandro Dalcinfix testcase
2010-04-28 Lisandro Dalcinintroduce CYTHON_UNUSED macro to annotate functions...
2010-04-28 Stefan Behnelmerged in latest cython-devel
2010-04-28 Lisandro DalcinPy3: __cmp__ is gone, __bool__ instead of __nonzero__
2010-04-28 Stefan Behnelextended test case
2010-04-27 Stefan Behnelextended test
2010-04-27 Stefan Behnelmore dead code removal for conditionals
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 Behnelextended test case
2010-04-26 Stefan BehnelPy3 test fix
2010-04-25 Stefan Behnelmerge
2010-04-25 Stefan Behneloptimised char/Py_UNICODE indexing of bytes/unicode...
2010-04-25 Stefan Behnelcoerce Py_UNICODE to and from single character unicode...
2010-04-24 Stefan Behnelmerged in latest cython-devel
2010-04-24 Stefan Behnelfix several ref-counting issues with closure variables...
2010-04-23 Lisandro Dalcinsupport arbitrarily sized typedef integral types
2010-04-22 Stefan Behnelmerged in latest cython-devel
2010-04-22 Lisandro Dalcincustom from_py converter for Py_UNICODE
2010-04-22 Stefan Behnelextended test case
2010-04-22 Stefan Behnelextended test cases
2010-04-22 Stefan Behnelextended test case
2010-04-22 Stefan Behnelfix gcc warning in test
2010-04-22 Lisandro DalcinLet ssize_t be a native type (ticket #399)
2010-04-21 Stefan Behnelextended test case for unicode characters in switch...
2010-04-21 Stefan Behneltest fix
2010-04-20 Stefan Behnelimplement 'char_val in bytes_string' and 'pyunicode_val...
2010-04-20 Stefan Behnelextended test case
2010-04-19 Stefan BehnelPy2 test fix
2010-04-19 Stefan BehnelPy3 test fix
2010-04-19 Stefan Behnelnative support for Py_UNICODE, coercion between 1-chara...
2010-04-18 Stefan Behnelimplement "for int_var in bytes_string" and "for int_va...
2010-04-18 Stefan Behnelremoved dead code from test
2010-04-18 Stefan Behnelcleanup
2010-04-18 Stefan Behnelre-enable working test in Py2.4
2010-04-16 Lisandro Dalcinsupport for all C scalar types in pure mode
2010-04-16 Stefan Behnelspecial case '=None' default arguments in ext arg type...
2010-04-16 Stefan BehnelPy2.4 test fixes
2010-04-15 Stefan Behnelmerge
2010-04-15 Stefan Behnelfix calling bool() and float() without arguments
2010-04-15 Lisandro Dalcinreworked type promotion rules, nearly identical to...
2010-04-15 Stefan Behneltransform bool(x) into a type coercion
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
2010-04-15 Stefan Behnelsupport 'not None' and 'or None' on any Python argument
2010-04-15 Lisandro Dalcindo not emit C code for unused special method docstrings
2010-04-14 Stefan Behnelenable 'not/or None' annotation for builtin types
2010-04-14 Stefan Behnelmerge
2010-04-14 Lisandro Dalcinfixes and tests for enum in bool contexts and func...
2010-04-14 Lisandro Dalcinadd test for long long complex type
next