(self, *args, **kwargs)
| 32 | pass |
| 33 | |
| 34 | def readline(self, *args, **kwargs): |
| 35 | # sys.stderr.write('Cannot readline out of the console evaluation\n') -- don't show anything |
| 36 | # This could happen if the user had done input('enter number).<-- upon entering this, that message would appear, |
| 37 | # which is not something we want. |
| 38 | return "\n" |
| 39 | |
| 40 | def write(self, *args, **kwargs): |
| 41 | pass # not available StdIn (but it can be expected to be in the stream interface) |