"""
Library of useful Python functions and classes.
Many of these utilities (or their ancestors) were developed for the Mojo
Nation project. See the documentation of
U{Mojo Nation} or its open source successor project
U{Mnet} or its commercial successor project
U{Allmydata} for history and attribution.
maintainer web site: U{http://zooko.com/}
pyutil web site: U{http://zooko.com/repos/pyutil}
"""
__version__ = "unknown"
try:
from _version import __version__
except ImportError:
# we're running in a tree that hasn't run make-version.py, so we don't
# know what our version is. This should not happen very often.
pass