py.lib

Yohn Y. 2022-03-07 Parent:1668cc57225b

24:ff755f64cda8 Go to Latest

py.lib/Alarm.py

.

History
     1.1 --- a/Alarm.py	Wed Feb 23 19:27:33 2022 +0300
     1.2 +++ b/Alarm.py	Mon Mar 07 11:20:41 2022 +0300
     1.3 @@ -1,10 +1,11 @@
     1.4  #!/usr/bin/python
     1.5 -# -*- coding: utf-8 -*-
     1.6 +# coding: utf-8
     1.7  
     1.8  from signal import SIGALRM, alarm, signal
     1.9  
    1.10  
    1.11 -class AlarmTimeout(Exception): pass
    1.12 +class AlarmTimeout(Exception):
    1.13 +	pass
    1.14  
    1.15  
    1.16  def _handler(sig, frame):