"""
Library of useful Python functions and classes.
Projects that have contributed substantial portions to pyutil:
U{Mojo Nation}
U{Mnet}
U{Allmydata}
U{Tahoe-LAFS}
mailto:zooko@zooko.com
pyutil web site: U{http://tahoe-lafs.org/trac/pyutil}
"""
__version__ = "unknown"
try:
from _version import __version__
except ImportError:
# We're running in a tree that hasn't run "./setup.py darcsver", and didn't
# come with a _version.py, so we don't know what our version is. This should
# not happen very often.
pass
__version__ # hush pyflakes