Esempio n. 1
0
File: tools.py Progetto: tek/pytek
 def __exit__(self, exc_type, exc_val, exc_tb):
     if self._active:
         sys.stdout = sys.__stdout__
         sys.stderr = sys.__stderr__
         stdouthandler.setLevel(logging.INFO)
Esempio n. 2
0
 def __exit__(self, exc_type, exc_val, exc_tb):
     if self._active:
         sys.stdout = sys.__stdout__
         sys.stderr = sys.__stderr__
         stdouthandler.setLevel(logging.INFO)
Esempio n. 3
0
File: tools.py Progetto: tek/pytek
 def __enter__(self):
     if self._active:
         stdouthandler.setLevel(logging.CRITICAL)
         sys.stdout = self._file
         sys.stderr = self._file
Esempio n. 4
0
 def __enter__(self):
     if self._active:
         stdouthandler.setLevel(logging.CRITICAL)
         sys.stdout = self._file
         sys.stderr = self._file