14
0
forked from pool/python-Cython

Accepting request 233040 from home:TheBlackCat:branches:devel:languages:python

Update to version 0.20.1

OBS-URL: https://build.opensuse.org/request/show/233040
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-Cython?expand=0&rev=41
This commit is contained in:
Todd R
2014-05-08 11:50:17 +00:00
committed by Git OBS Bridge
parent 2a471dbfd5
commit 29c85af785
4 changed files with 24 additions and 5 deletions

View File

@@ -1,3 +1,23 @@
-------------------------------------------------------------------
Thu May 8 11:40:51 UTC 2014 - toddrme2178@gmail.com
- Update to version 0.20.1
* List/Tuple literals multiplied by more than one factor were only multiplied
by the last factor instead of all.
* Lookups of special methods (specifically for context managers) could fail
in Python <= 2.6/3.1.
* Local variables were erroneously appended to the signature introspection
of Cython implemented functions with keyword-only arguments under Python 3.
* In-place assignments to variables with inferred Python builtin/extension
types could fail with type errors if the result value type was incompatible
with the type of the previous value.
* The C code generation order of cdef classes, closures, helper code,
etc. was not deterministic, thus leading to high code churn.
* Type inference could fail to deduce C enum types.
* Type inference could deduce unsafe or inefficient types from integer
assignments within a mix of inferred Python variables and integer
variables.
-------------------------------------------------------------------
Mon Feb 3 18:51:50 UTC 2014 - jengelh@inai.de