summaryrefslogtreecommitdiff
path: root/python/testData/intentions/afterImportToImportFrom.py
diff options
context:
space:
mode:
Diffstat (limited to 'python/testData/intentions/afterImportToImportFrom.py')
-rw-r--r--python/testData/intentions/afterImportToImportFrom.py9
1 files changed, 9 insertions, 0 deletions
diff --git a/python/testData/intentions/afterImportToImportFrom.py b/python/testData/intentions/afterImportToImportFrom.py
new file mode 100644
index 000000000000..45b576a58c94
--- /dev/null
+++ b/python/testData/intentions/afterImportToImportFrom.py
@@ -0,0 +1,9 @@
+from __builtin__ import staticmethod, divmod
+
+quotient, rem = divmod(42, 3)
+
+// PY-11074
+class MyClass(object):
+ @staticmethod
+ def method():
+ pass \ No newline at end of file