1# Placeholder because util moved
2# Remove this in version 1.0
3from __future__ import absolute_import
4import warnings
5
6with warnings.catch_warnings():
7    warnings.simplefilter('always', DeprecationWarning)
8    warnings.warn(("util has moved to MDAnalysis.lib.util "
9                   "and will be removed from here in release 1.0"),
10                  DeprecationWarning)
11
12from ..lib.util import *
13