summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Bayer <mike_mp@zzzcomputing.com>2012-10-29 17:06:37 -0400
committerMike Bayer <mike_mp@zzzcomputing.com>2012-10-29 17:06:37 -0400
commit3ec2934f49356612b72261b5e86c9365bbdbac65 (patch)
tree0d093195a6e4625b64d83ce6a1e6143558fff40d
parente2ee02338eda7f956723b88ee644db885ec7b849 (diff)
downloaddogpile-core-3ec2934f49356612b72261b5e86c9365bbdbac65.tar.gz
take this outrel_0_4_0
-rw-r--r--dogpile/core/nameregistry.py9
1 files changed, 0 insertions, 9 deletions
diff --git a/dogpile/core/nameregistry.py b/dogpile/core/nameregistry.py
index 6e8c547..a73f450 100644
--- a/dogpile/core/nameregistry.py
+++ b/dogpile/core/nameregistry.py
@@ -31,15 +31,6 @@ class NameRegistry(object):
object is *removed* from the :class:`.NameRegistry` as
a result of Python garbage collection.
- :class:`.NameRegistry` is a utility object that
- is used to maintain new :class:`.Dogpile` objects
- against a certain key, for as long as that particular key
- is referenced within the application. An application
- can deal with an arbitrary number of keys, ensuring that
- all threads requesting a certain key use the same
- :class:`.Dogpile` object, without the need to maintain
- each :class:`.Dogpile` object persistently in memory.
-
:param creator: A function that will create a new
value, given the identifier passed to the :meth:`.NameRegistry.get`
method.