The Wayback Machine - https://web.archive.org/web/20200911151157/https://github.com/balabit/signal-slot
Skip to content
master
Go to file
Code

Latest commit

 

Git stats

Files

Permalink
Failed to load latest commit information.
Type
Name
Latest commit message
Commit time
 
 
 
 

README.md

Signal-slot framework in Python

Overview

The signal-slot framework can be used to statically create method callbacks without using interface superclasses in all mixin classes in the class hierarchy.

Slots can be registered to be called when a signal is called. Only the slots belonging to the actual instance will be called.

Slots will be called

  • with the same arguments as the arguments of the signal;
  • at the end of the call of the signal;

The execution order of the slots is not defined.

Usage

There is a detailed example in the python module. Test it by python -m doctest -v.

Note

The framework is publicated "AS IS", further development is not guaranteed.

About

Connecting mixin and superclass methods

Topics

Resources

License

Releases

No releases published

Packages

No packages published

Languages

You can’t perform that action at this time.