devel, now that it has been imported. Fix EGG_NAME, PKGNAME, improve DESCR, general Makefile cleanup, etc. This can go into HEAD whenever someone feels like importing it or needs it. From CHANGES.txt: 0.7.1 - 0.9.0 ---------- * threads, processes and net has been completely rewritten into a new single implementation named pycsp.parallel. Thus available implementations are now - pycsp.parallel (default) - pycsp.greenlets * pycsp.greenlets has not been changed. Simple and fast. * The trunk repository has been split into two versions. The base which only requires standard CPython libraries and the extras version, which adds all the extra stuff (greenlets, and so on) that requires external libraries. * Previously buffered channels were implemented as a string of processes. This would greatly limit performance, as the latency for communicating across a channel would increase. Now, a buffered channel has an internal buffer and perform only slightly more work than an unbuffered channel. Also the buffer has a location, which means that a buffered channel can be used to hide the latency induced by the data-transfer latency. * All channels in pycsp.parallel are created as network-enabled channels and supports communicating with remote processes. * Added a new process type @multiprocess which runs as an OS-process. This enables mixing @process and @multiprocess in one PyCSP network. * Added a shutdown() method, which must be called at the end of all applications importing pycsp. It closes the channel references and waits for all references to leave hosted channels, thus ensuring that the PyCSP network is left in a robust state. * Found a design flaw in AltSelect, which means that AltSelect does not guarantee priority when affected by network and scheduling latencies. A new PriSelect have been added which is slightly slower but does guarantee priority and thus should be used whenever the SkipGuard is needed. 0.7.0 - 0.7.1 ---------- * (pycsp.greenlets) Fixed issue with communicating on channels from the main namespace. * (pycsp.greenlets) Fixed propagation of exceptions from io functions. * Added "fair" version of AltSelect, which uses the history from an Alternation to perform an ordered AltSelect (priority) * Replaced use of environment variables for some module magic. * Added pycsp.common.trace module * Moved AltSelect and FairSelect to a separate file (altselect.py) * Added Channel() * 3 and 2 * Channel() functionality * removed const.py from individual implementations. * Added support for Jython and IronPython in the threads implementation.
113 lines
4.4 KiB
Text
113 lines
4.4 KiB
Text
@comment $NetBSD: PLIST,v 1.8 2013/12/31 18:29:38 othyro Exp $
|
|
${PYSITELIB}/${EGG_INFODIR}/PKG-INFO
|
|
${PYSITELIB}/${EGG_INFODIR}/SOURCES.txt
|
|
${PYSITELIB}/${EGG_INFODIR}/dependency_links.txt
|
|
${PYSITELIB}/${EGG_INFODIR}/top_level.txt
|
|
${PYSITELIB}/pycsp/__init__.py
|
|
${PYSITELIB}/pycsp/__init__.pyc
|
|
${PYSITELIB}/pycsp/__init__.pyo
|
|
${PYSITELIB}/pycsp/common/__init__.py
|
|
${PYSITELIB}/pycsp/common/__init__.pyc
|
|
${PYSITELIB}/pycsp/common/__init__.pyo
|
|
${PYSITELIB}/pycsp/common/const.py
|
|
${PYSITELIB}/pycsp/common/const.pyc
|
|
${PYSITELIB}/pycsp/common/const.pyo
|
|
${PYSITELIB}/pycsp/common/plugNplay.py
|
|
${PYSITELIB}/pycsp/common/plugNplay.pyc
|
|
${PYSITELIB}/pycsp/common/plugNplay.pyo
|
|
${PYSITELIB}/pycsp/common/toolkit.py
|
|
${PYSITELIB}/pycsp/common/toolkit.pyc
|
|
${PYSITELIB}/pycsp/common/toolkit.pyo
|
|
${PYSITELIB}/pycsp/common/trace.py
|
|
${PYSITELIB}/pycsp/common/trace.pyc
|
|
${PYSITELIB}/pycsp/common/trace.pyo
|
|
${PYSITELIB}/pycsp/current/__init__.py
|
|
${PYSITELIB}/pycsp/current/__init__.pyc
|
|
${PYSITELIB}/pycsp/current/__init__.pyo
|
|
${PYSITELIB}/pycsp/greenlets/__init__.py
|
|
${PYSITELIB}/pycsp/greenlets/__init__.pyc
|
|
${PYSITELIB}/pycsp/greenlets/__init__.pyo
|
|
${PYSITELIB}/pycsp/greenlets/alternation.py
|
|
${PYSITELIB}/pycsp/greenlets/alternation.pyc
|
|
${PYSITELIB}/pycsp/greenlets/alternation.pyo
|
|
${PYSITELIB}/pycsp/greenlets/altselect.py
|
|
${PYSITELIB}/pycsp/greenlets/altselect.pyc
|
|
${PYSITELIB}/pycsp/greenlets/altselect.pyo
|
|
${PYSITELIB}/pycsp/greenlets/buffer.py
|
|
${PYSITELIB}/pycsp/greenlets/buffer.pyc
|
|
${PYSITELIB}/pycsp/greenlets/buffer.pyo
|
|
${PYSITELIB}/pycsp/greenlets/channel.py
|
|
${PYSITELIB}/pycsp/greenlets/channel.pyc
|
|
${PYSITELIB}/pycsp/greenlets/channel.pyo
|
|
${PYSITELIB}/pycsp/greenlets/channelend.py
|
|
${PYSITELIB}/pycsp/greenlets/channelend.pyc
|
|
${PYSITELIB}/pycsp/greenlets/channelend.pyo
|
|
${PYSITELIB}/pycsp/greenlets/compat.py
|
|
${PYSITELIB}/pycsp/greenlets/compat.pyc
|
|
${PYSITELIB}/pycsp/greenlets/compat.pyo
|
|
${PYSITELIB}/pycsp/greenlets/exceptions.py
|
|
${PYSITELIB}/pycsp/greenlets/exceptions.pyc
|
|
${PYSITELIB}/pycsp/greenlets/exceptions.pyo
|
|
${PYSITELIB}/pycsp/greenlets/guard.py
|
|
${PYSITELIB}/pycsp/greenlets/guard.pyc
|
|
${PYSITELIB}/pycsp/greenlets/guard.pyo
|
|
${PYSITELIB}/pycsp/greenlets/process.py
|
|
${PYSITELIB}/pycsp/greenlets/process.pyc
|
|
${PYSITELIB}/pycsp/greenlets/process.pyo
|
|
${PYSITELIB}/pycsp/greenlets/scheduling.py
|
|
${PYSITELIB}/pycsp/greenlets/scheduling.pyc
|
|
${PYSITELIB}/pycsp/greenlets/scheduling.pyo
|
|
${PYSITELIB}/pycsp/parallel/__init__.py
|
|
${PYSITELIB}/pycsp/parallel/__init__.pyc
|
|
${PYSITELIB}/pycsp/parallel/__init__.pyo
|
|
${PYSITELIB}/pycsp/parallel/alternation.py
|
|
${PYSITELIB}/pycsp/parallel/alternation.pyc
|
|
${PYSITELIB}/pycsp/parallel/alternation.pyo
|
|
${PYSITELIB}/pycsp/parallel/altselect.py
|
|
${PYSITELIB}/pycsp/parallel/altselect.pyc
|
|
${PYSITELIB}/pycsp/parallel/altselect.pyo
|
|
${PYSITELIB}/pycsp/parallel/channel.py
|
|
${PYSITELIB}/pycsp/parallel/channel.pyc
|
|
${PYSITELIB}/pycsp/parallel/channel.pyo
|
|
${PYSITELIB}/pycsp/parallel/compat.py
|
|
${PYSITELIB}/pycsp/parallel/compat.pyc
|
|
${PYSITELIB}/pycsp/parallel/compat.pyo
|
|
${PYSITELIB}/pycsp/parallel/configuration.py
|
|
${PYSITELIB}/pycsp/parallel/configuration.pyc
|
|
${PYSITELIB}/pycsp/parallel/configuration.pyo
|
|
${PYSITELIB}/pycsp/parallel/const.py
|
|
${PYSITELIB}/pycsp/parallel/const.pyc
|
|
${PYSITELIB}/pycsp/parallel/const.pyo
|
|
${PYSITELIB}/pycsp/parallel/dispatch.py
|
|
${PYSITELIB}/pycsp/parallel/dispatch.pyc
|
|
${PYSITELIB}/pycsp/parallel/dispatch.pyo
|
|
${PYSITELIB}/pycsp/parallel/exceptions.py
|
|
${PYSITELIB}/pycsp/parallel/exceptions.pyc
|
|
${PYSITELIB}/pycsp/parallel/exceptions.pyo
|
|
${PYSITELIB}/pycsp/parallel/guard.py
|
|
${PYSITELIB}/pycsp/parallel/guard.pyc
|
|
${PYSITELIB}/pycsp/parallel/guard.pyo
|
|
${PYSITELIB}/pycsp/parallel/header.py
|
|
${PYSITELIB}/pycsp/parallel/header.pyc
|
|
${PYSITELIB}/pycsp/parallel/header.pyo
|
|
${PYSITELIB}/pycsp/parallel/multiprocess.py
|
|
${PYSITELIB}/pycsp/parallel/multiprocess.pyc
|
|
${PYSITELIB}/pycsp/parallel/multiprocess.pyo
|
|
${PYSITELIB}/pycsp/parallel/ossocket.py
|
|
${PYSITELIB}/pycsp/parallel/ossocket.pyc
|
|
${PYSITELIB}/pycsp/parallel/ossocket.pyo
|
|
${PYSITELIB}/pycsp/parallel/process.py
|
|
${PYSITELIB}/pycsp/parallel/process.pyc
|
|
${PYSITELIB}/pycsp/parallel/process.pyo
|
|
${PYSITELIB}/pycsp/parallel/protocol.py
|
|
${PYSITELIB}/pycsp/parallel/protocol.pyc
|
|
${PYSITELIB}/pycsp/parallel/protocol.pyo
|
|
share/examples/py-csp/autotest.py
|
|
share/examples/py-csp/buffertest.py
|
|
share/examples/py-csp/check.py
|
|
share/examples/py-csp/commtest.py
|
|
share/examples/py-csp/guardtest.py
|
|
share/examples/py-csp/iotest.py
|
|
share/examples/py-csp/poisontest.py
|
|
share/examples/py-csp/pycsp_import.py
|
|
share/examples/py-csp/selecttest.py
|