diff -r 9513afbd57f1 -r 744cd0b4b8cd DebugClients/Python/coverage/__init__.py --- a/DebugClients/Python/coverage/__init__.py Thu Jan 07 13:42:05 2010 +0000 +++ b/DebugClients/Python/coverage/__init__.py Thu Jan 07 13:42:51 2010 +0000 @@ -5,12 +5,14 @@ """ -__version__ = "3.0.1" # see detailed history in CHANGES.txt +__version__ = "3.2" # see detailed history in CHANGES.txt + +__url__ = "http://nedbatchelder.com/code/coverage" -from control import coverage -from data import CoverageData -from cmdline import main, CoverageScript -from misc import CoverageException +from coverage.control import coverage +from coverage.data import CoverageData +from coverage.cmdline import main, CoverageScript +from coverage.misc import CoverageException # Module-level functions. The original API to this module was based on @@ -24,10 +26,10 @@ def _singleton_method(name): """Return a function to the `name` method on a singleton `coverage` object. - + The singleton object is created the first time one of these functions is called. - + """ def wrapper(*args, **kwargs): """Singleton wrapper around a coverage method.""" @@ -78,4 +80,4 @@ # ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR # TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE # USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH -# DAMAGE. \ No newline at end of file +# DAMAGE.