From 7131f84400d85d35d0323c262cc0926bef5a18cf Mon Sep 17 00:00:00 2001 From: Guido van Rossum Date: Fri, 9 Feb 2007 20:13:25 +0000 Subject: Fix a bunch of doctests with the -d option of refactor.py. We still have 27 failing tests (down from 39). --- Lib/test/test_code.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'Lib/test/test_code.py') diff --git a/Lib/test/test_code.py b/Lib/test/test_code.py index 13ec254885..f7014a6a5d 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 -- cgit v1.2.1