File manager - Edit - /home/newsbmcs.com/public_html/static/img/logo/signals.py.tar
Back
usr/lib/python3.10/unittest/signals.py 0000644 00000004543 15027505566 0013660 0 ustar 00 import signal import weakref from functools import wraps __unittest = True class _InterruptHandler(object): def __init__(self, default_handler): self.called = False self.original_handler = default_handler if isinstance(default_handler, int): if default_handler == signal.SIG_DFL: # Pretend it's signal.default_int_handler instead. default_handler = signal.default_int_handler elif default_handler == signal.SIG_IGN: # Not quite the same thing as SIG_IGN, but the closest we # can make it: do nothing. def default_handler(unused_signum, unused_frame): pass else: raise TypeError("expected SIGINT signal handler to be " "signal.SIG_IGN, signal.SIG_DFL, or a " "callable object") self.default_handler = default_handler def __call__(self, signum, frame): installed_handler = signal.getsignal(signal.SIGINT) if installed_handler is not self: # if we aren't the installed handler, then delegate immediately # to the default handler self.default_handler(signum, frame) if self.called: self.default_handler(signum, frame) self.called = True for result in _results.keys(): result.stop() _results = weakref.WeakKeyDictionary() def registerResult(result): _results[result] = 1 def removeResult(result): return bool(_results.pop(result, None)) _interrupt_handler = None def installHandler(): global _interrupt_handler if _interrupt_handler is None: default_handler = signal.getsignal(signal.SIGINT) _interrupt_handler = _InterruptHandler(default_handler) signal.signal(signal.SIGINT, _interrupt_handler) def removeHandler(method=None): if method is not None: @wraps(method) def inner(*args, **kwargs): initial = signal.getsignal(signal.SIGINT) removeHandler() try: return method(*args, **kwargs) finally: signal.signal(signal.SIGINT, initial) return inner global _interrupt_handler if _interrupt_handler is not None: signal.signal(signal.SIGINT, _interrupt_handler.original_handler) usr/local/CyberCP/packages/signals.py 0000644 00000002067 15027564020 0013534 0 ustar 00 # The world is a prison for the believer. ## https://www.youtube.com/watch?v=DWfNYztUM1U from django.dispatch import Signal ## This event is fired before CyberPanel core load the create package template, this special event is used ## to create a beautiful names official plugin. Actual package creation happes with event named preSubmitPackage and postSubmitPackage. preCreatePacakge = Signal() ## See info for preCreatePacakge postCreatePacakge = Signal() ## This event is fired before CyberPanel core start creation a package. preSubmitPackage = Signal() ## This event is fired after CyberPanel core finished creation of a package. postSubmitPackage = Signal() ## This event is fired before CyberPanel core start deletion of a package. preSubmitDelete = Signal() ## This event is fired after CyberPanel core finished deletion of a package. postSubmitDelete = Signal() ## This event is fired before CyberPanel core start to modify a package. preSaveChanges = Signal() ## This event is fired after CyberPanel core finished modifying a package. postSaveChanges = Signal() usr/local/CyberCP/ftp/signals.py 0000644 00000002150 15027564362 0012551 0 ustar 00 # The world is a prison for the believer. ## https://www.youtube.com/watch?v=DWfNYztUM1U from django.dispatch import Signal ## This event is fired before CyberPanel core load the create ftp template, this special event is used ## to create a beautiful names official plugin. Actual FTP account creation happens with event named preSubmitFTPCreation and postSubmitFTPCreation. preCreateFTPAccount = Signal() ## See preCreateFTPAccount postCreateFTPAccount = Signal() ## This event is fired before CyberPanel core start creation of a FTP account. preSubmitFTPCreation = Signal() ## This event is fired after CyberPanel core finished creation of a FTP account. postSubmitFTPCreation = Signal() ## This event is fired before CyberPanel core start deletion of a FTP account. preSubmitFTPDelete = Signal() ## This event is fired after CyberPanel core finished deletion of website postSubmitFTPDelete = Signal() ## This event is fired before CyberPanel core start deletion of child-domain preChangePassword = Signal() ## This event is fired after CyberPanel core finished deletion of child-domain postChangePassword = Signal()
| ver. 1.4 |
Github
|
.
| PHP 8.2.28 | Generation time: 0.03 |
proxy
|
phpinfo
|
Settings