Whitespace normalization.

This commit is contained in:
Tim Peters 2006-07-26 23:23:15 +00:00
parent eb26ea3f83
commit 95621b25dc
2 changed files with 2 additions and 2 deletions

View file

@ -91,7 +91,7 @@ def walk_packages(path=None, prefix='', onerror=None):
Examples: Examples:
# list all modules python can access # list all modules python can access
walk_packages() walk_packages()
# list all submodules of ctypes # list all submodules of ctypes
walk_packages(ctypes.__path__, ctypes.__name__+'.') walk_packages(ctypes.__path__, ctypes.__name__+'.')

View file

@ -237,7 +237,7 @@ class LongLong_TestCase(unittest.TestCase):
class Tuple_TestCase(unittest.TestCase): class Tuple_TestCase(unittest.TestCase):
def test_tuple(self): def test_tuple(self):
from _testcapi import getargs_tuple from _testcapi import getargs_tuple
ret = getargs_tuple(1, (2, 3)) ret = getargs_tuple(1, (2, 3))
self.assertEquals(ret, (1,2,3)) self.assertEquals(ret, (1,2,3))