forked from VimPlug/jedi
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 ['']
|