Package commons :: Module all
[hide private]
[frames] | no frames]

Source Code for Module commons.all

 1  # -*- mode: python; tab-width: 4; indent-tabs-mode: nil; py-indent-offset: 4; -*- 
 2  # vim:ft=python:et:sw=4:ts=4 
 3   
 4  """ 
 5  This module is used for importing all the modules of Python Commons. 
 6  """ 
 7   
 8  import __init__ 
 9  for pkg in __init__.__all__: 
10      if pkg != 'async': exec 'from ' + pkg + ' import *' 
11