summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohn Vandenberg <jayvdb@gmail.com>2015-10-19 18:48:15 +1100
committerJohn Vandenberg <jayvdb@gmail.com>2015-10-19 18:48:15 +1100
commitaaef19c4879e221d7d1654a84f3aa3afd03a9124 (patch)
tree583609c028ac679a1267e6cafbffaa5ef9a6a92e
parent287dc928a5cc9f56f342e4abd3c60ff3bf44e3ed (diff)
downloadastroid-use_print_function.tar.gz
Fix SyntaxError on Python 2 for print functionuse_print_function
-rw-r--r--astroid/tests/testdata/python3/data/module.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/astroid/tests/testdata/python3/data/module.py b/astroid/tests/testdata/python3/data/module.py
index 6b47d9d..6399000 100644
--- a/astroid/tests/testdata/python3/data/module.py
+++ b/astroid/tests/testdata/python3/data/module.py
@@ -1,5 +1,6 @@
"""test module for astroid
"""
+from __future__ import print_function
__revision__ = '$Id: module.py,v 1.2 2005-11-02 11:56:54 syt Exp $'
from astroid.node_classes import Name as NameNode