def cleanUp(): '''Cleans up the component architecture.''' _cleanUp() try: from Zope2.App import zcml zcml._initialized = 0 except ImportError: pass try: from Products.Five import zcml zcml._initialized = 0 except ImportError: pass
def cleanUp(): """Cleans up the component architecture.""" _cleanUp() import Products.Five.zcml as zcml zcml._initialized = 0