Update to 0.17.1:

0.17.1:
General Improvements and Bug Fixes

    A reference leak was fixed in the new dict iteration code when
    the loop target was not a plain variable but an unpacked tuple.
    Memory views did not handle the special case of a NULL buffer
    strides value, as allowed by PEP3118.

0.17:
Features

    Alpha quality support for compiling and running Cython generated
    extension modules in PyPy (through cpyext). Note that this
    requires at leastPyPy 1.9 and in many cases also adaptations
    in user code, especially to avoid borrowed references when no
    owned reference is being held directly in C space (a reference
    in a Python list or dict is not enough, for example). See the
    documentation on porting Cython code to PyPy.

    "yield from" is supported (PEP 380) and a couple of minor
    problems with generators were fixed.

    C++ STL container classes automatically coerce from and to the
    equivalent Python container types on typed assignments and
    casts. Usage examples are here. Note that the data in the
    containers is copied during this conversion.

    C++ iterators can now be iterated over using for x in cpp_container
    whenever cpp_container has begin() and end() methods returning
    objects satisfying the iterator pattern (that is, it can be
    incremented, dereferenced, and compared (for non-equality)).
    cdef classes can now have C++ class members (provided a
    zero-argument constructor exists)

    A new cpython.array standard cimport file allows to efficiently
    talk to the stdlib array.array data type in Python 2. Since
    CPython does not export an official C-API for this module, it
    receives special casing by the compiler in order to avoid setup
    overhead on user side. In Python 3, both buffers and memory
    views on the array type already worked out of the box with
    earlier versions of Cython due to the native support for the
    buffer interface in the Py3 array module.
    Fast dict iteration is now enabled optimistically also for
    untyped variables when the common iteration methods are used.

    The unicode string processing code was adapted for the upcoming
    CPython 3.3 (PEP 393, new Unicode buffer layout).

    Buffer arguments and memory view arguments in Python functions
    can be declared "not None" to raise a TypeError on None input.
    c(p)def functions in pure mode can specify their return type
    with "@cython.returns()".
    Automatic dispatch for fused functions with memoryview arguments
    Support newaxis indexing for memoryviews
    Support decorators for fused functions

General Improvements and Bug Fixes

    Old-style Py2 imports did not work reliably in Python 3.x and
    were broken in Python 3.3. Regardless of this fix, it's generally
    best to be explicit about relative and global imports in Cython
    code because old-style imports have a higher overhead. To this
    end, "from __future__ import absolute_import" is supported in
    Python/Cython 2.x code now (previous versions of Cython already
    used it when compiling Python 3 code).

    Stricter constraints on the inline and final modifiers. If your
    code does not compile due to this change, chances are these
    modifiers were previously being ignored by the compiler and
    can be removed without any performance regression.
    Exceptions are always instantiated while raising them (as in
    Python), instead of risking to instantiate them in potentially
    unsafe situations when they need to be handled or otherwise
    processed.

    locals() properly ignores names that do not have Python compatible
    types (including automatically inferred types).
    Some garbage collection issues of memory views were fixed.

    User declared char* types are now recognised as such and
    auto-coerce to and from Python bytes strings.

    libc.string provides a convenience declaration for const uchar
    in addition to const char.

    Modules generated by @cython.inline() are written into the
    directory pointed to by the environment variable CYTHON_CACHE_DIR
    if set.
    numpy.pxd compiles in Python 3 mode.

    callable() and next() compile to more efficient C code.

    list.append() is faster on average.
    Several C compiler warnings were fixed.
    Several bugs related to memoryviews and fused types were fixed.

    Several bug-fixes and improvements related to cythonize(),
    including ccache-style caching.
This commit is contained in:
wiz 2012-10-07 21:28:34 +00:00
parent f3031a0214
commit 95cffa9ca5
3 changed files with 25 additions and 11 deletions

View file

@ -1,9 +1,8 @@
# $NetBSD: Makefile,v 1.6 2012/08/13 14:38:37 wiz Exp $
# $NetBSD: Makefile,v 1.7 2012/10/07 21:28:34 wiz Exp $
#
DISTNAME= Cython-0.16
PKGNAME= ${PYPKGPREFIX}-cython-0.16
PKGREVISION= 1
DISTNAME= Cython-0.17.1
PKGNAME= ${PYPKGPREFIX}-cython-0.17.1
CATEGORIES= lang python
MASTER_SITES= http://cython.org/release/

View file

@ -1,6 +1,6 @@
@comment $NetBSD: PLIST,v 1.4 2012/08/13 14:38:37 wiz Exp $
${PLIST.cygdb}bin/cygdb${PYVERSSUFFIX}
bin/cython${PYVERSSUFFIX}
@comment $NetBSD: PLIST,v 1.5 2012/10/07 21:28:34 wiz Exp $
bin/cygdb2.7
bin/cython2.7
${PYSITELIB}/Cython/Build/BuildExecutable.py
${PYSITELIB}/Cython/Build/BuildExecutable.pyc
${PYSITELIB}/Cython/Build/BuildExecutable.pyo
@ -68,6 +68,9 @@ ${PYSITELIB}/Cython/Compiler/FlowControl.py
${PYSITELIB}/Cython/Compiler/FlowControl.pyc
${PYSITELIB}/Cython/Compiler/FlowControl.pyo
${PYSITELIB}/Cython/Compiler/FlowControl.so
${PYSITELIB}/Cython/Compiler/FusedNode.py
${PYSITELIB}/Cython/Compiler/FusedNode.pyc
${PYSITELIB}/Cython/Compiler/FusedNode.pyo
${PYSITELIB}/Cython/Compiler/Future.py
${PYSITELIB}/Cython/Compiler/Future.pyc
${PYSITELIB}/Cython/Compiler/Future.pyo
@ -134,6 +137,9 @@ ${PYSITELIB}/Cython/Compiler/Tests/TestMemView.pyo
${PYSITELIB}/Cython/Compiler/Tests/TestParseTreeTransforms.py
${PYSITELIB}/Cython/Compiler/Tests/TestParseTreeTransforms.pyc
${PYSITELIB}/Cython/Compiler/Tests/TestParseTreeTransforms.pyo
${PYSITELIB}/Cython/Compiler/Tests/TestSignatureMatching.py
${PYSITELIB}/Cython/Compiler/Tests/TestSignatureMatching.pyc
${PYSITELIB}/Cython/Compiler/Tests/TestSignatureMatching.pyo
${PYSITELIB}/Cython/Compiler/Tests/TestTreeFragment.py
${PYSITELIB}/Cython/Compiler/Tests/TestTreeFragment.pyc
${PYSITELIB}/Cython/Compiler/Tests/TestTreeFragment.pyo
@ -254,6 +260,7 @@ ${PYSITELIB}/Cython/Includes/Deprecated/stdio.pxd
${PYSITELIB}/Cython/Includes/Deprecated/stdlib.pxd
${PYSITELIB}/Cython/Includes/Deprecated/stl.pxd
${PYSITELIB}/Cython/Includes/cpython/__init__.pxd
${PYSITELIB}/Cython/Includes/cpython/array.pxd
${PYSITELIB}/Cython/Includes/cpython/bool.pxd
${PYSITELIB}/Cython/Includes/cpython/buffer.pxd
${PYSITELIB}/Cython/Includes/cpython/bytes.pxd
@ -391,15 +398,22 @@ ${PYSITELIB}/Cython/Tests/xmlrunner.py
${PYSITELIB}/Cython/Tests/xmlrunner.pyc
${PYSITELIB}/Cython/Tests/xmlrunner.pyo
${PYSITELIB}/Cython/Utility/Buffer.c
${PYSITELIB}/Cython/Utility/Builtins.c
${PYSITELIB}/Cython/Utility/Capsule.c
${PYSITELIB}/Cython/Utility/CppConvert.pyx
${PYSITELIB}/Cython/Utility/CppSupport.cpp
${PYSITELIB}/Cython/Utility/CythonFunction.c
${PYSITELIB}/Cython/Utility/Exceptions.c
${PYSITELIB}/Cython/Utility/ExtensionTypes.c
${PYSITELIB}/Cython/Utility/FunctionArguments.c
${PYSITELIB}/Cython/Utility/Generator.c
${PYSITELIB}/Cython/Utility/ImportExport.c
${PYSITELIB}/Cython/Utility/MemoryView.pyx
${PYSITELIB}/Cython/Utility/MemoryView_C.c
${PYSITELIB}/Cython/Utility/ModuleSetupCode.c
${PYSITELIB}/Cython/Utility/ObjectHandling.c
${PYSITELIB}/Cython/Utility/Optimize.c
${PYSITELIB}/Cython/Utility/Printing.c
${PYSITELIB}/Cython/Utility/StringTools.c
${PYSITELIB}/Cython/Utility/TestCyUtilityLoader.pyx
${PYSITELIB}/Cython/Utility/TestCythonScope.pyx
@ -408,6 +422,7 @@ ${PYSITELIB}/Cython/Utility/TypeConversion.c
${PYSITELIB}/Cython/Utility/__init__.py
${PYSITELIB}/Cython/Utility/__init__.pyc
${PYSITELIB}/Cython/Utility/__init__.pyo
${PYSITELIB}/Cython/Utility/arrayarray.h
${PYSITELIB}/Cython/Utils.py
${PYSITELIB}/Cython/Utils.pyc
${PYSITELIB}/Cython/Utils.pyo

View file

@ -1,8 +1,8 @@
$NetBSD: distinfo,v 1.3 2012/08/12 21:08:46 wiz Exp $
$NetBSD: distinfo,v 1.4 2012/10/07 21:28:34 wiz Exp $
SHA1 (Cython-0.16.tar.gz) = b271c1d4b02c1e73d32ea4b242c92643b6bdd16e
RMD160 (Cython-0.16.tar.gz) = 168ef4138945a867ad19a4f05c924f9ce97008c0
Size (Cython-0.16.tar.gz) = 1240372 bytes
SHA1 (Cython-0.17.1.tar.gz) = 171512192d815f9b67ba74177bb3afc7bc55a249
RMD160 (Cython-0.17.1.tar.gz) = 6128b3ef97fba7e2c37fae657af9b2c5a53538c6
Size (Cython-0.17.1.tar.gz) = 1283146 bytes
SHA1 (patch-aa) = b66269a12ff43be9b7ea980d5245b5fdbbe41e64
SHA1 (patch-ab) = de923488eb3f08f7e048c35c57bd60cbfb2b4c53
SHA1 (patch-ac) = 1caa956748f9fa221f9ef263d1d695e6565f36d8