diff options
Diffstat (limited to 'Lib/idlelib/PyShell.py')
-rw-r--r-- | Lib/idlelib/PyShell.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/idlelib/PyShell.py b/Lib/idlelib/PyShell.py index 887d638..fae6130 100644 --- a/Lib/idlelib/PyShell.py +++ b/Lib/idlelib/PyShell.py @@ -1186,7 +1186,7 @@ class PyShell(OutputWindow): if not use_subprocess: raise KeyboardInterrupt -class PseudoFile: +class PseudoFile(object): def __init__(self, shell, tags, encoding=None): self.shell = shell |