pkgsrc/sysutils/py-notify/DESCR
obache e7ba26868e Fixes packaging, replaced with completely different package as update to 0.2.1.
* not relevant to libnotify, drop dependency, fix COMMENTS and DESCR.
* fixes CATEGORY, `devel' is sufficient.
* let to register EGG-INFO.

Bump PKGREVISION.
2013-08-13 09:18:46 +00:00

8 lines
548 B
Text

Py-notify is a Python package providing tools for implementing `Observer
programming pattern`. These tools include signals, conditions and variables.
Signals are lists of handlers that are called when signal is emitted. Conditions
are basically boolean variables coupled with a signal that is emitted when
condition state changes. They can be combined using standard logical operators
(*not*, *and*, etc.) into compound conditions. Variables, unlike conditions, can
hold any Python object, not just booleans, but they cannot be combined.