(self, *args, **kwargs)
| 44 | pass # not available StdIn (but it can be expected to be in the stream interface) |
| 45 | |
| 46 | def read(self, *args, **kwargs): |
| 47 | # in the interactive interpreter, a read and a readline are the same. |
| 48 | return self.readline() |
| 49 | |
| 50 | def close(self, *args, **kwargs): |
| 51 | pass # expected in StdIn |