diff options
Diffstat (limited to 'libbe/properties.py')
-rw-r--r-- | libbe/properties.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libbe/properties.py b/libbe/properties.py index e9affcb..8c039b2 100644 --- a/libbe/properties.py +++ b/libbe/properties.py @@ -296,7 +296,7 @@ def cached_property(generator, initVal=None, mutable=False): def primed_property(primer, initVal=None): """ - Just like a generator_property, except that instead of returning a + Just like a cached_property, except that instead of returning a new value and running fset to cache it, the primer performs some background manipulation (e.g. loads data into instance.settings) such that a _second_ pass through fget succeeds. |