This commit is contained in:
Tom Most 2014-11-02 22:34:45 +00:00
commit cc0caea9e5

View file

@ -57,6 +57,12 @@ which you map the signals to your plugin logic. Let's take a simple example::
def register():
signals.initialized.connect(test)
.. note::
Signal receivers are weakly-referenced, thus, they must not be defined
within your ``register`` callable or they will be garbage-collected before
the signal is emitted.
List of signals
===============