1
0
forked from VimPlug/jedi

again refactorings

This commit is contained in:
David Halter
2012-09-10 11:06:31 +02:00
parent b29fdbdfde
commit a93f695b7d
6 changed files with 51 additions and 27 deletions

View File

@@ -58,3 +58,14 @@ def blub():
#< (55,4) (59,1)
@blub
def a(): pass
#< (65,7) (68,0)
import colorama
#< (65,7) (68,0)
colorama
#< 3
import abc

View File

@@ -88,7 +88,7 @@ class TestRegression(unittest.TestCase):
s = ("def abc(): pass\n"
"abc.d.a.abc.d"
)
functions.get_related_names(s, 2, 2, '/')
functions.related_names(s, 2, 2, '/')
if __name__ == '__main__':