From 0322f85e2aecc642fb85ad70d5e54706b939665c Mon Sep 17 00:00:00 2001 From: Stefan Behnel Date: Mon, 8 Apr 2013 07:09:03 +0200 Subject: [PATCH] changelog --- CHANGES.rst | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/CHANGES.rst b/CHANGES.rst index 6d4bc2a..88731be 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -34,7 +34,8 @@ Features added * A new class decorator ``@cython.freelist(N)`` creates a static freelist of N instances for an extension type, thus avoiding the costly allocation step if possible. This can speed up object instantiation by 20-30% in suitable - scenarios. + scenarios. Note that freelists are currently only supported for base types, + not for types that inherit from others. * Fast extension type instantiation using the ``Type.__new__(Type)`` idiom has gained support for passing arguments. It is also a bit faster for types defined -- 2.7.4