summaryrefslogtreecommitdiffstats
path: root/Lib/pkgutil.py
diff options
context:
space:
mode:
authorTim Peters <tim.peters@gmail.com>2006-07-26 23:23:15 (GMT)
committerTim Peters <tim.peters@gmail.com>2006-07-26 23:23:15 (GMT)
commit95621b25dce4dc80c2c38f336e8052851d211374 (patch)
tree6acb2ad27ffba339b74d75b710be22ed259aaa5a /Lib/pkgutil.py
parenteb26ea3f83a0ea729eaf4bc2a44279013effd21a (diff)
downloadcpython-95621b25dce4dc80c2c38f336e8052851d211374.zip
cpython-95621b25dce4dc80c2c38f336e8052851d211374.tar.gz
cpython-95621b25dce4dc80c2c38f336e8052851d211374.tar.bz2
Whitespace normalization.
Diffstat (limited to 'Lib/pkgutil.py')
-rw-r--r--Lib/pkgutil.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/pkgutil.py b/Lib/pkgutil.py
index 02497d7..f4347e5 100644
--- a/Lib/pkgutil.py
+++ b/Lib/pkgutil.py
@@ -91,7 +91,7 @@ def walk_packages(path=None, prefix='', onerror=None):
Examples:
# list all modules python can access
- walk_packages()
+ walk_packages()
# list all submodules of ctypes
walk_packages(ctypes.__path__, ctypes.__name__+'.')