summaryrefslogtreecommitdiff
Commit message (Expand)AuthorAgeFilesLines
* Prepare release of 0.29.5.0.29.5Stefan Behnel2019-02-082-2/+5
* Exclude jupyter from PyPy tests since it has too many dependencies that may n...Stefan Behnel2019-02-082-1/+1
* Move dict version checking code into a separate utility code section since it...Stefan Behnel2019-02-084-47/+60
* Make the cpdef override check work with Python subclasses of extension types ...Stefan Behnel2019-02-085-28/+107
* Do not install test dependencies on CPython dev versions in travis as they ar...Stefan Behnel2019-02-081-2/+2
* Disable pythran testing in Py3.8 for now since it fails.Stefan Behnel2019-02-081-1/+1
* Update changelog.Stefan Behnel2019-02-031-1/+4
* Fix support for C++ enum classesOrivej Desh2019-02-031-1/+8
* Update changelog.Stefan Behnel2019-02-021-0/+3
* Fix msvc compiler warning C4244Christoph Gohlke2019-02-021-2/+2
* Remove superfluous codecgohlke2019-02-021-5/+1
* Simplify logical expressioncgohlke2019-02-021-1/+1
* Fix casting ssize_t to unsignedcgohlke2019-02-021-1/+1
* Fix warning about invalid escape sequence in regex.Stefan Behnel2019-02-021-1/+1
* Update changelog.Stefan Behnel2019-02-021-0/+7
* Clean up insertion points after use in prange code since they conflict with t...Stefan Behnel2019-02-022-5/+24
* Fix exception messages for float division by zero, as well as their tests (wh...0.29.4Stefan Behnel2019-02-013-24/+24
* Fix call signature of C helper function for integer comparisons.Stefan Behnel2019-02-011-3/+5
* Prepare release of Cython 0.29.4.Stefan Behnel2019-02-012-1/+11
* Fix various cases where optimised division of constants did not check for div...Stefan Behnel2019-02-016-9/+285
* Fix test: C compiler warns about uninitialised variables.Stefan Behnel2019-01-191-1/+1
* Try to make the test result passing from forked tests more robust.Stefan Behnel2019-01-191-16/+15
* Fix a test on big-endian architectures.Stefan Behnel2019-01-191-1/+1
* Prepare release of 0.29.3.0.29.3Stefan Behnel2019-01-192-2/+2
* Update changelog.Stefan Behnel2019-01-191-1/+7
* Clarify types in atan2() call for usage in MSVC++.Stefan Behnel2019-01-191-1/+1
* add case for tracer-reporter mismatchwenjun.swj2019-01-191-0/+71
* Fix inconsistency between trace files and report fileswjsi2019-01-191-2/+4
* Fix incompatibility with C89true-pasky2019-01-191-1/+1
* Fix crash in lvalue_refs test.Elliott Sales de Andrade2019-01-051-1/+1
* Update changelog.Stefan Behnel2019-01-021-0/+16
* Reformat code, add comment.Stefan Behnel2019-01-021-3/+5
* Fix source of non-deterministic cython output for try/finally statements.Martijn van Steenbergen2019-01-021-3/+3
* DOC: Fixed name of .so file in userguide's numpy_tutorial.Paul van Mulbregt2019-01-021-2/+2
* fix the comments to have a c89 compliant generated codegastineau2019-01-021-2/+2
* TypeConversion: Fix pointer qualifier compiler warningMichael Buesch2019-01-021-2/+2
* Prepare release of 0.29.2.0.29.2Stefan Behnel2018-12-142-2/+2
* Use correct error label when creating merged unicode string literals.Stefan Behnel2018-12-141-1/+1
* Prevent dynamically multiplied tuple constants from being deduplicated. Only ...Stefan Behnel2018-12-143-5/+65
* Update changelog.Stefan Behnel2018-12-121-0/+19
* Prevent repeated initialisation of constants that overwrite the previously cr...Stefan Behnel2018-12-122-16/+28
* Fix sigismember() declarationJeroen Demeyer2018-12-121-1/+1
* Don't try to use imap with python3Charles Pigott2018-12-111-1/+4
* Fix signature of `Scope.add_include_file()` to match the one added for verbat...Stefan Behnel2018-11-301-2/+2
* Add type cast to resolve C4804 (unsafe bool usage) warning in MSVC.Stefan Behnel2018-11-241-1/+1
* Prepare release of 0.29.1.0.29.1Stefan Behnel2018-11-242-2/+2
* Do not set "__path__" attribute on non-package modules.Stefan Behnel2018-11-241-6/+8
* Update changelog.Stefan Behnel2018-11-241-0/+6
* Fill shape when PyBUF_ND is in the flagsjakirkham2018-11-241-1/+1
* Fix C++ assignments to references returned by operator[].Stefan Behnel2018-11-243-45/+170