1
0
forked from VimPlug/jedi

Remove ImplicitTuple.

This commit is contained in:
Dave Halter
2017-03-27 23:18:06 +02:00
parent 8a35a04439
commit bb9ea54402

View File

@@ -492,16 +492,6 @@ class _FakeArray(SequenceLiteralContext):
# TODO is this class really needed? # TODO is this class really needed?
class ImplicitTuple(_FakeArray):
def __init__(self, evaluator, testlist):
super(ImplicitTuple, self).__init__(evaluator, testlist, 'tuple')
raise NotImplementedError
self._testlist = testlist
def _items(self):
return self._testlist.children[::2]
class FakeSequence(_FakeArray): class FakeSequence(_FakeArray):
def __init__(self, evaluator, array_type, lazy_context_list): def __init__(self, evaluator, array_type, lazy_context_list):
""" """