commit | 7131f84400d85d35d0323c262cc0926bef5a18cf | [log] [tgz] |
---|---|---|
author | Guido van Rossum <guido@python.org> | Fri Feb 09 20:13:25 2007 +0000 |
committer | Guido van Rossum <guido@python.org> | Fri Feb 09 20:13:25 2007 +0000 |
tree | 4cc23830260de4be99d1ba56b9b80b20edb02996 | |
parent | 4502c804b9f15d26d7636d9c3b5f7faadb2f5362 [diff] [blame] |
Fix a bunch of doctests with the -d option of refactor.py. We still have 27 failing tests (down from 39).
diff --git a/Lib/test/sample_doctest.py b/Lib/test/sample_doctest.py index e5adee0..89eb5cb 100644 --- a/Lib/test/sample_doctest.py +++ b/Lib/test/sample_doctest.py
@@ -40,9 +40,9 @@ def w_blank(): """ >>> if 1: - ... print 'a' - ... print - ... print 'b' + ... print('a') + ... print() + ... print('b') a <BLANKLINE> b