Update to 0.23.1:
0.23.1 (2015-08-22) =================== Bugs fixed ---------- * Invalid C code for generators. This fixes ticket 858. * Invalid C code for some builtin methods. This fixes ticket 856. * Invalid C code for unused local buffer variables. This fixes ticket 154. * Test failures on 32bit systems. This fixes ticket 857. * Code that uses "from xyz import *" and global C struct/union/array variables could fail to compile due to missing helper functions. This fixes ticket 851. * Misnamed PEP 492 coroutine property ``cr_yieldfrom`` renamed to ``cr_await`` to match CPython. * Missing deallocation code for C++ object attributes in certain extension class hierarchies. * Crash when async coroutine was not awaited. * Compiler crash on ``yield`` in signature annotations and default argument values. Both are forbidden now. * Compiler crash on certain constructs in ``finally`` clauses. * Cython failed to build when CPython's pgen is installed.
This commit is contained in:
parent
e63b12728d
commit
0640cbcbb7
2 changed files with 6 additions and 6 deletions
|
@ -1,6 +1,6 @@
|
|||
# $NetBSD: Makefile,v 1.28 2015/08/14 17:47:54 wiz Exp $
|
||||
# $NetBSD: Makefile,v 1.29 2015/08/25 08:59:15 wiz Exp $
|
||||
|
||||
DISTNAME= Cython-0.23
|
||||
DISTNAME= Cython-0.23.1
|
||||
PKGNAME= ${PYPKGPREFIX}-${DISTNAME:S/Cy/cy/}
|
||||
CATEGORIES= lang python
|
||||
MASTER_SITES= http://cython.org/release/
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
$NetBSD: distinfo,v 1.20 2015/08/14 17:47:54 wiz Exp $
|
||||
$NetBSD: distinfo,v 1.21 2015/08/25 08:59:15 wiz Exp $
|
||||
|
||||
SHA1 (Cython-0.23.tar.gz) = 5a49123b39d89a20fb88bdc7886210c39cdff695
|
||||
RMD160 (Cython-0.23.tar.gz) = 250f6400c8c1265daa5d1eb2e2ab5e1fa82e4fd0
|
||||
Size (Cython-0.23.tar.gz) = 1621481 bytes
|
||||
SHA1 (Cython-0.23.1.tar.gz) = 2ff0f863d3b996d2265d0bf06e567e5dd23d004d
|
||||
RMD160 (Cython-0.23.1.tar.gz) = e0e9428f04045b834ef1585312a6e3b2a805630b
|
||||
Size (Cython-0.23.1.tar.gz) = 1626079 bytes
|
||||
SHA1 (patch-ac) = d0e06dd9e4b5a34d0614ec17f51c129eb7724323
|
||||
SHA1 (patch-runtests.py) = 788ff593da9ce447af368957f1a8be562e2d40da
|
||||
|
|
Loading…
Reference in a new issue