14
0
forked from pool/python-Cython

Accepting request 977894 from home:polslinux:branches:devel:languages:python

- update to 0.29.30:
  * Avoid acquiring the GIL at the end of nogil functions. This change
    was backported in order to avoid generating wrong C code that
    would trigger C compiler warnings with tracing support enabled. 
  * Function definitions in finally: clauses were not correctly generated.
  * A case where C-API functions could be called with a live exception
    set was fixed.
  * Cython now correctly generates Python methods for both the provided
    regular and reversed special numeric methods of extension types.
  * The C union type in pure Python mode mishandled some field names.

OBS-URL: https://build.opensuse.org/request/show/977894
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-Cython?expand=0&rev=159
This commit is contained in:
2022-05-18 19:51:42 +00:00
committed by Git OBS Bridge
parent 2b5f314710
commit b93742ab13
4 changed files with 18 additions and 4 deletions

View File

@@ -1,3 +1,17 @@
-------------------------------------------------------------------
Wed May 18 08:35:39 UTC 2022 - Paolo Stivanin <info@paolostivanin.com>
- update to 0.29.30:
* Avoid acquiring the GIL at the end of nogil functions. This change
was backported in order to avoid generating wrong C code that
would trigger C compiler warnings with tracing support enabled.
* Function definitions in finally: clauses were not correctly generated.
* A case where C-API functions could be called with a live exception
set was fixed.
* Cython now correctly generates Python methods for both the provided
regular and reversed special numeric methods of extension types.
* The C union type in pure Python mode mishandled some field names.
-------------------------------------------------------------------
Sun Mar 20 20:33:02 UTC 2022 - Dirk Müller <dmueller@suse.com>