예제 #1
0
파일: tools.py 프로젝트: 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)
예제 #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)
예제 #3
0
파일: tools.py 프로젝트: tek/pytek
 def __enter__(self):
     if self._active:
         stdouthandler.setLevel(logging.CRITICAL)
         sys.stdout = self._file
         sys.stderr = self._file
예제 #4
0
 def __enter__(self):
     if self._active:
         stdouthandler.setLevel(logging.CRITICAL)
         sys.stdout = self._file
         sys.stderr = self._file