From 95621b25dce4dc80c2c38f336e8052851d211374 Mon Sep 17 00:00:00 2001 From: Tim Peters Date: Wed, 26 Jul 2006 23:23:15 +0000 Subject: [PATCH] Whitespace normalization. --- Lib/pkgutil.py | 2 +- Lib/test/test_getargs2.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Lib/pkgutil.py b/Lib/pkgutil.py index 02497d7af7..f4347e5e54 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 0d9cbd6782..90ca303eca 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)) -- 2.40.0