forked from VimPlug/jedi
c25a4a00df
Fixes #921.
10 lines
159 B
Plaintext
10 lines
159 B
Plaintext
class TextIOWrapper():
|
|
def __next__(self):
|
|
return str()
|
|
|
|
def __iter__(self):
|
|
yield str()
|
|
|
|
def readlines(self):
|
|
return ['']
|