00001
00002
00003 __file__ = 'toolbox.py'
00004 __title__ = 'This is the toolbox module, convenient generic functions and classes for python.'
00005 __version__ = '0.1'
00006 __author__ = 'Olivier Boudeville (olivier.boudeville@online.fr)'
00007 __project__ = 'Ceylan'
00008 __creationDate__= '2001, October 12'
00009 __comments__ = 'Set of useful general-purpose python modules.'
00010 __source__ = 'Mark Pilgrim, http://diveintopython.org/, and al.'
00011 __doc__ = __title__ + '\n' + __comments__
00012
00013
00014
00015
00016
00017
00018 from generalUtils import *
00019 from fileUtils import *
00020
00021
00022
00023 class ToolboxException( GeneralUtilsException ) :
00024 """Base class for toolbox exceptions."""
00025
00026
00027 if __name__ == "__main__":
00028 print __doc__
00029
00030