summaryrefslogtreecommitdiff
Commit message (Expand)AuthorAgeFilesLines
* Update changelog.3.0a1Stefan Behnel2020-04-111-1/+1
* Add partitioning and sorting operations to libcpp.algorithm (GH-3202)Matthew Edwards2020-04-115-72/+350
* Update changelog.Stefan Behnel2020-04-111-4/+3
* Fix refleak in limited-api case for cross-module shared extension types and s...Stefan Behnel2020-04-112-10/+10
* Remove incorrect error handling in limited-api case.Stefan Behnel2020-04-111-1/+2
* Reduce user expectations for the limited API support in the changelog (GH-3500)da-woods2020-04-111-1/+4
* Update changelog.Stefan Behnel2020-04-111-0/+19
* Require Py3.3 as the minimum stable ABI when using the limited C-API.Stefan Behnel2020-04-111-1/+1
* Prevent calling PyObject_GC_Track() in __Pyx_CyFunction_New() when instantiat...Stefan Behnel2020-04-112-31/+52
* Assume that code passed into cython.inline() is always NumPy 1.7+ clean, so t...Stefan Behnel2020-04-111-4/+8
* Add cython.inline() test that repeatedly uses the same code.Stefan Behnel2020-04-111-0/+15
* Skip numpy inline test rather than discarding it if numpy is not installed.Stefan Behnel2020-04-111-9/+10
* Set macos deployment target version in travis builds.Stefan Behnel2020-04-111-3/+3
* Downgrade XCode on travis for Py2 to see if that fixes the clang build problems.Stefan Behnel2020-04-111-1/+1
* Try to resolve clang++ compilation issues on travis/macos. Apparently, CXXFLA...Stefan Behnel2020-04-111-3/+3
* Add __Pyx_IS_TYPE() macro to mimic the new "Py_IS_TYPE()" macro in CPython 3....Stefan Behnel2020-04-117-18/+24
* Disable "unicode_imports" test in Py2 because it's too fiddly to get working ...Stefan Behnel2020-04-112-10/+1
* Downgrade travis macos image to 10.3 to see if that fixes the Py2 builds.Stefan Behnel2020-04-111-2/+2
* Use newer "libc++" for macos tests instead of deprecated "libstdc++".Stefan Behnel2020-04-101-1/+1
* Fix cython.inline() in Py3.4 by making it use the legacy fallback code for ex...Stefan Behnel2020-04-101-1/+1
* Fix unicode iteration in the limited C-API.Stefan Behnel2020-04-101-4/+5
* Remove add_dll_directory() calls in cython.inline() again to see if it's real...Stefan Behnel2020-04-101-9/+0
* Clean up some code in cython.inline() implementation.Stefan Behnel2020-04-101-11/+18
* Try to make cython.inline() tests pass in Py3.8 on Windows by adhering to the...Stefan Behnel2020-04-101-2/+7
* Debug conda issues on travis.Stefan Behnel2020-04-101-1/+2
* Repair the PEP-393 defines under the limited C-API.Stefan Behnel2020-04-101-16/+9
* Prepare automatically setting Py_LIMITED_API (once it's ready).Stefan Behnel2020-04-102-0/+15
* Minor travis script cleanups.Stefan Behnel2020-04-101-2/+3
* Update changelog.Stefan Behnel2020-04-101-0/+1
* For srctree tests, include the test directory in the PYTHONPATH of subprocess...Stefan Behnel2020-04-101-3/+1
* Register the absolute module path in cython.inline() under Windows, not the (...Stefan Behnel2020-04-101-1/+1
* Prepare 3.0a1 release.Stefan Behnel2020-04-101-1/+1
* Try to fix stackless setup in travis config.Stefan Behnel2020-04-101-4/+4
* Upgrade XCode version on travis to see if it fixes the build.Stefan Behnel2020-04-101-0/+2
* Update documentation on deprecated NumPy C-API warnings.Stefan Behnel2020-04-101-3/+22
* Fix fix unicode normalisation test in Windows. (GH-3194)Stefan Behnel2020-04-109-39/+124
* Better diagnostics for non-working cygdb installations. (GH-3489)Volker-Weissmann2020-04-091-13/+19
* Mention __init__.pxd in tutorial documentation. (GH-3439)will-ca2020-04-091-9/+39
* Build manylinux2010 wheels instead of older manylinux1 (GH-3355)Alexey Stepanov2020-04-091-2/+2
* Prevent generating code hash twice for `cython.inline()`. (GH-3495)will-ca2020-04-091-1/+4
* Avoid calling PySequence_List() in some cases if the argument is a new list a...Stefan Behnel2020-04-083-5/+27
* Make the fused dispatch function safe w.r.t. user defined wraparound/boundsch...da-woods2020-04-082-3/+25
* Merge branch '0.29.x'Stefan Behnel2020-04-071-0/+6
|\
| * Update changelog.Stefan Behnel2020-04-071-0/+6
| * Add tests for std::move wrapperOmer Ozarslan2020-04-071-0/+34
| * Add std::move wrapper to utility libraryOmer Ozarslan2020-04-071-0/+14
* | Update changelog.Stefan Behnel2020-04-071-3/+3
* | Fix test compilation in MSVC (which rejects literal division by zero).Stefan Behnel2020-04-071-1/+1
* | Merge some runtime compilation runs into a single one in the CPython fstring ...Stefan Behnel2020-04-071-2/+6
* | Avoid creating unused "__defaults__" getter functions for fused dispatch func...Stefan Behnel2020-04-072-4/+4