summaryrefslogtreecommitdiff
Commit message (Expand)AuthorAgeFilesLines
...
| * 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 unordered_map template defaults (GH-3686)will2020-07-073-1/+29
* | Always consider 0-sized arrays as C- and F-contiguous (GH-3728)Clemens2020-07-072-9/+35
* | Merge branch '0.29.x'Stefan Behnel2020-07-060-0/+0
|\ \ | |/
| * Add missing name substitution in __Pyx_PyUnicode_Substring() utility code.Stefan Behnel2020-07-061-0/+1
* | Merge branch '0.29.x'Stefan Behnel2020-07-050-0/+0
|\ \ | |/
| * Avoid calling PyUnicode_FromUnicode() in Py3 (GH-3721)Victor Stinner2020-07-051-1/+1
* | Disable Py_UNICODE fallback for __Pyx_UnicodeContainsUCS4() in Py3.9 since Py...Stefan Behnel2020-07-051-0/+6
* | Improve syntax feature support of Cython CodeWriter (GH-3514)Tao He2020-07-022-53/+112
* | Merge branch '0.29.x'Stefan Behnel2020-07-011-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
* | Really only use PyUnicode_FromUnicode() when needed (GH-3697)scoder2020-06-307-4/+112
* | Merge branch '0.29.x'Stefan Behnel2020-06-301-1/+2
|\ \ | |/
| * 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
* | Update changelog.Stefan Behnel2020-06-301-0/+3
* | Implement generic optimized loop iterator with indexing and type inference fo...da-woods2020-06-3011-37/+294
* | Document version-tagged pxd files (GH-3587)da-woods2020-06-291-0/+19
* | Merge branch '0.29.x'Stefan Behnel2020-06-290-0/+0
|\ \ | |/
| * Fix argument name usage in finally blocks (GH-3713)da-woods2020-06-292-0/+8
* | Fix argument name usage in finally blocks (GH-3713)da-woods2020-06-292-0/+8
* | Test runner: disable keep-alive output in --debug mode to keep a potential pd...Stefan Behnel2020-06-281-1/+1
* | Validate and fix temp releasing (GH-3708)scoder2020-06-287-37/+88
* | Keep reference to module dict around also in limited mode (GH-3707)Matthias Braun2020-06-263-49/+15
* | Validate that all temps were correctly released at the end of a function.Stefan Behnel2020-06-251-0/+15
* | Fix FunctionState handling for module cleanup function.Stefan Behnel2020-06-251-0/+2
* | Fix indentation counter for module init function.Stefan Behnel2020-06-251-2/+3
* | Enable travis for all branches.Stefan Behnel2020-06-231-4/+0
* | Avoid a call to PyTuple_GET_ITEM() to get the item array pointer if CYTHON_AS...Stefan Behnel2020-06-221-0/+6
* | Avoid unused variable in PyPy etc.Stefan Behnel2020-06-221-1/+1
* | Give the "__Pyx_PyObject_GetIterNext" helper macro a more explanatory name.Stefan Behnel2020-06-204-9/+9
* | Avoid using the "tp_iternext" slot when CYTHON_USE_TYPE_SLOTS is disabled.Stefan Behnel2020-06-204-15/+9
* | Merge branch '0.29.x'Stefan Behnel2020-06-203-0/+22
|\ \ | |/
| * exec() did not allow recent Python syntax features in Py3.8+ due to https://b...Stefan Behnel2020-06-203-0/+22
* | Avoid using "tp_name" when CYTHON_COMPILING_IN_LIMITED_API (GH-3693)Matthias Braun2020-06-2015-99/+253
* | Fix definition of "__Pyx_CyFunction_USED", which should only be #defined and ...Stefan Behnel2020-06-192-2/+2
* | Fix prefix of internal function name.Stefan Behnel2020-06-191-2/+2
* | Merge branch 'master' of git+ssh://github.com/cython/cythonStefan Behnel2020-06-1914-37/+514
|\ \
| * | Add missing "PyUnicode_GET_LENGTH" to unicode.pxd (GH-3692)Thomas A Caswell2020-06-191-0/+11
| * | Add support for C++ scoped enums with "enum class" and "enum struct" (GH-3640)Ashwin Srinath2020-06-1814-37/+514
* | | Merge branch '0.29.x'Stefan Behnel2020-06-191-2/+3
|\ \ \ | | |/ | |/|
| * | Add safety fix to avoid reading a character from the empty string.Stefan Behnel2020-06-191-2/+3