summaryrefslogtreecommitdiffstats
path: root/Lib/doctest.py
diff options
context:
space:
mode:
authorSkip Montanaro <skip@pobox.com>2001-01-20 23:34:12 (GMT)
committerSkip Montanaro <skip@pobox.com>2001-01-20 23:34:12 (GMT)
commiteccd02a40d0921fc2953213e71da8a3a79d00e17 (patch)
tree7f5a2cb83402b600e73e3cdbb71f7181aaa96138 /Lib/doctest.py
parente78b92a062153ace94989e79d36e04e0997d1710 (diff)
downloadcpython-eccd02a40d0921fc2953213e71da8a3a79d00e17.zip
cpython-eccd02a40d0921fc2953213e71da8a3a79d00e17.tar.gz
cpython-eccd02a40d0921fc2953213e71da8a3a79d00e17.tar.bz2
more __all__ updates
Diffstat (limited to 'Lib/doctest.py')
-rw-r--r--Lib/doctest.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/Lib/doctest.py b/Lib/doctest.py
index 1b06990..887833e 100644
--- a/Lib/doctest.py
+++ b/Lib/doctest.py
@@ -371,6 +371,8 @@ _isEmpty = re.compile(r"\s*$").match
_isComment = re.compile(r"\s*#").match
del re
+__all__ = []
+
# Extract interactive examples from a string. Return a list of triples,
# (source, outcome, lineno). "source" is the source code, and ends
# with a newline iff the source spans more than one line. "outcome" is