blob: f972b714952200a0b8e398ba166402c1b8bacf12 [file] [log] [blame]
__all__ = [
'asm',
'cpp',
'exe',
'html',
'lib',
'obj',
'rsp',
]
def register_all ():
for i in __all__:
m = __import__ (__name__ + '.' + i)
reg = i + '.register ()'
#exec (reg)
# TODO: (PF) I thought these would be imported automatically. Anyone knows why they aren't?
register_all ()