forked from VimPlug/jedi
13 lines
205 B
Plaintext
13 lines
205 B
Plaintext
class TextIOWrapper():
|
|
def __next__(self):
|
|
return str()
|
|
|
|
def __iter__(self):
|
|
yield str()
|
|
|
|
def readlines(self):
|
|
return ['']
|
|
|
|
def __enter__(self):
|
|
return self
|