summaryrefslogtreecommitdiffstats
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
parenteb26ea3f83a0ea729eaf4bc2a44279013effd21a (diff)
downloadcpython-95621b25dce4dc80c2c38f336e8052851d211374.zip
cpython-95621b25dce4dc80c2c38f336e8052851d211374.tar.gz
cpython-95621b25dce4dc80c2c38f336e8052851d211374.tar.bz2
Whitespace normalization.
-rw-r--r--Lib/pkgutil.py2
-rw-r--r--Lib/test/test_getargs2.py2
2 files changed, 2 insertions, 2 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__+'.')
diff --git a/Lib/test/test_getargs2.py b/Lib/test/test_getargs2.py
index 0d9cbd6..90ca303 100644
--- a/Lib/test/test_getargs2.py
+++ b/Lib/test/test_getargs2.py
@@ -237,7 +237,7 @@ class LongLong_TestCase(unittest.TestCase):
class Tuple_TestCase(unittest.TestCase):
def test_tuple(self):
from _testcapi import getargs_tuple
-
+
ret = getargs_tuple(1, (2, 3))
self.assertEquals(ret, (1,2,3))