summaryrefslogtreecommitdiff
path: root/tests
Commit message (Expand)AuthorAgeFilesLines
* pyimport=True should work now on darwin without having to pre-import distutil...Igor Kaplounenko2019-04-111-0/+21
* BUG: prefer sys.path before Cython/Include when searching for pxd filesmattip2019-03-311-1/+14
* Extend cpp_enums test into a runnable test.Stefan Behnel2019-03-281-1/+16
* Replace some external .h files in tests with inline C code in the test file t...Stefan Behnel2019-03-284-19/+25
* Avoid generating a tp_new() function for extension types that do not need the...Stefan Behnel2019-03-222-1/+50
* Simplify optimisation code for cascaded comparisons and improve its test cove...Stefan Behnel2019-03-162-17/+38
* Work around Py2 unicode print issue in tests.Stefan Behnel2019-03-042-4/+14
* Merge branch '0.29.x'Stefan Behnel2019-03-042-0/+19
|\
| * Add missing return type annotation to generators and coroutines.Stefan Behnel2019-03-042-0/+19
* | Merge branch '0.29.x'Stefan Behnel2019-03-031-4/+10
|\ \ | |/
| * Issue a warning when casting a GIL-requiring function into a nogil function (...Stefan Behnel2019-03-031-4/+10
* | Use "fast_gil" calls in line tracing code when available, and actually test it.Stefan Behnel2019-03-031-16/+30
* | Merge branch '0.29.x'Stefan Behnel2019-03-011-21/+19
|\ \ | |/
| * GH-1461: Include the signature line of cdef functions in the import-time line...gh1461_cover_sig_lineStefan Behnel2019-03-011-21/+19
| * Recognize that the default encoding is always utf-8 in Python 3.Robert Bradshaw2019-02-191-0/+150
* | Merge pull request #2860 from noamher/conditional-gilstatnodeStefan Behnel2019-02-262-0/+352
|\ \
| * | Test conditional GILStatNode with compile-time constant as conditionNoam Hershtig2019-02-251-2/+6
| * | Create errors tests for conditional GILStatNodeNoam Hershtig2019-02-231-0/+81
| * | Create run tests for conditional GILStatNodeNoam Hershtig2019-02-231-0/+267
* | | Merge pull request #2859 from cython/faster_absolute_reimportsStefan Behnel2019-02-233-5/+16
|\ \ \
| * | | GH-2854: Reimplement absolute module imports to speed them up, especially und...Stefan Behnel2019-02-223-5/+16
| |/ /
* | | Avoid ambiguous error return value in tests.Stefan Behnel2019-02-232-3/+3
|/ /
* | Merge pull request #2842 from jdemeyer/trashcanStefan Behnel2019-02-181-0/+148
|\ \
| * | @cython.trashcan directive to enable the Python trashcan for deallocationsJeroen Demeyer2019-02-171-0/+148
* | | Merge branch '0.29.x'Stefan Behnel2019-02-151-0/+31
|\ \ \ | | |/ | |/|
| * | Prevent crash when accessing the "__kwdefaults__" special attribute of fused ...Stefan Behnel2019-02-151-0/+31
* | | Merge branch '0.29.x'Stefan Behnel2019-02-151-1/+14
|\ \ \ | |/ /
| * | Fix buffer format parsing code to allow the digit '9' in numbers.Stefan Behnel2019-02-151-1/+14
* | | Allow the short form "cdef struct xyz: pass" instead of always requiring a bl...Stefan Behnel2019-02-105-33/+79
* | | Merge branch '0.29.x'Stefan Behnel2019-02-091-1/+55
|\ \ \ | |/ /
| * | Extend cpdef method test to cover some more (non-)override cases.Stefan Behnel2019-02-091-1/+55
* | | Merge branch '0.29.x'Stefan Behnel2019-02-081-0/+52
|\ \ \ | |/ / | | / | |/ |/|
| * Make the cpdef override check work with Python subclasses of extension types ...Stefan Behnel2019-02-081-0/+52
* | Remove accidental test dependency on "ChainMap", which is missing in Py2.Stefan Behnel2019-02-041-1/+1
* | Remove accidental test dependency on "typing" module, which is missing in Py2.Stefan Behnel2019-02-041-1/+1
* | Update grammar tests from Py3.8 master branch.Stefan Behnel2019-02-031-31/+261
* | Recognize that the default encoding is always utf-8 in Python 3.Robert Bradshaw2019-02-031-0/+150
* | Merge branch '0.29.x'Stefan Behnel2019-02-021-0/+16
|\ \ | |/
| * Clean up insertion points after use in prange code since they conflict with t...Stefan Behnel2019-02-021-0/+16
* | Merge branch '0.29.x'Stefan Behnel2019-02-014-0/+212
|\ \ | |/
| * Fix exception messages for float division by zero, as well as their tests (wh...0.29.4Stefan Behnel2019-02-012-23/+23
| * Fix various cases where optimised division of constants did not check for div...Stefan Behnel2019-02-014-0/+223
* | Speed up multiplication of Python numbers with small integers (<= 2**30).faster_pymultiplyStefan Behnel2019-01-222-1/+176
* | Fix tests in Py2.Stefan Behnel2019-01-202-6/+15
* | Special-case some arithmetic operations with 0 that can be implemented withou...Stefan Behnel2019-01-204-0/+83
* | Merge branch '0.29.x'Stefan Behnel2019-01-191-1/+1
|\ \ | |/
| * Fix test: C compiler warns about uninitialised variables.Stefan Behnel2019-01-191-1/+1
* | Merge branch '0.29.x'Stefan Behnel2019-01-191-1/+1
|\ \ | |/
| * Fix a test on big-endian architectures.Stefan Behnel2019-01-191-1/+1
| * add case for tracer-reporter mismatchwenjun.swj2019-01-191-0/+71