root/galaxy-central/eggs/bx_python-0.5.0_dev_f74aec067563-py2.6-macosx-10.6-universal-ucs2.egg/bx/__init__.py @ 3

リビジョン 3, 252 bytes (コミッタ: kohda, 14 年 前)

Install Unix tools  http://hannonlab.cshl.edu/galaxy_unix_tools/galaxy.html

行番号 
1import sys
2"""
3Shamelessly ripped off of py.std
4"""
5__version__ = '0.5.0'
6
7class Std( object ):
8    def __init__( self ):
9        self.__dict__ = sys.modules
10    def __getattr__( self, name ):
11        m = __import__(name)
12        return m
13
14std = Std()
Note: リポジトリブラウザについてのヘルプは TracBrowser を参照してください。