[Zope3-checkins]
SVN: Zope3/branches/jim-adapter/src/zope/component/globalregistry.py
Allowed use without a name,
because lots of tests want to call it that
Jim Fulton
jim at zope.com
Tue Feb 28 17:38:34 EST 2006
Log message for revision 65617:
Allowed use without a name, because lots of tests want to call it that
way.
Changed:
U Zope3/branches/jim-adapter/src/zope/component/globalregistry.py
-=-
Modified: Zope3/branches/jim-adapter/src/zope/component/globalregistry.py
===================================================================
--- Zope3/branches/jim-adapter/src/zope/component/globalregistry.py 2006-02-28 22:18:30 UTC (rev 65616)
+++ Zope3/branches/jim-adapter/src/zope/component/globalregistry.py 2006-02-28 22:38:34 UTC (rev 65617)
@@ -91,7 +91,7 @@
class BaseGlobalComponents(Components):
implements(IGlobalSiteManager)
- def __init__(self, name):
+ def __init__(self, name=''):
self.__name__ = name
super(BaseGlobalComponents, self).__init__()
More information about the Zope3-Checkins
mailing list