forked from VimPlug/jedi
Merge branch 'master' into virtualenv
This commit is contained in:
@@ -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)
|
||||
|
||||
@@ -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):
|
||||
|
||||
Reference in New Issue
Block a user