mirror of
https://github.com/python/cpython.git
synced 2025-08-31 05:58:33 +00:00
Standardize behavior: no docstrings in test functions.
This commit is contained in:
parent
2e8bba5c21
commit
32c2ae7f4a
2 changed files with 13 additions and 10 deletions
|
@ -16,7 +16,7 @@ class QueryTestCase(unittest.TestCase):
|
|||
self.a[-12] = self.b
|
||||
|
||||
def test_basic(self):
|
||||
"""Verify .isrecursive() and .isreadable() w/o recursion."""
|
||||
# Verify .isrecursive() and .isreadable() w/o recursion
|
||||
verify = self.assert_
|
||||
for safe in (2, 2.0, 2j, "abc", [3], (2,2), {3: 3}, uni("yaddayadda"),
|
||||
self.a, self.b):
|
||||
|
@ -26,7 +26,7 @@ class QueryTestCase(unittest.TestCase):
|
|||
"expected isreadable for " + `safe`)
|
||||
|
||||
def test_knotted(self):
|
||||
"""Verify .isrecursive() and .isreadable() w/ recursion."""
|
||||
# Verify .isrecursive() and .isreadable() w/ recursion
|
||||
# Tie a knot.
|
||||
self.b[67] = self.a
|
||||
# Messy dict.
|
||||
|
@ -51,7 +51,7 @@ class QueryTestCase(unittest.TestCase):
|
|||
"expected isreadable for " + `safe`)
|
||||
|
||||
def test_unreadable(self):
|
||||
"""Not recursive but not readable anyway."""
|
||||
# Not recursive but not readable anyway
|
||||
verify = self.assert_
|
||||
for unreadable in type(3), pprint, pprint.isrecursive:
|
||||
verify(not pprint.isrecursive(unreadable),
|
||||
|
@ -60,7 +60,7 @@ class QueryTestCase(unittest.TestCase):
|
|||
"expected not isreadable for " + `unreadable`)
|
||||
|
||||
def test_same_as_repr(self):
|
||||
"Simple objects and small containers that should be same as repr()."
|
||||
# Simple objects and small containers that should be same as repr()
|
||||
verify = self.assert_
|
||||
for simple in (0, 0L, 0+0j, 0.0, "", uni(""), (), [], {}, verify, pprint,
|
||||
-6, -6L, -6-6j, -1.5, "x", uni("x"), (3,), [3], {3: 6},
|
||||
|
@ -77,7 +77,7 @@ class QueryTestCase(unittest.TestCase):
|
|||
|
||||
|
||||
def test_basic_line_wrap(self):
|
||||
"""verify basic line-wrapping operation"""
|
||||
# verify basic line-wrapping operation
|
||||
o = {'RPM_cal': 0,
|
||||
'RPM_cal2': 48059,
|
||||
'Speed_cal': 0,
|
||||
|
@ -105,6 +105,7 @@ class QueryTestCase(unittest.TestCase):
|
|||
|
||||
|
||||
class DottedPrettyPrinter(pprint.PrettyPrinter):
|
||||
|
||||
def format(self, object, context, maxlevels, level):
|
||||
if isinstance(object, str):
|
||||
if ' ' in object:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue