summaryrefslogtreecommitdiff
path: root/decorator/test.py
diff options
context:
space:
mode:
Diffstat (limited to 'decorator/test.py')
-rw-r--r--decorator/test.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/decorator/test.py b/decorator/test.py
index b21fe4d..6c24b15 100644
--- a/decorator/test.py
+++ b/decorator/test.py
@@ -16,9 +16,9 @@ def f1():
def test0():
assert os.path.basename(identity.func_globals['__file__']) == 'test.py'
- print identity.__doc__
+ print(identity.__doc__)
def test1():
assert os.path.basename(f1.func_globals['__file__']) == 'test.py'
- print f1.__doc__
+ print(f1.__doc__)