Skip to content

Commit

Permalink
Internal Console: Add a "closed" attribute to SysOutput to be a corre…
Browse files Browse the repository at this point in the history
…ct replacement for sys.stdout

Fixes #2984
  • Loading branch information
ccordoba12 committed Mar 20, 2016
1 parent 1373977 commit e5c4174
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions spyderlib/widgets/internalshell.py
Expand Up @@ -75,6 +75,11 @@ def empty_queue(self):
def flush(self):
pass

# This is needed to fix Issue 2984
@property
def closed(self):
return False

class WidgetProxyData(object):
pass

Expand Down

0 comments on commit e5c4174

Please sign in to comment.