summaryrefslogtreecommitdiff
Commit message (Expand)AuthorAgeFilesLines
* Prepare release of 0.29.20.0.29.20Stefan Behnel2020-06-102-2/+2
* Allow selecting specific doctests in test modules with "-k pattern", instead ...Stefan Behnel2020-06-101-1/+8
* Correct the positions reported for errors in f-strings.Stefan Behnel2020-06-104-15/+54
* Fix test in Py2.Stefan Behnel2020-06-051-6/+6
* Return statements inside of nested try-except statements lead to an incorrect...Stefan Behnel2020-06-053-7/+42
* Simplify classmethod() code in Py3 where "PyMethodDescr_Type" is directly ava...Stefan Behnel2020-06-041-1/+5
* Avoid distracting GIL error after failed function lookups.Stefan Behnel2020-06-041-1/+1
* Update changelog.Stefan Behnel2020-06-041-0/+6
* classmethod() should fall back to calling PyClassMethod_New() instead of deci...da-woods2020-06-042-10/+16
* Use variable to aboid compiler warningda-woods2020-06-041-1/+2
* Fix a bug where fused_to_specific was applied too widelyda-woods2020-06-042-2/+23
* Fix detection of reusable utility code: whenever we do string and/or unbound ...Stefan Behnel2020-05-291-5/+2
* Update changelog.Stefan Behnel2020-05-271-0/+3
* Disable "c_api_binop_methods" directive in 0.29.x and provide it only as an e...Stefan Behnel2020-05-272-85/+4
* Update changelog.Stefan Behnel2020-05-271-10/+4
* Use Py_SET_SIZE() and Py_SET_REFCNT() on Python 3.9.0a4 and newer (GH-3639)Victor Stinner2020-05-275-10/+22
* Limited API updates and cleanup for #2056. GH-3635)Robert Bradshaw2020-05-262-39/+64
* Update changelog.Stefan Behnel2020-05-261-6/+10
* Update changelog.Stefan Behnel2020-05-261-0/+7
* Emit an error when typeid() is used outside of C++ mode (GH-3637)Celelibi2020-05-262-0/+29
* Fix overflow handling for abs() calls on signed integer types (GH-3634)serge-sans-paille2020-05-262-7/+13
* Fix handling of "no-cpp" test tag for error tests, where "cpp" is already rem...Stefan Behnel2020-05-261-2/+4
* Update changelog.Stefan Behnel2020-05-261-0/+11
* Avoid "uninitialised" warnings for sizeof and typeid (GH-3631)Celelibi2020-05-263-0/+22
* Merge branch '0.29.x' of git+ssh://github.com/cython/cython into 0.29.xStefan Behnel2020-05-256-17/+206
|\
| * Invoke binop super method via direct slot access.Robert Bradshaw2020-05-232-32/+7
| * Add support for pow operator.Robert Bradshaw2020-05-233-3/+29
| * Python-style binary operation methods.Robert Bradshaw2020-05-236-17/+205
* | Prepare release of 0.29.19.0.29.19Stefan Behnel2020-05-201-1/+1
* | Update changelog.Stefan Behnel2020-05-201-0/+13
* | Use platform dependent test for "unpacked_struct_with_arrays" (GH-3621)smutch2020-05-201-1/+5
* | Fix a macro name that was accidentally broken in c9dec706354b06a8689223cfb92b...Stefan Behnel2020-05-201-1/+1
|/
* Update changelog.Stefan Behnel2020-05-181-0/+3
* Prepare release of 0.29.18.0.29.18Stefan Behnel2020-05-182-2/+2
* Add ticket reference explaining why a work-around is needed.Stefan Behnel2020-05-181-0/+1
* Update changelog.Stefan Behnel2020-05-181-0/+4
* Disable GC during hacked calls to PyType_Ready() that simulate a heap type fo...Stefan Behnel2020-05-181-9/+53
* Uncomment timedelta macros in datetime.pxd, because why not have them?Stefan Behnel2020-05-162-3/+5
* Update changelog.Stefan Behnel2020-05-161-1/+2
* Also mark the case of an uninitialised memory view slice as "unlikely()" when...Stefan Behnel2020-05-161-4/+3
* Mark the last deletion of a memory view slice as "unlikely()" to ask the C co...Stefan Behnel2020-05-161-1/+2
* Sprinkle "unlikely()" branch hints in all places where the memory view C code...Stefan Behnel2020-05-161-1/+1
* Mark the first creation of a memory view slice as "unlikely()" to ask the C c...Stefan Behnel2020-05-161-1/+1
* Sprinkle "unlikely()" branch hints in all places where the memory view C code...Stefan Behnel2020-05-161-23/+20
* Fix up the NumPy warnings hack by using the actual "import_array()" function ...Stefan Behnel2020-05-161-2/+2
* Fix PyArray_SearchSorted signature (GH-3606)jbrockmendel2020-05-162-5/+19
* Fix test output in Py2.Stefan Behnel2020-05-151-1/+1
* Update changelog.Stefan Behnel2020-05-151-0/+3
* Run ParallelRangeTransform also recursively on function arguments (GH-3608)da-woods2020-05-152-0/+7
* Allow decorators on nested async-def functions.Stefan Behnel2020-05-153-1/+31