summaryrefslogtreecommitdiff
path: root/tests/input/func_w0401.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/input/func_w0401.py')
-rw-r--r--tests/input/func_w0401.py9
1 files changed, 9 insertions, 0 deletions
diff --git a/tests/input/func_w0401.py b/tests/input/func_w0401.py
new file mode 100644
index 000000000..12227bc9a
--- /dev/null
+++ b/tests/input/func_w0401.py
@@ -0,0 +1,9 @@
+"""test cyclic import
+"""
+# pylint: disable=no-absolute-import
+from __future__ import print_function
+
+from . import w0401_cycle
+
+if w0401_cycle:
+ print(w0401_cycle)