From 755f8e42813610f43119e551d4795ebd6d9f5ce1 Mon Sep 17 00:00:00 2001 From: Graham Dumpleton Date: Tue, 17 Sep 2013 21:58:19 +1000 Subject: [PATCH] Updated CHANGES file for recent updates to package. --- CHANGES | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/CHANGES b/CHANGES index 06571ce..2e5150e 100644 --- a/CHANGES +++ b/CHANGES @@ -4,6 +4,19 @@ CHANGES Version 1.1.0 ------------- +New Features: + +* Added a synchronized decorator for performing thread mutex locking on + functions, object instances or classes. This is the same decorator as + covered as an example in the wrapt documentation. + +* Added a WeakFunctionProxy class which can wrap references to instance + methods as well as normal functions. + +* Exposed from the C extension the classes _FunctionWrapperBase, + _BoundFunctionWrapper and _BoundMethodWrapper so that it is possible to + create new variants of FunctionWrapper in pure Python code. + Bugs Fixed: * When deriving from ObjectProxy, if a derived class overrode __new__() and