# HG changeset patch # User Jeff Hammel # Date 1330123973 28800 # Node ID d63ae03cc300003c4313ead193501a69fc95f18c # Parent 562230cc2e86fd729f14fa535aa9abfa40447658 * fix up __init__ imports * stub test diff -r 562230cc2e86 -r d63ae03cc300 paint/__init__.py --- a/paint/__init__.py Thu Feb 23 17:49:05 2012 -0800 +++ b/paint/__init__.py Fri Feb 24 14:52:53 2012 -0800 @@ -1,2 +1,2 @@ -# +from package import * diff -r 562230cc2e86 -r d63ae03cc300 paint/package.py --- a/paint/package.py Thu Feb 23 17:49:05 2012 -0800 +++ b/paint/package.py Fri Feb 24 14:52:53 2012 -0800 @@ -9,6 +9,8 @@ import urllib2 import utils +__all__ = ['Package'] + class Package(object): # XXX much of this is generic resource stuff and should be split off diff -r 562230cc2e86 -r d63ae03cc300 tests/doctest.txt --- a/tests/doctest.txt Thu Feb 23 17:49:05 2012 -0800 +++ b/tests/doctest.txt Fri Feb 24 14:52:53 2012 -0800 @@ -7,5 +7,5 @@ Run some tests. This test will fail, please fix it: - >>> assert True == False + >>> jetperf = paint.Package('http://k0s.org/mozilla/hg/jetperf/archive/tip.tar.gz')