From: Brian Warner Date: Thu, 1 Nov 2007 22:34:31 +0000 (-0700) Subject: trailing-whitespace eradication, no functional changes X-Git-Tag: allmydata-tahoe-0.7.0~305 X-Git-Url: https://git.rkrishnan.org/?a=commitdiff_plain;h=c63b43bdbc484f14924ab5e89527dee905bc607f;p=tahoe-lafs%2Ftahoe-lafs.git trailing-whitespace eradication, no functional changes --- diff --git a/src/allmydata/util/observer.py b/src/allmydata/util/observer.py index 01120816..ca29f8f3 100644 --- a/src/allmydata/util/observer.py +++ b/src/allmydata/util/observer.py @@ -51,7 +51,7 @@ class OneShotObserverList: class LazyOneShotObserverList(OneShotObserverList): """ - a variant of OneShotObserverList which does not retain + a variant of OneShotObserverList which does not retain the result it handles, but rather retains a callable() through which is retrieves the data if and when needed. """ @@ -63,7 +63,7 @@ class LazyOneShotObserverList(OneShotObserverList): def fire(self, result_producer): """ - @param result_producer: a no-arg callable which + @param result_producer: a no-arg callable which returns the data which is to be considered the 'result' for this observer list. note that this function may be called multiple times - once