- 23 Sep, 2017 2 commits
-
-
Stefan Behnel authored
-
Stefan Behnel authored
-
- 22 Sep, 2017 20 commits
-
-
Stefan Behnel authored
-
Stefan Behnel authored
Fix abs(long long) test in 32bit MSVC: need to calculate max value in Python as Cython assumes result to be Py_ssize_t (due to sizeof()), which is < sizeof(long long).
-
Stefan Behnel authored
-
Stefan Behnel authored
-
Stefan Behnel authored
-
Stefan Behnel authored
-
Stefan Behnel authored
-
Stefan Behnel authored
-
Stefan Behnel authored
-
Stefan Behnel authored
Configure another Cython option in test runner from *inside* the shard runner to support non-forking setups (i.e. Windows).
-
Stefan Behnel authored
Configure Cython options in test runner from *inside* the shard runner to support non-forking setups (i.e. Windows).
-
Stefan Behnel authored
-
Stefan Behnel authored
-
Stefan Behnel authored
-
Stefan Behnel authored
-
Stefan Behnel authored
-
Stefan Behnel authored
-
Stefan Behnel authored
-
Stefan Behnel authored
-
Stefan Behnel authored
-
- 21 Sep, 2017 13 commits
-
-
Stefan Behnel authored
-
scoder authored
More pypy3 fixes
-
Ronan Lamy authored
-
Ronan Lamy authored
-
Ronan Lamy authored
-
Ronan Lamy authored
Fixes a segfault on pypy3 due to the coroutine type missing tp_iternext in 5.8.
-
Stefan Behnel authored
-
Stefan Behnel authored
Last change accidentally disallowed mismatching 'nogil' assignments even when compatible. Reallow them, and clean up the last change a little.
-
Stefan Behnel authored
-
Stefan Behnel authored
-
Stefan Behnel authored
Allow assignment of C function pointers with compatible exception declarations (not only exact matches).
-
Stefan Behnel authored
-
Stefan Behnel authored
Allow mismatches of broader exception declarations in .pxd signatures as long the implemented signature is covered.
-
- 20 Sep, 2017 5 commits
-
-
Robert Bradshaw authored
Pass pyx_library kwargs to py_library
-
Stefan Behnel authored
-
Stefan Behnel authored
Previously, using "is_f_contig" and "is_c_contig" together would leave one of them undeclared. Closes #1872.
-
Stefan Behnel authored
-
Stefan Behnel authored
Make vtable order of extension types with fused methods only dependant on the original declaration order (e.g. in the .pxd file). Previously, fused methods were specialised and expanded on first use, which lead to an arbitrary order in the vtable. Also fixes compile failures when inheriting from base types with fused cdef methods. Fixes #1873.
-