Updated CHANGES file for recent updates to package.

This commit is contained in:
Graham Dumpleton
2013-09-17 21:58:19 +10:00
parent 6d5501d506
commit 755f8e4281

13
CHANGES
View File

@@ -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