Commit f5910845 authored by Stefan Behnel's avatar Stefan Behnel

Merge branch '0.23.x'

parents 1cbdd78b 70c44041
...@@ -2,8 +2,8 @@ ...@@ -2,8 +2,8 @@
Cython Changelog Cython Changelog
================ ================
Latest changes 0.23.1 (2015-08-22)
============== ===================
Features added Features added
-------------- --------------
...@@ -56,11 +56,18 @@ Bugs fixed ...@@ -56,11 +56,18 @@ Bugs fixed
* Misnamed PEP 492 coroutine property ``cr_yieldfrom`` renamed to * Misnamed PEP 492 coroutine property ``cr_yieldfrom`` renamed to
``cr_await`` to match CPython. ``cr_await`` to match CPython.
* Missing deallocation code for C++ object attributes in certain
extension class hierarchies.
* Crash when async coroutine was not awaited. * Crash when async coroutine was not awaited.
* Compiler crash on ``yield`` in signature annotations and default * Compiler crash on ``yield`` in signature annotations and default
argument values. Both are forbidden now. argument values. Both are forbidden now.
* Compiler crash on certain constructs in ``finally`` clauses.
* Cython failed to build when CPython's pgen is installed.
0.23 (2015-08-08) 0.23 (2015-08-08)
================= =================
......
# cython.* namespace for pure mode. # cython.* namespace for pure mode.
from __future__ import absolute_import from __future__ import absolute_import
__version__ = "0.23" __version__ = "0.23.1"
try: try:
from __builtin__ import basestring from __builtin__ import basestring
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment