1
0
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:
Dave Halter
2018-07-17 18:34:42 +02:00
parent fb360506fb
commit 3cabc4b969

View File

@@ -76,18 +76,3 @@ class InstanceAttributeIfs:
InstanceAttributeIfs().a1
#? int() str()
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