summaryrefslogtreecommitdiff
path: root/testsuite/E21.py
diff options
context:
space:
mode:
Diffstat (limited to 'testsuite/E21.py')
-rw-r--r--testsuite/E21.py7
1 files changed, 7 insertions, 0 deletions
diff --git a/testsuite/E21.py b/testsuite/E21.py
index 96b55b8..44516e6 100644
--- a/testsuite/E21.py
+++ b/testsuite/E21.py
@@ -7,6 +7,13 @@ dict['key'] ['subkey'] = list[index]
#: Okay
spam(1)
dict['key'] = list[index]
+#: E211
+print ('abc')
+#: Okay
+print('abc')
+#: Okay
+from __future__ import print_function
+print ('abc')
# This is not prohibited by PEP8, but avoid it.