You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

31 lines
1.2 KiB

4 years ago
  1. Metadata-Version: 2.1
  2. Name: PyDispatcher
  3. Version: 2.0.5
  4. Summary: Multi-producer-multi-consumer signal dispatching mechanism
  5. Home-page: http://pydispatcher.sourceforge.net
  6. Author: Patrick K. O'Brien
  7. Author-email: pydispatcher-devel@lists.sourceforge.net
  8. Maintainer: Mike C. Fletcher
  9. Maintainer-email: pydispatcher-devel@lists.sourceforge.net
  10. License: BSD
  11. Keywords: dispatcher,dispatch,pydispatch,event,signal,sender,receiver,propagate,multi-consumer,multi-producer,saferef,robustapply,apply
  12. Platform: Any
  13. Classifier: License :: OSI Approved :: BSD License
  14. Classifier: Programming Language :: Python
  15. Classifier: Programming Language :: Python :: 3
  16. Classifier: Topic :: Software Development :: Libraries :: Python Modules
  17. Classifier: Intended Audience :: Developers
  18. Dispatcher mechanism for creating event models
  19. PyDispatcher is an enhanced version of Patrick K. O'Brien's
  20. original dispatcher.py module. It provides the Python
  21. programmer with a robust mechanism for event routing within
  22. various application contexts.
  23. Included in the package are the robustapply and saferef
  24. modules, which provide the ability to selectively apply
  25. arguments to callable objects and to reference instance
  26. methods using weak-references.