Beispiel #1
0
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
Beispiel #2
0
def cleanUp():
    """Cleans up the component architecture."""
    _cleanUp()
    import Products.Five.zcml as zcml

    zcml._initialized = 0