Ausgabe der neuen DB Einträge
This commit is contained in:
parent
bad48e1627
commit
cfbbb9ee3d
2399 changed files with 843193 additions and 43 deletions
|
|
@ -0,0 +1,29 @@
|
|||
Metadata-Version: 1.2
|
||||
Name: PyDispatcher
|
||||
Version: 2.0.5
|
||||
Summary: Multi-producer-multi-consumer signal dispatching mechanism
|
||||
Home-page: http://pydispatcher.sourceforge.net
|
||||
Author: Patrick K. O'Brien
|
||||
Author-email: pydispatcher-devel@lists.sourceforge.net
|
||||
Maintainer: Mike C. Fletcher
|
||||
Maintainer-email: pydispatcher-devel@lists.sourceforge.net
|
||||
License: BSD
|
||||
Description: Dispatcher mechanism for creating event models
|
||||
|
||||
PyDispatcher is an enhanced version of Patrick K. O'Brien's
|
||||
original dispatcher.py module. It provides the Python
|
||||
programmer with a robust mechanism for event routing within
|
||||
various application contexts.
|
||||
|
||||
Included in the package are the robustapply and saferef
|
||||
modules, which provide the ability to selectively apply
|
||||
arguments to callable objects and to reference instance
|
||||
methods using weak-references.
|
||||
|
||||
Keywords: dispatcher,dispatch,pydispatch,event,signal,sender,receiver,propagate,multi-consumer,multi-producer,saferef,robustapply,apply
|
||||
Platform: Any
|
||||
Classifier: License :: OSI Approved :: BSD License
|
||||
Classifier: Programming Language :: Python
|
||||
Classifier: Programming Language :: Python :: 3
|
||||
Classifier: Topic :: Software Development :: Libraries :: Python Modules
|
||||
Classifier: Intended Audience :: Developers
|
||||
|
|
@ -0,0 +1,36 @@
|
|||
MANIFEST.in
|
||||
license.txt
|
||||
setup.cfg
|
||||
setup.py
|
||||
PyDispatcher.egg-info/PKG-INFO
|
||||
PyDispatcher.egg-info/SOURCES.txt
|
||||
PyDispatcher.egg-info/dependency_links.txt
|
||||
PyDispatcher.egg-info/top_level.txt
|
||||
docs/index.html
|
||||
docs/images/greypinstripe.png
|
||||
docs/pydoc/__init__.py
|
||||
docs/pydoc/builddocs.py
|
||||
docs/pydoc/pydispatch.__init__.html
|
||||
docs/pydoc/pydispatch.dispatcher.html
|
||||
docs/pydoc/pydispatch.errors.html
|
||||
docs/pydoc/pydispatch.html
|
||||
docs/pydoc/pydispatch.robust.html
|
||||
docs/pydoc/pydispatch.robustapply.html
|
||||
docs/pydoc/pydispatch.saferef.html
|
||||
docs/pydoc/pydoc2.py
|
||||
docs/pydoc/weakref.html
|
||||
docs/style/sitestyle.css
|
||||
examples/__init__.py
|
||||
examples/extra_args.py
|
||||
examples/hello_messages.py
|
||||
examples/simple_sample.py
|
||||
pydispatch/__init__.py
|
||||
pydispatch/dispatcher.py
|
||||
pydispatch/errors.py
|
||||
pydispatch/robust.py
|
||||
pydispatch/robustapply.py
|
||||
pydispatch/saferef.py
|
||||
tests/__init__.py
|
||||
tests/test_dispatcher.py
|
||||
tests/test_robustapply.py
|
||||
tests/test_saferef.py
|
||||
|
|
@ -0,0 +1 @@
|
|||
|
||||
|
|
@ -0,0 +1,16 @@
|
|||
../pydispatch/__init__.py
|
||||
../pydispatch/__pycache__/__init__.cpython-39.pyc
|
||||
../pydispatch/__pycache__/dispatcher.cpython-39.pyc
|
||||
../pydispatch/__pycache__/errors.cpython-39.pyc
|
||||
../pydispatch/__pycache__/robust.cpython-39.pyc
|
||||
../pydispatch/__pycache__/robustapply.cpython-39.pyc
|
||||
../pydispatch/__pycache__/saferef.cpython-39.pyc
|
||||
../pydispatch/dispatcher.py
|
||||
../pydispatch/errors.py
|
||||
../pydispatch/robust.py
|
||||
../pydispatch/robustapply.py
|
||||
../pydispatch/saferef.py
|
||||
PKG-INFO
|
||||
SOURCES.txt
|
||||
dependency_links.txt
|
||||
top_level.txt
|
||||
|
|
@ -0,0 +1 @@
|
|||
pydispatch
|
||||
Loading…
Add table
Add a link
Reference in a new issue