diff options
author | Guido van Rossum <guido@python.org> | 2007-02-09 20:13:25 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 2007-02-09 20:13:25 (GMT) |
commit | 7131f84400d85d35d0323c262cc0926bef5a18cf (patch) | |
tree | 4cc23830260de4be99d1ba56b9b80b20edb02996 /Lib/test/test_code.py | |
parent | 4502c804b9f15d26d7636d9c3b5f7faadb2f5362 (diff) | |
download | cpython-7131f84400d85d35d0323c262cc0926bef5a18cf.zip cpython-7131f84400d85d35d0323c262cc0926bef5a18cf.tar.gz cpython-7131f84400d85d35d0323c262cc0926bef5a18cf.tar.bz2 |
Fix a bunch of doctests with the -d option of refactor.py.
We still have 27 failing tests (down from 39).
Diffstat (limited to 'Lib/test/test_code.py')
-rw-r--r-- | Lib/test/test_code.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Lib/test/test_code.py b/Lib/test/test_code.py index 13ec254..f7014a6 100644 --- a/Lib/test/test_code.py +++ b/Lib/test/test_code.py @@ -50,9 +50,9 @@ flags: 67 consts: ('None',) >>> def attrs(obj): -... print obj.attr1 -... print obj.attr2 -... print obj.attr3 +... print(obj.attr1) +... print(obj.attr2) +... print(obj.attr3) >>> dump(attrs.func_code) name: attrs |