pdk.Util.weakMethod
index
pdk/Util/weakMethod.pyc

$Id: weakMethod.py,v 1.1 2002/11/25 14:00:07 heinkel Exp $

Helper method to create a weak-reference to a method.

Source: http://aspn.activestate.com/ASPN/Cookbook/Python/Recipe/81253

 
Modules
            
weakref
 
Classes
            
WeakMethod
 
class WeakMethod
     
Purpose:create a weak-reference to a (bound) method
Details:Usage: wr = WeakMethod(class.method) wr(args ..., kw ...)

 
   Methods defined here:
__call__(self, *arg, **kw)
__init__(self, f)