1
0
forked from VimPlug/jedi

Merge branch 'master' into virtualenv

This commit is contained in:
Dave Halter
2017-12-18 01:41:29 +01:00
13 changed files with 47 additions and 12 deletions

View File

@@ -23,3 +23,14 @@ async def x2():
async with open('asdf') as f:
#? ['readlines']
f.readlines
class A():
@staticmethod
async def b(c=1, d=2):
return 1
#! 9 ['def b']
await A.b()
#! 11 ['param d=2']
await A.b(d=3)

View File

@@ -158,7 +158,7 @@ class IntegrationTestCase(object):
return self.line_nr - 1
def __repr__(self):
return '<%s: %s:%s:%s>' % (self.__class__.__name__, self.module_name,
return '<%s: %s:%s %r>' % (self.__class__.__name__, self.path,
self.line_nr_test, self.line.rstrip())
def script(self):