(self)
| 63 | |
| 64 | class OriginalStdin(object): |
| 65 | def readline(self): |
| 66 | # On a readline we keep the patched version. |
| 67 | assert sys_mod.stdin is not original_stdin |
| 68 | actions.append("readline") |
| 69 | return "read" |
| 70 | |
| 71 | def getpass_stub(*args, **kwargs): |
| 72 | # On getpass we need to revert to the original version. |
no test coverage detected