completion works now also in docstrings

This commit is contained in:
David Halter
2012-08-31 00:27:05 +02:00
parent 9a5537d3c1
commit 39ce26eb1e
2 changed files with 15 additions and 1 deletions

View File

@@ -165,3 +165,14 @@ def global_define():
#? int()
global_var_in_func
# -----------------
# within docstrs
# -----------------
def a():
"""
#? ['global_define']
global_define
"""
pass