From f437e5c6ba2a21e05b97a51990487a7e790f6f96bff404c95c5b23df182fce85 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tom=C3=A1=C5=A1=20Chv=C3=A1tal?= Date: Mon, 19 Mar 2018 13:47:39 +0000 Subject: [PATCH] - Version update to 0.28.1: * PyFrozenSet_New() was accidentally used in PyPy where it is lacking from the C-API. * Assignment between some C++ templated types were incorrectly rejected when the templates mix const with ctypedef. (Github issue #2148) * Undeclared C++ no-args constructors in subclasses could make the compilation fail if the base class constructor was declared without nogil. (Github issue #2157) * Bytes %-formatting inferred basestring (bytes or unicode) as result type in some cases where bytes would have been safe to infer. (Github issue #2153) * None was accidentally disallowed as typed return value of dict.pop(). OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-Cython?expand=0&rev=98 --- python-Cython-doc.changes | 15 +++++++++++++++ python-Cython.changes | 1 + 2 files changed, 16 insertions(+) diff --git a/python-Cython-doc.changes b/python-Cython-doc.changes index e8d7425..fe8e9a5 100644 --- a/python-Cython-doc.changes +++ b/python-Cython-doc.changes @@ -1,3 +1,18 @@ +------------------------------------------------------------------- +Mon Mar 19 13:23:58 UTC 2018 - tchvatal@suse.com + +- Version update to 0.28.1: + * PyFrozenSet_New() was accidentally used in PyPy where it is lacking + from the C-API. + * Assignment between some C++ templated types were incorrectly rejected + when the templates mix const with ctypedef. (Github issue #2148) + * Undeclared C++ no-args constructors in subclasses could make the + compilation fail if the base class constructor was declared without + nogil. (Github issue #2157) + * Bytes %-formatting inferred basestring (bytes or unicode) as result type + in some cases where bytes would have been safe to infer. (Github issue #2153) + * None was accidentally disallowed as typed return value of dict.pop(). + ------------------------------------------------------------------- Sat Mar 17 00:30:56 UTC 2018 - arun@gmx.de diff --git a/python-Cython.changes b/python-Cython.changes index 6669a0f..c135958 100644 --- a/python-Cython.changes +++ b/python-Cython.changes @@ -12,6 +12,7 @@ Mon Mar 19 13:23:58 UTC 2018 - tchvatal@suse.com * Bytes %-formatting inferred basestring (bytes or unicode) as result type in some cases where bytes would have been safe to infer. (Github issue #2153) * None was accidentally disallowed as typed return value of dict.pop(). + ------------------------------------------------------------------- Sat Mar 17 00:30:56 UTC 2018 - arun@gmx.de