from Products.Archetypes.public import * from Products.ATRepresentations.utils import registerType from Products.ATRepresentations.ATRepsBaseObject import ATRepsBaseObject as BaseObject from Products.ATRepresentations.ATRepsBaseContent import ATRepsBaseContent as BaseContent # Calculate which modules should be exported import sys skipExports = ('skipExports', 'sys',) __all__ = tuple([ export for export in dir(sys.modules[__name__]) if export not in skipExports and not export.startswith('_') ])