summaryrefslogtreecommitdiff
Commit message (Expand)AuthorAgeFilesLines
* Fix the memoryview error exit case (don't need the GIL for it) and add assert...gh3554_smart_exit_gilStefan Behnel2020-04-271-7/+10
* Avoid generating dead "assure GIL" code if we generated a "goto".Stefan Behnel2020-04-261-7/+12
* Acquire the GIL in nogil functions only when strictly needed on function exit...Stefan Behnel2020-04-264-33/+46
* Fix reference to missing utility function, which is not more than an alias to...Stefan Behnel2020-04-261-1/+1
* Remove an unused method argument and avoid shadowing the 'type' builtin.Stefan Behnel2020-04-261-10/+10
* Merge branch '0.29.x'Stefan Behnel2020-04-261-1/+1
|\
| * Always enable C line in traceback for tests (GH-3098)0.29.17Jeroen Demeyer2020-04-262-1/+7
| * Changed always_allow_keywords_T295 for Py3.9 (GH-3351)da-woods2020-04-261-16/+15
| * Prepare release of 0.29.17.Stefan Behnel2020-04-262-2/+2
| * Add appveyor build for Py3.8 (will probably fail tests, but it should at leas...Stefan Behnel2020-04-261-0/+8
| * Avoid a C compiler warning in clang for a constant strchr() call.Stefan Behnel2020-04-261-1/+2
| * Clarify on PyPI page that "--no-cython-compile" is only helpful if no wheels ...Stefan Behnel2020-04-261-2/+3
* | Clean up and repair the type spec generation for the limited API, leaving mor...Stefan Behnel2020-04-262-49/+50
* | Move the module state generation further down to the latest point before the ...Stefan Behnel2020-04-262-12/+14
* | Fix C-code indentation of PyModuleDef struct by avoiding duplicate opening br...Stefan Behnel2020-04-261-2/+3
* | Fix type slot name in comment.Stefan Behnel2020-04-261-4/+4
* | Revert "Avoid some unnecessary traversal in "ForwardDeclareTypes"."Stefan Behnel2020-04-261-12/+0
* | Clean up default value handling of memory view type.Stefan Behnel2020-04-265-29/+29
* | Simplify a C guard.Stefan Behnel2020-04-261-3/+1
* | Merge branch '0.29.x'Stefan Behnel2020-04-251-0/+4
|\ \ | |/
| * Update changelog.Stefan Behnel2020-04-251-0/+4
| * Work around error that "__reduce_cython__ cannot be found" when re-importing ...Stefan Behnel2020-04-255-6/+95
* | Work around error "__reduce_cython__ cannot be found" (GH-3549)Stefan Behnel2020-04-254-6/+58
* | Merge branch '0.29.x'Stefan Behnel2020-04-251-0/+3
|\ \ | |/
| * Update changelog.Stefan Behnel2020-04-251-0/+3
| * docs: fix link to Pyrex embedding tutorial (GH-3550)Ben McGinnes2020-04-251-1/+1
| * FIX: Ignore unused ctuples (GH-3543) (GH-3551)isotherm2020-04-252-1/+10
* | FIX: Ignore unused ctuples (GH-3543) (GH-3551)isotherm2020-04-252-1/+10
* | docs: fix link to Pyrex embedding tutorial (GH-3550)Ben McGinnes2020-04-251-1/+1
* | Avoid some unnecessary traversal in "ForwardDeclareTypes".Stefan Behnel2020-04-241-0/+12
* | Update and split changelog for 3.0a2.3.0a2Stefan Behnel2020-04-231-21/+61
* | Clarify on PyPI page that "--no-cython-compile" is only helpful if no wheels ...Stefan Behnel2020-04-231-2/+3
* | Add another safety guard around the optimised PEP-487 implementation.Stefan Behnel2020-04-231-2/+2
* | Remove unused import.Stefan Behnel2020-04-231-1/+1
* | Mangle __arg argument names in methods (GH-3123)da-woods2020-04-238-22/+472
* | Tune some internal calls into fastcall/vectorcall (GH-3540)Stefan Behnel2020-04-224-49/+58
* | Avoid "unused" C compiler warning.Stefan Behnel2020-04-221-0/+5
* | Implement PEP-487: simpler customisation of class creation (GH-3533)Stefan Behnel2020-04-225-9/+521
* | Make some feature flag defaults overridable in the Limited-API case.Stefan Behnel2020-04-211-6/+9
* | Try if we can avoid a C compiler warning in clang for a constant strchr() call.Stefan Behnel2020-04-211-1/+2
* | Guard helper function against missing usage when direct type slot access is d...Stefan Behnel2020-04-211-0/+2
* | Add "tp_pypy_flags" field to PyTypeObject struct when compiling in PyPy 6.0+ ...Stefan Behnel2020-04-214-0/+35
* | Try if we can avoid a C compiler warning in clang for a constant strchr() call.Stefan Behnel2020-04-211-1/+1
* | Added mechanism for moving rather than copying C++ temps (GH-3362)da-woods2020-04-214-7/+112
* | Revert "Build Cython in parallel on appveyor if distutils support it."Stefan Behnel2020-04-201-7/+1
* | Merge branch '0.29.x'Stefan Behnel2020-04-201-0/+3
|\ \ | |/
| * Update changelog.Stefan Behnel2020-04-201-0/+3
| * Avoid integer overflow when decoding bytes/charptr (GH-3535)Sam Sneddon2020-04-203-4/+38
* | Avoid integer overflow when decoding bytes/charptr (GH-3535)Sam Sneddon2020-04-203-4/+38
* | Disable the PEP-487 test in PyPy because it fails in travis (PyPy 7.1.1).Stefan Behnel2020-04-201-0/+1