diff options
author | Fred Drake <fdrake@acm.org> | 2001-05-14 19:15:23 +0000 |
---|---|---|
committer | Fred Drake <fdrake@acm.org> | 2001-05-14 19:15:23 +0000 |
commit | 09f054f003dcff10caf64c96b011ce08f21a5f43 (patch) | |
tree | 6ebb98bbb99f985c6e2536f13b1542c52258e002 /Lib/test/test_pprint.py | |
parent | cf942b8c6a4ad39409b1b3f1738c35410db5d0fc (diff) | |
download | cpython-09f054f003dcff10caf64c96b011ce08f21a5f43.tar.gz |
Convert a couple of comments to docstrings -- PyUnit can use these when
the regression test is run in verbose mode.
Diffstat (limited to 'Lib/test/test_pprint.py')
-rw-r--r-- | Lib/test/test_pprint.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/test/test_pprint.py b/Lib/test/test_pprint.py index 25d806d0de..ba53ee8a7c 100644 --- a/Lib/test/test_pprint.py +++ b/Lib/test/test_pprint.py @@ -12,7 +12,7 @@ class QueryTestCase(unittest.TestCase): self.a[-12] = self.b def test_basic(self): - # Verify that .isrecursive() and .isreadable() work 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}, u"yaddayadda", self.a, self.b): @@ -22,7 +22,7 @@ class QueryTestCase(unittest.TestCase): "expected isreadable for " + `safe`) def test_knotted(self): - # Verify that .isrecursive() and .isreadable() work w/ recursion. + """Verify .isrecursive() and .isreadable() w/ recursion.""" # Tie a knot. self.b[67] = self.a # Messy dict. |