From: Stefan Behnel Date: Sun, 14 Apr 2013 18:58:33 +0000 (+0200) Subject: changelog X-Git-Tag: 0.19rc1~8 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=6ce7dbdc1a42e80168ce5ea24da17b3aa3940050;p=platform%2Fupstream%2Fpython-cython.git changelog --- diff --git a/CHANGES.rst b/CHANGES.rst index 685edba..401fd59 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -8,6 +8,10 @@ Cython Changelog Features added -------------- +* New directives ``c_string_type`` and ``c_string_encoding`` to more easily + and automatically convert between C strings and the different Python string + types. + * The extension type flag ``Py_TPFLAGS_HAVE_VERSION_TAG`` is enabled by default on extension types and can be disabled using the ``type_version_tag`` compiler directive. @@ -63,8 +67,8 @@ Features added * Keyword arguments are supported for cdef functions. -* Added c_string_type and c_string_encoding directives to more easily convert between - Python and C strings. +* External C++ classes can be declared nogil. Patch by John Stumpo. This fixes + trac ticket 805. Bugs fixed ----------