Exemplo n.º 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
Exemplo n.º 2
0
Arquivo: five.py Projeto: dtgit/dtedu
def cleanUp():
    """Cleans up the component architecture."""
    _cleanUp()
    import Products.Five.zcml as zcml

    zcml._initialized = 0