Exemplo n.º 1
0
Arquivo: tools.py Projeto: 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)
Exemplo 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)
Exemplo n.º 3
0
Arquivo: tools.py Projeto: tek/pytek
 def __enter__(self):
     if self._active:
         stdouthandler.setLevel(logging.CRITICAL)
         sys.stdout = self._file
         sys.stderr = self._file
Exemplo n.º 4
0
 def __enter__(self):
     if self._active:
         stdouthandler.setLevel(logging.CRITICAL)
         sys.stdout = self._file
         sys.stderr = self._file