diff -Nru billiard-3.3.0.21/billiard/__init__.py billiard-3.3.0.22/billiard/__init__.py --- billiard-3.3.0.21/billiard/__init__.py 2015-10-26 18:36:30.000000000 +0000 +++ billiard-3.3.0.22/billiard/__init__.py 2015-12-08 22:36:18.000000000 +0000 @@ -35,7 +35,7 @@ from .process import Process, current_process, active_children from .util import SUBDEBUG, SUBWARNING -VERSION = (3, 3, 0, 21) +VERSION = (3, 3, 0, 22) __version__ = '.'.join(map(str, VERSION[0:4])) + "".join(VERSION[4:]) __author__ = 'R Oudkerk / Python Software Foundation' __author_email__ = 'python-dev@python.org' diff -Nru billiard-3.3.0.21/billiard/py3/connection.py billiard-3.3.0.22/billiard/py3/connection.py --- billiard-3.3.0.21/billiard/py3/connection.py 2015-10-26 18:34:41.000000000 +0000 +++ billiard-3.3.0.22/billiard/py3/connection.py 2015-12-08 22:35:25.000000000 +0000 @@ -27,15 +27,14 @@ try: import _winapi - from _winapi import ( - WAIT_OBJECT_0, - WAIT_TIMEOUT, - INFINITE, - ) + + WAIT_OBJECT_0 = _winapi.WAIT_OBJECT_0 + WAIT_TIMEOUT = _winapi.WAIT_TIMEOUT + INFINITE = _winapi.INFINITE # if we got here, we seem to be running on Windows. Handle probably # missing WAIT_ABANDONED_0 constant: try: - from _winapi import WAIT_ABANDONED_0 + WAIT_ABANDONED_0 = _winapi.WAIT_ABANDONED_0 except ImportError: # _winapi seems to be not exporting # this constant, fallback solution until diff -Nru billiard-3.3.0.21/billiard/tests/test_common.py billiard-3.3.0.22/billiard/tests/test_common.py --- billiard-3.3.0.21/billiard/tests/test_common.py 2015-10-26 18:32:27.000000000 +0000 +++ billiard-3.3.0.22/billiard/tests/test_common.py 2015-12-08 22:35:25.000000000 +0000 @@ -2,10 +2,12 @@ import os import signal +import sys from contextlib import contextmanager from time import time +from nose import SkipTest from billiard.common import ( _shutdown_cleanup, reset_signals, @@ -37,6 +39,10 @@ class test_reset_signals(Case): + def setUp(self): + if sys.platform == 'win32': + raise SkipTest('win32: skip') + def test_shutdown_handler(self): with patch('sys.exit') as exit: _shutdown_cleanup(15, Mock()) diff -Nru billiard-3.3.0.21/billiard.egg-info/PKG-INFO billiard-3.3.0.22/billiard.egg-info/PKG-INFO --- billiard-3.3.0.21/billiard.egg-info/PKG-INFO 2015-10-26 18:40:08.000000000 +0000 +++ billiard-3.3.0.22/billiard.egg-info/PKG-INFO 2015-12-08 22:39:08.000000000 +0000 @@ -1,6 +1,6 @@ Metadata-Version: 1.1 Name: billiard -Version: 3.3.0.21 +Version: 3.3.0.22 Summary: Python multiprocessing fork with improvements and bugfixes Home-page: http://github.com/celery/billiard Author: Ask Solem @@ -9,7 +9,7 @@ Description: ======== billiard ======== - :version: 3.3.0.21 + :version: 3.3.0.22 About ----- @@ -50,6 +50,11 @@ Changes =========== + 3.3.0.22 - 2015-12-08 + --------------------- + + - Wheel packages for Windows now available. + 3.3.0.21 - 2015-10-26 --------------------- diff -Nru billiard-3.3.0.21/CHANGES.txt billiard-3.3.0.22/CHANGES.txt --- billiard-3.3.0.21/CHANGES.txt 2015-10-26 18:33:42.000000000 +0000 +++ billiard-3.3.0.22/CHANGES.txt 2015-12-08 22:36:11.000000000 +0000 @@ -1,3 +1,8 @@ +3.3.0.22 - 2015-12-08 +--------------------- + +- Wheel packages for Windows now available. + 3.3.0.21 - 2015-10-26 --------------------- diff -Nru billiard-3.3.0.21/debian/changelog billiard-3.3.0.22/debian/changelog --- billiard-3.3.0.21/debian/changelog 2015-11-18 21:30:27.000000000 +0000 +++ billiard-3.3.0.22/debian/changelog 2015-12-20 08:14:26.000000000 +0000 @@ -1,3 +1,10 @@ +billiard (3.3.0.22-1) unstable; urgency=low + + * New upstream release. + * Add a patch to fix a typo in multiprocessing.c. + + -- Michael Fladischer Sun, 20 Dec 2015 09:14:15 +0100 + billiard (3.3.0.21-1) unstable; urgency=medium * New upstream version. diff -Nru billiard-3.3.0.21/debian/.git-dpm billiard-3.3.0.22/debian/.git-dpm --- billiard-3.3.0.21/debian/.git-dpm 2015-11-18 21:27:25.000000000 +0000 +++ billiard-3.3.0.22/debian/.git-dpm 2015-12-20 08:14:26.000000000 +0000 @@ -1,11 +1,11 @@ # see git-dpm(1) from git-dpm package -db1805a13b2e47657f2b1a8ec5c30992189082a2 -db1805a13b2e47657f2b1a8ec5c30992189082a2 -04f4cd56873c7d80995137920fb03b5a9f28d966 -04f4cd56873c7d80995137920fb03b5a9f28d966 -billiard_3.3.0.21.orig.tar.gz -13355cf50b21decc6a06dda19a2bc54d377c37b2 -151141 +be0df8b7d94ef5d66f334f0e59587dd4a8ca49df +be0df8b7d94ef5d66f334f0e59587dd4a8ca49df +9551eb2f18a749165613a493723b0d896c5f5f6a +9551eb2f18a749165613a493723b0d896c5f5f6a +billiard_3.3.0.22.orig.tar.gz +104b96baab5a921d7efd6d9c65b187619c9a3bb0 +151192 debianTag="debian/%e%v" patchedTag="patched/%e%v" upstreamTag="upstream/%e%u" diff -Nru billiard-3.3.0.21/debian/patches/0004-Fix-spelling-error-in-multiprocessing.c.patch billiard-3.3.0.22/debian/patches/0004-Fix-spelling-error-in-multiprocessing.c.patch --- billiard-3.3.0.21/debian/patches/0004-Fix-spelling-error-in-multiprocessing.c.patch 1970-01-01 00:00:00.000000000 +0000 +++ billiard-3.3.0.22/debian/patches/0004-Fix-spelling-error-in-multiprocessing.c.patch 2015-12-20 08:14:26.000000000 +0000 @@ -0,0 +1,22 @@ +From be0df8b7d94ef5d66f334f0e59587dd4a8ca49df Mon Sep 17 00:00:00 2001 +From: Michael Fladischer +Date: Sat, 19 Dec 2015 21:54:38 +0100 +Subject: Fix spelling error in multiprocessing.c. + +--- + Modules/_billiard/multiprocessing.c | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +diff --git a/Modules/_billiard/multiprocessing.c b/Modules/_billiard/multiprocessing.c +index 5eb5ad2..1d8e1af 100644 +--- a/Modules/_billiard/multiprocessing.c ++++ b/Modules/_billiard/multiprocessing.c +@@ -262,7 +262,7 @@ bail: + static PyMethodDef Billiard_module_methods[] = { + {"address_of_buffer", Billiard_multiprocessing_address_of_buffer, METH_O, + "address_of_buffer(obj) -> int\n\n" +- "Return address of obj assuming obj supports buffer inteface"}, ++ "Return address of obj assuming obj supports buffer interface"}, + #if HAVE_FD_TRANSFER + {"sendfd", Billiard_multiprocessing_sendfd, METH_VARARGS, + "sendfd(sockfd, fd) -> None\n\n" diff -Nru billiard-3.3.0.21/debian/patches/exclude_funtests_package.patch billiard-3.3.0.22/debian/patches/exclude_funtests_package.patch --- billiard-3.3.0.21/debian/patches/exclude_funtests_package.patch 2015-11-18 21:27:25.000000000 +0000 +++ billiard-3.3.0.22/debian/patches/exclude_funtests_package.patch 2015-12-20 08:14:26.000000000 +0000 @@ -1,4 +1,4 @@ -From 0c4a9488de28e4bee8692f18d6f61ea22a05dcbb Mon Sep 17 00:00:00 2001 +From 9eec445c6b62b3b5318e7309ae3e281a1d073773 Mon Sep 17 00:00:00 2001 From: Michael Fladischer Date: Thu, 8 Oct 2015 08:33:14 -0700 Subject: Do not install install funtests package diff -Nru billiard-3.3.0.21/debian/patches/hurd.patch billiard-3.3.0.22/debian/patches/hurd.patch --- billiard-3.3.0.21/debian/patches/hurd.patch 2015-11-18 21:27:25.000000000 +0000 +++ billiard-3.3.0.22/debian/patches/hurd.patch 2015-12-20 08:14:26.000000000 +0000 @@ -1,4 +1,4 @@ -From db1805a13b2e47657f2b1a8ec5c30992189082a2 Mon Sep 17 00:00:00 2001 +From a6de130688f60765ddae12f777aed58ed2ba223c Mon Sep 17 00:00:00 2001 From: Michael Fladischer Date: Thu, 8 Oct 2015 08:33:15 -0700 Subject: Add configuration for GNU/Hurd when building. diff -Nru billiard-3.3.0.21/debian/patches/series billiard-3.3.0.22/debian/patches/series --- billiard-3.3.0.21/debian/patches/series 2015-11-18 21:27:24.000000000 +0000 +++ billiard-3.3.0.22/debian/patches/series 2015-12-20 08:14:26.000000000 +0000 @@ -1,3 +1,4 @@ spelling.patch exclude_funtests_package.patch hurd.patch +0004-Fix-spelling-error-in-multiprocessing.c.patch diff -Nru billiard-3.3.0.21/debian/patches/spelling.patch billiard-3.3.0.22/debian/patches/spelling.patch --- billiard-3.3.0.21/debian/patches/spelling.patch 2015-11-18 21:27:25.000000000 +0000 +++ billiard-3.3.0.22/debian/patches/spelling.patch 2015-12-20 08:14:26.000000000 +0000 @@ -1,4 +1,4 @@ -From 5723b8528e2cac4a50bee6f3f4e2bbbf62c16689 Mon Sep 17 00:00:00 2001 +From 82a677c4d666dde298c90c2dbcb48216c4be0ac0 Mon Sep 17 00:00:00 2001 From: Michael Fladischer Date: Thu, 8 Oct 2015 08:33:13 -0700 Subject: Fix spelling error in upstream diff -Nru billiard-3.3.0.21/PKG-INFO billiard-3.3.0.22/PKG-INFO --- billiard-3.3.0.21/PKG-INFO 2015-10-26 18:40:19.000000000 +0000 +++ billiard-3.3.0.22/PKG-INFO 2015-12-08 22:39:18.000000000 +0000 @@ -1,6 +1,6 @@ Metadata-Version: 1.1 Name: billiard -Version: 3.3.0.21 +Version: 3.3.0.22 Summary: Python multiprocessing fork with improvements and bugfixes Home-page: http://github.com/celery/billiard Author: Ask Solem @@ -9,7 +9,7 @@ Description: ======== billiard ======== - :version: 3.3.0.21 + :version: 3.3.0.22 About ----- @@ -50,6 +50,11 @@ Changes =========== + 3.3.0.22 - 2015-12-08 + --------------------- + + - Wheel packages for Windows now available. + 3.3.0.21 - 2015-10-26 --------------------- diff -Nru billiard-3.3.0.21/README.rst billiard-3.3.0.22/README.rst --- billiard-3.3.0.21/README.rst 2015-10-26 18:33:57.000000000 +0000 +++ billiard-3.3.0.22/README.rst 2015-12-08 22:36:22.000000000 +0000 @@ -1,7 +1,7 @@ ======== billiard ======== -:version: 3.3.0.21 +:version: 3.3.0.22 About ----- diff -Nru billiard-3.3.0.21/requirements/test.txt billiard-3.3.0.22/requirements/test.txt --- billiard-3.3.0.21/requirements/test.txt 2015-09-09 18:37:15.000000000 +0000 +++ billiard-3.3.0.22/requirements/test.txt 2015-12-08 22:35:25.000000000 +0000 @@ -1,3 +1,4 @@ +setuptools>=17.1 unittest2>=0.4.0 nose>=1.3.4 mock