summaryrefslogtreecommitdiff
Commit message (Expand)AuthorAgeFilesLines
* Prepare release of 0.29.8.0.29.8Stefan Behnel2019-05-272-2/+5
* Merge pull request #2971 from Dormouse759/0.29.x_pycode_new_compile_onlyStefan Behnel2019-05-272-9/+13
|\
| * Fix compile error with 3.8Marcel Plch2019-05-262-9/+13
|/
* Disable a (not-really-for-Cython) test that fails due to Unicode fixes in Py3.8.Stefan Behnel2019-05-092-3/+5
* Update test_unicode.py from Py3.8.Stefan Behnel2019-05-091-21/+25
* Fix passing Python classes through "cython.inline()".Stefan Behnel2019-04-303-1/+10
* Update changelog.Stefan Behnel2019-04-301-1/+5
* Exclude tuples with starred expressions from the %-formatting optimisation.Stefan Behnel2019-04-302-0/+22
* Update changelog.Stefan Behnel2019-04-281-0/+13
* Extend test.Stefan Behnel2019-04-281-2/+23
* GH-2919: Prevent tuple constants that compare equal but have different item t...Stefan Behnel2019-04-282-2/+22
* Fix mypy usage problem in test runner: should pass list, was passing tuple.Stefan Behnel2019-04-241-2/+2
* Disable mypy usage in tests for Py3.4 since it's no longer supported.Stefan Behnel2019-04-241-1/+1
* Fix a compiler crash when non-ASCII characters appear in unprefixed strings i...Stefan Behnel2019-04-233-2/+106
* Prepare release of 0.29.7.0.29.7Stefan Behnel2019-04-142-2/+9
* Work around Py2 unicode print issue in tests.Stefan Behnel2019-03-312-4/+14
* Fix C89 "declarations after code" issue.Stefan Behnel2019-03-221-1/+2
* Remove unused fields in ControlBlock class (were used before switching to bit...Stefan Behnel2019-03-181-3/+1
* At module cleanup time, clear the module dict before the global references th...Stefan Behnel2019-03-041-1/+1
* Keep owned references to builtins module, "cython_runtime" module and preimpo...Stefan Behnel2019-03-041-8/+8
* Add missing return type annotation to generators and coroutines.Stefan Behnel2019-03-044-1/+24
* Issue a warning when casting a GIL-requiring function into a nogil function (...Stefan Behnel2019-03-033-6/+24
* Fix nogil status for error handling in line tracing code of with/try-finally ...Stefan Behnel2019-03-031-1/+3
* Refactor parsing function in code coverage plugin to split the actual parsing...Stefan Behnel2019-03-021-49/+56
* Exclude non-executable lines from coverage analysis (anything that does not g...Stefan Behnel2019-03-021-2/+14
* Merge pull request #2871 from cython/gh1461_cover_sig_lineStefan Behnel2019-03-013-21/+32
|\
| * GH-1461: Include the signature line of cdef functions in the import-time line...gh1461_cover_sig_lineStefan Behnel2019-03-013-21/+32
|/
* Prepare release of 0.29.6.0.29.6Stefan Behnel2019-02-272-2/+2
* Fix travis build in Py3.4 by pinning a version dependency.Stefan Behnel2019-02-201-2/+2
* Revert "Try using the embedded libzmq in pyzmq instead of a system wide insta...Stefan Behnel2019-02-192-3/+3
* Update changelog.Stefan Behnel2019-02-191-0/+4
* Try using the embedded libzmq in pyzmq instead of a system wide installation.Stefan Behnel2019-02-192-3/+3
* Fix transitive dependency version of pyzmq to work around test problems on tr...Stefan Behnel2019-02-191-0/+2
* When detecting an invalid system configuration for overflow checks, at least ...Stefan Behnel2019-02-191-2/+10
* Recognize that the default encoding is always utf-8 in Python 3.Robert Bradshaw2019-02-192-1/+154
* Avoid checking "signed" type attribute for non-numeric types (which don't hav...Stefan Behnel2019-02-191-3/+5
* Fix left-over Pyrex reference.Stefan Behnel2019-02-151-1/+1
* Update changelog.Stefan Behnel2019-02-151-0/+6
* Prevent crash when accessing the "__kwdefaults__" special attribute of fused ...Stefan Behnel2019-02-152-1/+33
* Fix buffer format parsing code to allow the digit '9' in numbers.Stefan Behnel2019-02-152-2/+15
* Update changelog.Stefan Behnel2019-02-131-0/+10
* Conform to Cython's GCC version check conventionMichael Anselmi2019-02-131-4/+1
* Avoid GCC diagnostic pragma if GCC < 4.6Michael Anselmi2019-02-131-2/+9
* Bring the doc string C constant back all for special methods, except for the ...Stefan Behnel2019-02-091-1/+1
* Bring the doc string C constant back for special methods, except for the buff...Stefan Behnel2019-02-091-1/+1
* Add safety cast in queue tutorial code that avoids casting a potentially non-...Stefan Behnel2019-02-091-61/+61
* Avoid signed vs. unsigned comparison warning for loop variables in memoryview...Stefan Behnel2019-02-091-52/+52
* Silence an "unused" C compiler warning when we cannot easily decide whether t...Stefan Behnel2019-02-091-1/+1
* Add safety parentheses in helper macro, also to avoid a compiler warning abou...Stefan Behnel2019-02-091-3/+3
* Avoid the C compiler warning about an unused docstring constant for "__getbuf...Stefan Behnel2019-02-091-2/+2