Example #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
Example #2
0
File: five.py Project: dtgit/dtedu
def cleanUp():
    """Cleans up the component architecture."""
    _cleanUp()
    import Products.Five.zcml as zcml

    zcml._initialized = 0