[Python-modules-commits] [billiard] 01/09: Import billiard_3.3.0.22.orig.tar.gz

Michael Fladischer fladi at moszumanska.debian.org
Sun Dec 20 08:25:30 UTC 2015


This is an automated email from the git hooks/post-receive script.

fladi pushed a commit to branch master
in repository billiard.

commit 9551eb2f18a749165613a493723b0d896c5f5f6a
Author: Michael Fladischer <FladischerMichael at fladi.at>
Date:   Sat Dec 19 21:38:09 2015 +0100

    Import billiard_3.3.0.22.orig.tar.gz
---
 CHANGES.txt                   |  5 +++++
 PKG-INFO                      |  9 +++++++--
 README.rst                    |  2 +-
 billiard.egg-info/PKG-INFO    |  9 +++++++--
 billiard/__init__.py          |  2 +-
 billiard/py3/connection.py    | 11 +++++------
 billiard/tests/test_common.py |  6 ++++++
 requirements/test.txt         |  1 +
 8 files changed, 33 insertions(+), 12 deletions(-)

diff --git a/CHANGES.txt b/CHANGES.txt
index ee7934d..aacdffe 100644
--- a/CHANGES.txt
+++ b/CHANGES.txt
@@ -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 --git a/PKG-INFO b/PKG-INFO
index a863d2e..63e0792 100644
--- a/PKG-INFO
+++ b/PKG-INFO
@@ -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 @@ License: BSD
 Description: ========
         billiard
         ========
-        :version: 3.3.0.21
+        :version: 3.3.0.22
         
         About
         -----
@@ -50,6 +50,11 @@ Description: ========
         Changes
         ===========
         
+        3.3.0.22 - 2015-12-08
+        ---------------------
+        
+        - Wheel packages for Windows now available.
+        
         3.3.0.21 - 2015-10-26
         ---------------------
         
diff --git a/README.rst b/README.rst
index 8bf8a2e..48d5aa1 100644
--- a/README.rst
+++ b/README.rst
@@ -1,7 +1,7 @@
 ========
 billiard
 ========
-:version: 3.3.0.21
+:version: 3.3.0.22
 
 About
 -----
diff --git a/billiard.egg-info/PKG-INFO b/billiard.egg-info/PKG-INFO
index a863d2e..63e0792 100644
--- a/billiard.egg-info/PKG-INFO
+++ b/billiard.egg-info/PKG-INFO
@@ -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 @@ License: BSD
 Description: ========
         billiard
         ========
-        :version: 3.3.0.21
+        :version: 3.3.0.22
         
         About
         -----
@@ -50,6 +50,11 @@ Description: ========
         Changes
         ===========
         
+        3.3.0.22 - 2015-12-08
+        ---------------------
+        
+        - Wheel packages for Windows now available.
+        
         3.3.0.21 - 2015-10-26
         ---------------------
         
diff --git a/billiard/__init__.py b/billiard/__init__.py
index dff7256..af2d8ba 100644
--- a/billiard/__init__.py
+++ b/billiard/__init__.py
@@ -35,7 +35,7 @@ from .exceptions import (  # noqa
 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 at python.org'
diff --git a/billiard/py3/connection.py b/billiard/py3/connection.py
index 385ef72..bfce702 100644
--- a/billiard/py3/connection.py
+++ b/billiard/py3/connection.py
@@ -27,15 +27,14 @@ from ..reduction import ForkingPickler
 
 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 --git a/billiard/tests/test_common.py b/billiard/tests/test_common.py
index 1b6e4c0..e15a10f 100644
--- a/billiard/tests/test_common.py
+++ b/billiard/tests/test_common.py
@@ -2,10 +2,12 @@ from __future__ import absolute_import
 
 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 @@ def termsigs(default, full):
 
 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 --git a/requirements/test.txt b/requirements/test.txt
index 2208343..1b2f0e2 100644
--- a/requirements/test.txt
+++ b/requirements/test.txt
@@ -1,3 +1,4 @@
+setuptools>=17.1
 unittest2>=0.4.0
 nose>=1.3.4
 mock

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/python-modules/packages/billiard.git



More information about the Python-modules-commits mailing list