# ``__init__.py`` # The package file for the Pythonutils module # http://www.voidspace.org.uk/python/pythonutils.html # Copyright Michael Foord and Nicola Larosa, 2004 & 2005. # Released subject to the BSD License # Please see http://www.voidspace.org.uk/python/license.shtml # For information about bugfixes, updates and support, please join the # Pythonutils mailing list. # http://groups.google.com/group/pythonutils/ # Comments, suggestions and bug reports welcome. # Scripts maintained at http://www.voidspace.org.uk/python/index.shtml # E-mail fuzzyman@voidspace.org.uk # this wrapper imports all the pythonutils modules # *except* cgiutils and validate """ This makes most of the pythonutils objects available from the ``pythonutils`` namespace. It doesn't import cgiutils or validate. """ from configobj import * from pathutils import * from standout import * from urlpath import * from odict import * __version__ = '0.3.0' """ CHANGELOG 2005/09/02 ---------- Added ``__version__`` """