pdb: improve msg about output capturing with set_trace

Do not display "IO-capturing turned off/on" when ``-s`` is used to avoid
confusion.
This commit is contained in:
Daniel Hahler
2018-10-31 16:59:07 +01:00
parent 233c2a23de
commit e0038b82f7
3 changed files with 27 additions and 2 deletions

View File

@@ -102,6 +102,9 @@ class CaptureManager(object):
# Global capturing control
def is_globally_capturing(self):
return self._method != "no"
def start_global_capturing(self):
assert self._global_capturing is None
self._global_capturing = self._getcapture(self._method)