summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLars Wirzenius <liw@liw.fi>2011-04-07 13:15:30 +0100
committerLars Wirzenius <liw@liw.fi>2011-04-07 13:15:30 +0100
commit9303b80b5d68b2be6606634d465bb0a83e3cb74a (patch)
tree309563f14080a275d9a42dfb9a49ea45e7d96cf3
parent301b1cf052b8ffe82a6437fa109f7d16e1e3cc17 (diff)
downloadpython-ttystatus-9303b80b5d68b2be6606634d465bb0a83e3cb74a.tar.gz
Make all symbols available via __all__.
This makes 'pydoc ttystatus' show them directly in the output for the package, instead of the user having to dig them out from invididual modules.
-rw-r--r--ttystatus/__init__.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/ttystatus/__init__.py b/ttystatus/__init__.py
index 7da51c5..ccbf13e 100644
--- a/ttystatus/__init__.py
+++ b/ttystatus/__init__.py
@@ -32,3 +32,5 @@ from progressbar import ProgressBar
from remtime import RemainingTime
from elapsed import ElapsedTime
from bytespeed import ByteSpeed
+
+__all__ = locals()