forked from VimPlug/jedi
7 lines
113 B
Plaintext
7 lines
113 B
Plaintext
class TextIOWrapper():
|
|
def __next__(self):
|
|
return str()
|
|
|
|
def __iter__(self):
|
|
yield str()
|