Commit a4533b0d authored by Tim Peters's avatar Tim Peters

Whitespace normalization.

parent 3511c1b8
...@@ -91,7 +91,7 @@ def walk_packages(path=None, prefix='', onerror=None): ...@@ -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__+'.')
......
...@@ -237,7 +237,7 @@ class LongLong_TestCase(unittest.TestCase): ...@@ -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))
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment