summaryrefslogtreecommitdiffstats
path: root/Lib/pprint.py
diff options
context:
space:
mode:
Diffstat (limited to 'Lib/pprint.py')
-rw-r--r--Lib/pprint.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/Lib/pprint.py b/Lib/pprint.py
index 8e10e9d..814ca48 100644
--- a/Lib/pprint.py
+++ b/Lib/pprint.py
@@ -41,6 +41,8 @@ try:
except ImportError:
from StringIO import StringIO
+__all__ = ["pprint","pformat","isreadable","isrecursive","saferepr",
+ "PrettyPrinter"]
def pprint(object, stream=None):
"""Pretty-print a Python object to a stream [default is sys.sydout]."""