summaryrefslogtreecommitdiff
path: root/python/testData/completion/weakQualifierBoundMethodAttributes.py
diff options
context:
space:
mode:
Diffstat (limited to 'python/testData/completion/weakQualifierBoundMethodAttributes.py')
-rw-r--r--python/testData/completion/weakQualifierBoundMethodAttributes.py10
1 files changed, 10 insertions, 0 deletions
diff --git a/python/testData/completion/weakQualifierBoundMethodAttributes.py b/python/testData/completion/weakQualifierBoundMethodAttributes.py
new file mode 100644
index 000000000000..2433cfbfa054
--- /dev/null
+++ b/python/testData/completion/weakQualifierBoundMethodAttributes.py
@@ -0,0 +1,10 @@
+class MyClass(object):
+ def method(self):
+ pass
+
+if True:
+ inst = MyClass()
+else:
+ inst = unresolved
+
+inst.method.__<caret> \ No newline at end of file