Elucidating comment.

This commit is contained in:
Jeremy Fincher 2004-08-23 12:27:47 +00:00
parent c63c7a1764
commit 48f58cc4de
1 changed files with 5 additions and 1 deletions

View File

@ -205,7 +205,11 @@ class Group(object):
raise InvalidRegistryName, name
if node is None:
node = Group()
if name not in self._children: # XXX Is this right?
# We tried in any number of horrible ways to make it so that
# re-registering something would work. It doesn't, plain and simple.
# For the longest time, we had an "Is this right?" comment here, but
# from experience, we now know that it most definitely *is* right.
if name not in self._children:
self._children[name] = node
self._added.append(name)
names = split(self._name)