forked from VimPlug/jedi
Remove two recursion tests again that will belong into a commit at a point where it is not failing anymore
This commit is contained in:
@@ -76,18 +76,3 @@ class InstanceAttributeIfs:
|
|||||||
InstanceAttributeIfs().a1
|
InstanceAttributeIfs().a1
|
||||||
#? int() str()
|
#? int() str()
|
||||||
InstanceAttributeIfs().a2
|
InstanceAttributeIfs().a2
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
class A:
|
|
||||||
def a(self, b):
|
|
||||||
for i in [self.a(i) for i in b]:
|
|
||||||
#?
|
|
||||||
i
|
|
||||||
|
|
||||||
class B:
|
|
||||||
def a(self, b):
|
|
||||||
for i in b:
|
|
||||||
for i in self.a(i):
|
|
||||||
#?
|
|
||||||
yield i
|
|
||||||
|
|||||||
Reference in New Issue
Block a user