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