METADATA 22 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792
  1. Metadata-Version: 2.0
  2. Name: billiard
  3. Version: 3.3.0.23
  4. Summary: Python multiprocessing fork with improvements and bugfixes
  5. Home-page: http://github.com/celery/billiard
  6. Author: Ask Solem
  7. Author-email: ask@celeryproject.org
  8. License: BSD
  9. Platform: UNKNOWN
  10. Classifier: Development Status :: 5 - Production/Stable
  11. Classifier: Intended Audience :: Developers
  12. Classifier: Programming Language :: Python
  13. Classifier: Programming Language :: C
  14. Classifier: Programming Language :: Python :: 2
  15. Classifier: Programming Language :: Python :: 2.5
  16. Classifier: Programming Language :: Python :: 2.6
  17. Classifier: Programming Language :: Python :: 2.7
  18. Classifier: Programming Language :: Python :: 3
  19. Classifier: Programming Language :: Python :: 3.2
  20. Classifier: Programming Language :: Python :: 3.3
  21. Classifier: Programming Language :: Python :: Implementation :: CPython
  22. Classifier: Programming Language :: Python :: Implementation :: Jython
  23. Classifier: Programming Language :: Python :: Implementation :: PyPy
  24. Classifier: Operating System :: Microsoft :: Windows
  25. Classifier: Operating System :: POSIX
  26. Classifier: License :: OSI Approved :: BSD License
  27. Classifier: Topic :: Software Development :: Libraries :: Python Modules
  28. Classifier: Topic :: System :: Distributed Computing
  29. ========
  30. billiard
  31. ========
  32. :version: 3.3.0.23
  33. About
  34. -----
  35. `billiard` is a fork of the Python 2.7 `multiprocessing <http://docs.python.org/library/multiprocessing.html>`_
  36. package. The multiprocessing package itself is a renamed and updated version of
  37. R Oudkerk's `pyprocessing <http://pypi.python.org/pypi/processing/>`_ package.
  38. This standalone variant is intended to be compatible with Python 2.4 and 2.5,
  39. and will draw it's fixes/improvements from python-trunk.
  40. - This package would not be possible if not for the contributions of not only
  41. the current maintainers but all of the contributors to the original pyprocessing
  42. package listed `here <http://pyprocessing.berlios.de/doc/THANKS.html>`_
  43. - Also it is a fork of the multiprocessin backport package by Christian Heims.
  44. - It includes the no-execv patch contributed by R. Oudkerk.
  45. - And the Pool improvements previously located in `Celery`_.
  46. .. _`Celery`: http://celeryproject.org
  47. Bug reporting
  48. -------------
  49. Please report bugs related to multiprocessing at the
  50. `Python bug tracker <http://bugs.python.org/>`_. Issues related to billiard
  51. should be reported at http://github.com/celery/billiard/issues.
  52. .. image:: https://d2weczhvl823v0.cloudfront.net/celery/billiard/trend.png
  53. :alt: Bitdeli badge
  54. :target: https://bitdeli.com/free
  55. ===========
  56. Changes
  57. ===========
  58. 3.3.0.23 - 2016-03-03
  59. ---------------------
  60. - ExceptionInfo: Adds tb_lasti and other missing traceback fields
  61. (Issue #180).
  62. - monotonic: Now makes sure ctypes is available.
  63. - PipeConnection: Make sure the pipe is not closed multiple times.
  64. 3.3.0.22 - 2015-12-08
  65. ---------------------
  66. - Wheel packages for Windows now available.
  67. 3.3.0.21 - 2015-10-26
  68. ---------------------
  69. - Pool: Fixed semaphore error on Python3.
  70. - Fixed libSystem error on OS X El Capitan.
  71. 3.3.0.20 - 2015-04-17
  72. ---------------------
  73. - Pool: Timeouts will attempt to send SIGKILL, but this signal
  74. does not exist on Windows. Replaced with SIGTERM.
  75. 3.3.0.19 - 2014-10-13
  76. ---------------------
  77. - Pool: Exceptions in user timeout callbacks are now logged instead
  78. of crashing the pool.
  79. Contributed by Pierre Fersing.
  80. - Pool: Exit codes in errors were improperly being represented as signals.
  81. - Pool: ``.map``. and ``.imap`` now working again.
  82. - Now builds on FreeBSD 10.
  83. Contributed by Michael Fladischer.
  84. 3.3.0.18 - 2014-06-20
  85. ---------------------
  86. - Now compiles on GNU/kFreeBSD
  87. Contributed by Michael Fladischer.
  88. - Pool: `AF_PIPE` address fixed so that it works on recent Windows versions
  89. in combination with Python 2.7.7.
  90. Fix contributed by Joshua Tacoma.
  91. - Pool: Fix for `Supervisor object has no attribute _children` error.
  92. Fix contributed by Andres Riancho.
  93. - Pool: Fixed bug with human_status(None).
  94. - Pool: shrink did not work properly if asked to remove more than 1 process.
  95. 3.3.0.17 - 2014-04-16
  96. ---------------------
  97. - Fixes SemLock on Python 3.4 (Issue #107) when using
  98. ``forking_enable(False)``.
  99. - Pool: Include more useful exitcode information when processes exit.
  100. 3.3.0.16 - 2014-02-11
  101. ---------------------
  102. - Previous release was missing the billiard.py3 package from MANIFEST
  103. so the installation would not work on Python 3.
  104. 3.3.0.15 - 2014-02-10
  105. ---------------------
  106. - Pool: Fixed "cannot join process not started" error.
  107. - Now uses billiard.py2 and billiard.py3 specific packages that are installed
  108. depending on the python version used.
  109. This way the installation will not import version specific modules (and
  110. possibly crash).
  111. 3.3.0.14 - 2014-01-17
  112. ---------------------
  113. - Fixed problem with our backwards compatible ``bytes`` wrapper
  114. (Issue #103).
  115. - No longer expects frozen applications to have a valid ``__file__``
  116. attribute.
  117. Fix contributed by George Sibble.
  118. 3.3.0.13 - 2013-12-13
  119. ---------------------
  120. - Fixes compatability with Python < 2.7.6
  121. - No longer attempts to handle ``SIGBUS``
  122. Contributed by Vishal Vatsa.
  123. - Non-thread based pool now only handles signals:
  124. ``SIGHUP``, ``SIGQUIT``, ``SIGTERM``, ``SIGUSR1``,
  125. ``SIGUSR2``.
  126. - setup.py: Only show compilation warning for build related commands.
  127. 3.3.0.12 - 2013-12-09
  128. ---------------------
  129. - Fixed installation for Python 3.
  130. Contributed by Rickert Mulder.
  131. - Pool: Fixed bug with maxtasksperchild.
  132. Fix contributed by Ionel Cristian Maries.
  133. - Pool: Fixed bug in maintain_pool.
  134. 3.3.0.11 - 2013-12-03
  135. ---------------------
  136. - Fixed Unicode error when installing the distribution (Issue #89).
  137. - Daemonic processes are now allowed to have children.
  138. But note that it will not be possible to automatically
  139. terminate them when the process exits.
  140. See discussion at https://github.com/celery/celery/issues/1709
  141. - Pool: Would not always be able to detect that a process exited.
  142. 3.3.0.10 - 2013-12-02
  143. ---------------------
  144. - Windows: Fixed problem with missing ``WAITABANDONED_0``
  145. Fix contributed by Matthias Wagner
  146. - Windows: PipeConnection can now be inherited.
  147. Fix contributed by Matthias Wagner
  148. 3.3.0.9 - 2013-12-02
  149. --------------------
  150. - Temporary workaround for Celery maxtasksperchild issue.
  151. Fix contributed by Ionel Cristian Maries.
  152. 3.3.0.8 - 2013-11-21
  153. --------------------
  154. - Now also sets ``multiprocessing.current_process`` for compatibility
  155. with loggings ``processName`` field.
  156. 3.3.0.7 - 2013-11-15
  157. --------------------
  158. - Fixed compatibility with PyPy 2.1 + 2.2.
  159. - Fixed problem in pypy detection.
  160. Fix contributed by Tin Tvrtkovic.
  161. - Now uses ``ctypes.find_library`` instead of hardcoded path to find
  162. the OS X CoreServices framework.
  163. Fix contributed by Moritz Kassner.
  164. 3.3.0.6 - 2013-11-12
  165. --------------------
  166. - Now works without C extension again.
  167. - New ``_billiard.read(fd, buffer, [len, ])`` function
  168. implements os.read with buffer support (new buffer API)
  169. - New pure-python implementation of ``Connection.send_offset``.
  170. 3.3.0.5 - 2013-11-11
  171. --------------------
  172. - All platforms except for Windows/PyPy/Jython now requires the C extension.
  173. 3.3.0.4 - 2013-11-11
  174. --------------------
  175. - Fixed problem with Python3 and setblocking.
  176. 3.3.0.3 - 2013-11-09
  177. --------------------
  178. - Now works on Windows again.
  179. 3.3.0.2 - 2013-11-08
  180. --------------------
  181. - ApplyResult.terminate() may be set to signify that the job
  182. must not be executed. It can be used in combination with
  183. Pool.terminate_job.
  184. - Pipe/_SimpleQueue: Now supports rnonblock/wnonblock arguments
  185. to set the read or write end of the pipe to be nonblocking.
  186. - Pool: Log message included exception info but exception happened
  187. in another process so the resulting traceback was wrong.
  188. - Pool: Worker process can now prepare results before they are sent
  189. back to the main process (using ``Worker.prepare_result``).
  190. 3.3.0.1 - 2013-11-04
  191. --------------------
  192. - Pool: New ``correlation_id`` argument to ``apply_async`` can be
  193. used to set a related id for the ``ApplyResult`` object returned:
  194. >>> r = pool.apply_async(target, args, kwargs, correlation_id='foo')
  195. >>> r.correlation_id
  196. 'foo'
  197. - Pool: New callback `on_process_exit` is called when a pool
  198. process exits, with signature ``(pid, exitcode)``.
  199. Contributed by Daniel M. Taub.
  200. - Pool: Improved the too many restarts detection.
  201. 3.3.0.0 - 2013-10-14
  202. --------------------
  203. - Dual code base now runs on Python 2.6+ and Python 3.
  204. - No longer compatible with Python 2.5
  205. - Includes many changes from multiprocessing in 3.4.
  206. - Now uses ``time.monotonic`` when available, also including
  207. fallback implementations for Linux and OS X.
  208. - No longer cleans up after receiving SIGILL, SIGSEGV or SIGFPE
  209. Contributed by Kevin Blackham
  210. - ``Finalize`` and ``register_after_fork`` is now aliases to multiprocessing.
  211. It's better to import these from multiprocessing directly now
  212. so that there aren't multiple registries.
  213. - New `billiard.queues._SimpleQueue` that does not use semaphores.
  214. - Pool: Can now be extended to support using multiple IPC queues.
  215. - Pool: Can now use async I/O to write to pool IPC queues.
  216. - Pool: New ``Worker.on_loop_stop`` handler can be used to add actions
  217. at pool worker process shutdown.
  218. Note that, like all finalization handlers, there is no guarantee that
  219. this will be executed.
  220. Contributed by dmtaub.
  221. 2.7.3.30 - 2013-06-28
  222. ---------------------
  223. - Fixed ImportError in billiard._ext
  224. 2.7.3.29 - 2013-06-28
  225. ---------------------
  226. - Compilation: Fixed improper handling of HAVE_SEM_OPEN (Issue #55)
  227. Fix contributed by Krzysztof Jagiello.
  228. - Process now releases logging locks after fork.
  229. This previously happened in Pool, but it was done too late
  230. as processes logs when they bootstrap.
  231. - Pool.terminate_job now ignores `No such process` errors.
  232. - billiard.Pool entrypoint did not support new arguments
  233. to billiard.pool.Pool
  234. - Connection inbound buffer size increased from 1kb to 128kb.
  235. - C extension cleaned up by properly adding a namespace to symbols.
  236. - _exit_function now works even if thread wakes up after gc collect.
  237. 2.7.3.28 - 2013-04-16
  238. ---------------------
  239. - Pool: Fixed regression that disabled the deadlock
  240. fix in 2.7.3.24
  241. - Pool: RestartFreqExceeded could be raised prematurely.
  242. - Process: Include pid in startup and process INFO logs.
  243. 2.7.3.27 - 2013-04-12
  244. ---------------------
  245. - Manager now works again.
  246. - Python 3 fixes for billiard.connection.
  247. - Fixed invalid argument bug when running on Python 3.3
  248. Fix contributed by Nathan Wan.
  249. - Ignore OSError when setting up signal handlers.
  250. 2.7.3.26 - 2013-04-09
  251. ---------------------
  252. - Pool: Child processes must ignore SIGINT.
  253. 2.7.3.25 - 2013-04-09
  254. ---------------------
  255. - Pool: 2.7.3.24 broke support for subprocesses (Issue #48).
  256. Signals that should be ignored were instead handled
  257. by terminating.
  258. 2.7.3.24 - 2013-04-08
  259. ---------------------
  260. - Pool: Make sure finally blocks are called when process exits
  261. due to a signal.
  262. This fixes a deadlock problem when the process is killed
  263. while having acquired the shared semaphore. However, this solution
  264. does not protect against the processes being killed, a more elaborate
  265. solution is required for that. Hopefully this will be fixed soon in a
  266. later version.
  267. - Pool: Can now use GDB to debug pool child processes.
  268. - Fixes Python 3 compatibility problems.
  269. Contributed by Albertas Agejevas.
  270. 2.7.3.23 - 2013-03-22
  271. ---------------------
  272. - Windows: Now catches SystemExit from setuptools while trying to build
  273. the C extension (Issue #41).
  274. 2.7.3.22 - 2013-03-08
  275. ---------------------
  276. - Pool: apply_async now supports a ``callbacks_propagate`` keyword
  277. argument that can be a tuple of exceptions to propagate in callbacks.
  278. (callback, errback, accept_callback, timeout_callback).
  279. - Errors are no longer logged for OK and recycle exit codes.
  280. This would cause normal maxtasksperchild recycled process
  281. to log an error.
  282. - Fixed Python 2.5 compatibility problem (Issue #33).
  283. - FreeBSD: Compilation now disables semaphores if Python was built
  284. without it (Issue #40).
  285. Contributed by William Grzybowski
  286. 2.7.3.21 - 2013-02-11
  287. ---------------------
  288. - Fixed typo EX_REUSE -> EX_RECYCLE
  289. - Code now conforms to new pep8.py rules.
  290. 2.7.3.20 - 2013-02-08
  291. ---------------------
  292. - Pool: Disable restart limit if maxR is not set.
  293. - Pool: Now uses os.kill instead of signal.signal.
  294. Contributed by Lukasz Langa
  295. - Fixed name error in process.py
  296. - Pool: ApplyResult.get now properly raises exceptions.
  297. Fix contributed by xentac.
  298. 2.7.3.19 - 2012-11-30
  299. ---------------------
  300. - Fixes problem at shutdown when gc has collected symbols.
  301. - Pool now always uses _kill for Py2.5 compatibility on Windows (Issue #32).
  302. - Fixes Python 3 compatibility issues
  303. 2.7.3.18 - 2012-11-05
  304. ---------------------
  305. - [Pool] Fix for check_timeouts if not set.
  306. Fix contributed by Dmitry Sukhov
  307. - Fixed pickle problem with Traceback.
  308. Code.frame.__loader__ is now ignored as it may be set to
  309. an unpickleable object.
  310. - The Django old-layout warning was always showing.
  311. 2.7.3.17 - 2012-09-26
  312. ---------------------
  313. - Fixes typo
  314. 2.7.3.16 - 2012-09-26
  315. ---------------------
  316. - Windows: Fixes for SemLock._rebuild (Issue #24).
  317. - Pool: Job terminated with terminate_job now raises
  318. billiard.exceptions.Terminated.
  319. 2.7.3.15 - 2012-09-21
  320. ---------------------
  321. - Windows: Fixes unpickling of SemLock when using fallback.
  322. - Windows: Fixes installation when no C compiler.
  323. 2.7.3.14 - 2012-09-20
  324. ---------------------
  325. - Installation now works again for Python 3.
  326. 2.7.3.13 - 2012-09-14
  327. ---------------------
  328. - Merged with Python trunk (many authors, many fixes: see Python changelog in
  329. trunk).
  330. - Using execv now also works with older Django projects using setup_environ
  331. (Issue #10).
  332. - Billiard now installs with a warning that the C extension could not be built
  333. if a compiler is not installed or the build fails in some other way.
  334. It really is recommended to have the C extension installed when running
  335. with force execv, but this change also makes it easier to install.
  336. - Pool: Hard timeouts now sends KILL shortly after TERM so that C extensions
  337. cannot block the signal.
  338. Python signal handlers are called in the interpreter, so they cannot
  339. be called while a C extension is blocking the interpreter from running.
  340. - Now uses a timeout value for Thread.join that doesn't exceed the maximum
  341. on some platforms.
  342. - Fixed bug in the SemLock fallback used when C extensions not installed.
  343. Fix contributed by Mher Movsisyan.
  344. - Pool: Now sets a Process.index attribute for every process in the pool.
  345. This number will always be between 0 and concurrency-1, and
  346. can be used to e.g. create a logfile for each process in the pool
  347. without creating a new logfile whenever a process is replaced.
  348. 2.7.3.12 - 2012-08-05
  349. ---------------------
  350. - Fixed Python 2.5 compatibility issue.
  351. - New Pool.terminate_job(pid) to terminate a job without raising WorkerLostError
  352. 2.7.3.11 - 2012-08-01
  353. ---------------------
  354. - Adds support for FreeBSD 7+
  355. Fix contributed by koobs.
  356. - Pool: New argument ``allow_restart`` is now required to enable
  357. the pool process sentinel that is required to restart the pool.
  358. It's disabled by default, which reduces the number of file
  359. descriptors/semaphores required to run the pool.
  360. - Pool: Now emits a warning if a worker process exited with error-code.
  361. But not if the error code is 155, which is now returned if the worker
  362. process was recycled (maxtasksperchild).
  363. - Python 3 compatibility fixes.
  364. - Python 2.5 compatibility fixes.
  365. 2.7.3.10 - 2012-06-26
  366. ---------------------
  367. - The ``TimeLimitExceeded`` exception string representation
  368. only included the seconds as a number, it now gives a more human
  369. friendly description.
  370. - Fixed typo in ``LaxBoundedSemaphore.shrink``.
  371. - Pool: ``ResultHandler.handle_event`` no longer requires
  372. any arguments.
  373. - setup.py bdist now works
  374. 2.7.3.9 - 2012-06-03
  375. --------------------
  376. - Environment variable ``MP_MAIN_FILE`` envvar is now set to
  377. the path of the ``__main__`` module when execv is enabled.
  378. - Pool: Errors occurring in the TaskHandler are now reported.
  379. 2.7.3.8 - 2012-06-01
  380. --------------------
  381. - Can now be installed on Py 3.2
  382. - Issue #12091: simplify ApplyResult and MapResult with threading.Event
  383. Patch by Charles-Francois Natali
  384. - Pool: Support running without TimeoutHandler thread.
  385. - The with_*_thread arguments has also been replaced with
  386. a single `threads=True` argument.
  387. - Two new pool callbacks:
  388. - ``on_timeout_set(job, soft, hard)``
  389. Applied when a task is executed with a timeout.
  390. - ``on_timeout_cancel(job)``
  391. Applied when a timeout is cancelled (the job completed)
  392. 2.7.3.7 - 2012-05-21
  393. --------------------
  394. - Fixes Python 2.5 support.
  395. 2.7.3.6 - 2012-05-21
  396. --------------------
  397. - Pool: Can now be used in an event loop, without starting the supporting
  398. threads (TimeoutHandler still not supported)
  399. To facilitate this the pool has gained the following keyword arguments:
  400. - ``with_task_thread``
  401. - ``with_result_thread``
  402. - ``with_supervisor_thread``
  403. - ``on_process_up``
  404. Callback called with Process instance as argument
  405. whenever a new worker process is added.
  406. Used to add new process fds to the eventloop::
  407. def on_process_up(proc):
  408. hub.add_reader(proc.sentinel, pool.maintain_pool)
  409. - ``on_process_down``
  410. Callback called with Process instance as argument
  411. whenever a new worker process is found dead.
  412. Used to remove process fds from the eventloop::
  413. def on_process_down(proc):
  414. hub.remove(proc.sentinel)
  415. - ``semaphore``
  416. Sets the semaphore used to protect from adding new items to the
  417. pool when no processes available. The default is a threaded
  418. one, so this can be used to change to an async semaphore.
  419. And the following attributes::
  420. - ``readers``
  421. A map of ``fd`` -> ``callback``, to be registered in an eventloop.
  422. Currently this is only the result outqueue with a callback
  423. that processes all currently incoming results.
  424. And the following methods::
  425. - ``did_start_ok``
  426. To be called after starting the pool, and after setting up the
  427. eventloop with the pool fds, to ensure that the worker processes
  428. didn't immediately exit caused by an error (internal/memory).
  429. - ``maintain_pool``
  430. Public version of ``_maintain_pool`` that handles max restarts.
  431. - Pool: Process too frequent restart protection now only counts if the process
  432. had a non-successful exit-code.
  433. This to take into account the maxtasksperchild option, and allowing
  434. processes to exit cleanly on their own.
  435. - Pool: New options max_restart + max_restart_freq
  436. This means that the supervisor can't restart processes
  437. faster than max_restart' times per max_restart_freq seconds
  438. (like the Erlang supervisor maxR & maxT settings).
  439. The pool is closed and joined if the max restart
  440. frequency is exceeded, where previously it would keep restarting
  441. at an unlimited rate, possibly crashing the system.
  442. The current default value is to stop if it exceeds
  443. 100 * process_count restarts in 1 seconds. This may change later.
  444. It will only count processes with an unsuccessful exit code,
  445. this is to take into account the ``maxtasksperchild`` setting
  446. and code that voluntarily exits.
  447. - Pool: The ``WorkerLostError`` message now includes the exit-code of the
  448. process that disappeared.
  449. 2.7.3.5 - 2012-05-09
  450. --------------------
  451. - Now always cleans up after ``sys.exc_info()`` to avoid
  452. cyclic references.
  453. - ExceptionInfo without arguments now defaults to ``sys.exc_info``.
  454. - Forking can now be disabled using the
  455. ``MULTIPROCESSING_FORKING_DISABLE`` environment variable.
  456. Also this envvar is set so that the behavior is inherited
  457. after execv.
  458. - The semaphore cleanup process started when execv is used
  459. now sets a useful process name if the ``setproctitle``
  460. module is installed.
  461. - Sets the ``FORKED_BY_MULTIPROCESSING``
  462. environment variable if forking is disabled.
  463. 2.7.3.4 - 2012-04-27
  464. --------------------
  465. - Added `billiard.ensure_multiprocessing()`
  466. Raises NotImplementedError if the platform does not support
  467. multiprocessing (e.g. Jython).
  468. 2.7.3.3 - 2012-04-23
  469. --------------------
  470. - PyPy now falls back to using its internal _multiprocessing module,
  471. so everything works except for forking_enable(False) (which
  472. silently degrades).
  473. - Fixed Python 2.5 compat. issues.
  474. - Uses more with statements
  475. - Merged some of the changes from the Python 3 branch.
  476. 2.7.3.2 - 2012-04-20
  477. --------------------
  478. - Now installs on PyPy/Jython (but does not work).
  479. 2.7.3.1 - 2012-04-20
  480. --------------------
  481. - Python 2.5 support added.
  482. 2.7.3.0 - 2012-04-20
  483. --------------------
  484. - Updated from Python 2.7.3
  485. - Python 2.4 support removed, now only supports 2.5, 2.6 and 2.7.
  486. (may consider py3k support at some point).
  487. - Pool improvements from Celery.
  488. - no-execv patch added (http://bugs.python.org/issue8713)