summaryrefslogtreecommitdiff
Commit message (Expand)AuthorAgeFilesLines
* Update changelog.0.29.21Stefan Behnel2020-07-081-1/+1
* Disable test in Py2.6.Stefan Behnel2020-07-081-0/+8
* Using Py_UNICODE to store lone surrogates makes Py3 join surrogate pairs on 1...Stefan Behnel2020-07-081-2/+3
* Improve test output in case of failures.Stefan Behnel2020-07-071-5/+5
* Update changelog.Stefan Behnel2020-07-071-0/+3
* Add missing unordered_map template defaults (GH-3686)will2020-07-073-1/+29
* Update changelog.Stefan Behnel2020-07-071-0/+3
* Always consider 0-sized arrays as C- and F-contiguous (GH-3728)Clemens2020-07-072-9/+35
* Update changelog.Stefan Behnel2020-07-071-3/+5
* Fix test in 16-bit Unicode deployments.Stefan Behnel2020-07-071-1/+1
* Disable Py_UNICODE fallback for __Pyx_UnicodeContainsUCS4() in Py3.9 since Py...Stefan Behnel2020-07-071-0/+6
* Really only use PyUnicode_FromUnicode() when needed (GH-3697)scoder2020-07-077-4/+115
* Prepare release of 0.29.21.Stefan Behnel2020-07-062-2/+2
* Update changelog.Stefan Behnel2020-07-061-1/+12
* Add missing name substitution in __Pyx_PyUnicode_Substring() utility code.Stefan Behnel2020-07-061-0/+1
* Avoid calling PyUnicode_FromUnicode() in Py3 (GH-3721)Victor Stinner2020-07-051-1/+1
* Validate and fix temp releasing (GH-3708) (GH-3717)scoder2020-07-016-33/+96
* Disable testing against NumPy 1.19.0 in the 0.29.x branch, which breaks a C-A...Stefan Behnel2020-07-011-1/+1
* Disable testing against NumPy 1.19+ in the 0.29.x branch, which removed C-API...Stefan Behnel2020-07-011-1/+1
* Update change log.Stefan Behnel2020-06-301-1/+2
* Fix FunctionState handling for module cleanup function.Stefan Behnel2020-06-301-0/+2
* Make end-to-end tests fail on refnanny output.Stefan Behnel2020-06-301-0/+2
* Fix argument name usage in finally blocks (GH-3713)da-woods2020-06-292-0/+8
* exec() did not allow recent Python syntax features in Py3.8+ due to https://b...Stefan Behnel2020-06-203-0/+22
* Add safety fix to avoid reading a character from the empty string.Stefan Behnel2020-06-191-2/+3
* Fix usage of deprecated Py_UNICODE API.Stefan Behnel2020-06-191-1/+1
* Add missing "PyUnicode_GET_LENGTH" to unicode.pxd (GH-3692)Thomas A Caswell2020-06-191-0/+11
* Update changelog.Stefan Behnel2020-06-171-0/+3
* Always bind Cython functions in Py3 (GH-3683)Michał Górny2020-06-171-0/+2
* Re-add "c_api_binop_methods" directive for backwards compatibility after reve...Stefan Behnel2020-06-173-0/+8
* Revert "Python-style binary operation methods."Stefan Behnel2020-06-174-127/+17
* Revert "Add support for pow operator."Stefan Behnel2020-06-172-16/+3
* Revert "Invoke binop super method via direct slot access."Stefan Behnel2020-06-172-7/+32
* Revert "Limited API updates and cleanup for #2056. GH-3635)"Stefan Behnel2020-06-172-68/+39
* Update changelog.Stefan Behnel2020-06-141-3/+0
* Revert "Always bind Cython functions"Stefan Behnel2020-06-142-12/+15
* Avoid an "unused variable" warning for code that gets compiled out in Py3.Stefan Behnel2020-06-141-1/+1
* Update changelog.Stefan Behnel2020-06-141-1/+4
* Always bind Cython functionsJeroen Demeyer2020-06-142-15/+12
* Update changelog.Stefan Behnel2020-06-111-0/+10
* Avoid calling PyUnicode_FromUnicode() in Py3.Stefan Behnel2020-06-111-2/+4
* 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