Convert a couple of comments to docstrings -- PyUnit can use these when

the regression test is run in verbose mode.
This commit is contained in:
Fred Drake 2001-05-14 19:15:23 +00:00
parent 95b3f78622
commit 992d387540
1 changed files with 2 additions and 2 deletions

View File

@ -12,7 +12,7 @@ class QueryTestCase(unittest.TestCase):
self.a[-12] = self.b self.a[-12] = self.b
def test_basic(self): def test_basic(self):
# Verify that .isrecursive() and .isreadable() work w/o recursion. """Verify .isrecursive() and .isreadable() w/o recursion."""
verify = self.assert_ verify = self.assert_
for safe in (2, 2.0, 2j, "abc", [3], (2,2), {3: 3}, u"yaddayadda", for safe in (2, 2.0, 2j, "abc", [3], (2,2), {3: 3}, u"yaddayadda",
self.a, self.b): self.a, self.b):
@ -22,7 +22,7 @@ class QueryTestCase(unittest.TestCase):
"expected isreadable for " + `safe`) "expected isreadable for " + `safe`)
def test_knotted(self): def test_knotted(self):
# Verify that .isrecursive() and .isreadable() work w/ recursion. """Verify .isrecursive() and .isreadable() w/ recursion."""
# Tie a knot. # Tie a knot.
self.b[67] = self.a self.b[67] = self.a
# Messy dict. # Messy dict.