Metadata-Version: 2.1
Name: morris
Version: 1.2
Summary: Morris is an announcement (signal/event) system for Python
Home-page: https://github.com/zyga/morris
Author: Zygmunt Krynicki
Author-email: me@zygoon.pl
License: LGPLv3
Keywords: morris signal event pub/sub
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)
Classifier: Natural Language :: English
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.2
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: Implementation :: CPython
Classifier: Programming Language :: Python :: Implementation :: PyPy
License-File: COPYING
License-File: COPYING.LESSER
License-File: AUTHORS.rst

=========================================================
Morris - an announcement (signal/event) system for Python
=========================================================

Features
========

* Free software: LGPLv3 license
* Documentation: https://morris.readthedocs.org.
* Create signals with a simple decorator :class:`morris.signal`
* Send signals by calling the decorated method or function
* Connect to and disconnect from signals with :meth:`morris.signal.connect()`
  and :meth:`morris.signal.disconnect()`.
* Test your code with :meth:`morris.SignalTestCase.watchSignal()`,
  :meth:`morris.SignalTestCase.assertSignalFired()`,
  :meth:`morris.SignalTestCase.assertSignalNotFired()`
  and :meth:`morris.SignalTestCase.assertSignalOrdering()`





History
=======

1.2 (2015-02-030
----------------
* Merge backwards compatibility features for Plainbox migration.
  (signal_name, SignalInterceptorMixIn)
* Fix a bug in signal.__repr__()
* Document internals better

1.1 (2015-02-02)
----------------

* Merge ``Signal`` and ``signal`` into one class.
* Make ``Signal`` an alias of ``signal``.
* Make ``Signal.define`` an alias of ``signal``.
* Fix signal support on standalone functions
  (https://github.com/zyga/morris/issues/1)
* Add more documentation and tests
* Enable travis-ci.org integration

1.0 (2014-09-21)
----------------

* First release on PyPI.


2012-2014
---------

* Released on PyPI as a part of plainbox as ``plainbox.impl.signal``
