summaryrefslogtreecommitdiff
path: root/test.py
diff options
context:
space:
mode:
Diffstat (limited to 'test.py')
-rw-r--r--test.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/test.py b/test.py
index b21fe4d..6c24b15 100644
--- a/test.py
+++ b/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__)