Accepting request 813397 from devel:languages:python

OBS-URL: https://build.opensuse.org/request/show/813397
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-Cython?expand=0&rev=56
This commit is contained in:
2020-06-21 16:49:14 +00:00
committed by Git OBS Bridge
parent 9b02eb9bbf
commit 66661037e5
4 changed files with 23 additions and 4 deletions

View File

@@ -1,3 +1,22 @@
-------------------------------------------------------------------
Thu Jun 11 06:30:55 UTC 2020 - Paolo Stivanin <info@paolostivanin.com>
- Update to 0.29.20
* Nested try-except statements with multiple return statements
could crash due to incorrect deletion of the except as target variable.
* The @classmethod decorator no longer rejects unknown input from other decorators.
* Fused types could leak into unrelated usages. Patch by David Woods.
* Now uses Py_SET_SIZE() and Py_SET_REFCNT() in Py3.9+ to avoid
low-level write access to these object field
* The built-in abs() function could lead to undefined behaviour when used on
the negative-most value of a signed C integer type
* Usages of sizeof() and typeid() on uninitialised variables no longer produce a warning
* The C++ typeid() function was allowed in C mode
* The error position reported for errors found in f-strings was misleading
* The new c_api_binop_methods directive was added for forward compatibility,
but can only be set to True (the current default value). It can be disabled in Cython 3.0
-------------------------------------------------------------------
Thu May 21 15:16:20 UTC 2020 - Paolo Stivanin <info@paolostivanin.com>