HEX
Server: Apache/2.4.6 (CentOS) OpenSSL/1.0.2k-fips PHP/7.2.34
System: Linux atalantini.com 3.10.0-1127.13.1.el7.x86_64 #1 SMP Tue Jun 23 15:46:38 UTC 2020 x86_64
User: root (0)
PHP: 7.2.34
Disabled: NONE
Upload Files
File: //usr/share/doc/python-workerpool-0.9.2/CHANGES
Changes
=======

0.9.2
-----

* WorkerPool now inherits from Queue. All of the normal Queue operations apply.
* WorkerPool.wait() has been deprecated in favour of WorkerPool.join().
* WorkerPool constructor now accepts a worker_factory instead of a (WorkerClass, args) tuple.
* EquippedWorker constructor now accepts a toolbox_factory instead of a (ToolboxClass, args) tuple.
* Code has been simplified thanks to the previous two changes.
* Added backwards compatibility with Python 2.4, but with reduced functionaltiy. WorkerPool's join() and task_done() do nothing in Python 2.4 for now.

0.9.1
-----

* Changed WorkerPool.map() to behave more like Python's built-in map() method.
  In consequence, you can no longer define a custom job class to be used by the
  WorkerPool.map() method. This will probably change before a 1.0 release.
* Added a unit test for the new WorkerPool.map() functionality.


0.9
---

* Initial public release.