[Python-modules-commits] [parallelpython] 01/09: Import parallelpython_1.6.5.orig.tar.gz

Sandro Tosi morph at moszumanska.debian.org
Mon Apr 25 18:41:40 UTC 2016


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

morph pushed a commit to branch master
in repository parallelpython.

commit f30674dc836307d7bab169da7be9134fc762cd54
Author: Sandro Tosi <morph at debian.org>
Date:   Mon Apr 25 19:27:39 2016 +0100

    Import parallelpython_1.6.5.orig.tar.gz
---
 CHANGELOG      | 3 +++
 PKG-INFO       | 6 +++---
 pp.py          | 7 ++++---
 ppauto.py      | 2 +-
 ppcommon.py    | 2 +-
 ppserver.py    | 2 +-
 pptransport.py | 2 +-
 ppworker.py    | 2 +-
 8 files changed, 15 insertions(+), 11 deletions(-)

diff --git a/CHANGELOG b/CHANGELOG
index c2f5bb2..80dd9b0 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -1,3 +1,6 @@
+pp-1.6.5:
+    1) Fixed bug in search path order. 
+
 pp-1.6.4:
     1) Start ppworker using -m
     2) Fixed windows compatibility issue.
diff --git a/PKG-INFO b/PKG-INFO
index 7e35643..22253bc 100644
--- a/PKG-INFO
+++ b/PKG-INFO
@@ -1,12 +1,12 @@
-Metadata-Version: 1.0
+Metadata-Version: 1.1
 Name: pp
-Version: 1.6.4
+Version: 1.6.5
 Summary: Parallel and distributed programming for Python
 Home-page: http://www.parallelpython.com
 Author: Vitalii Vanovschi
 Author-email: support at parallelpython.com
 License: BSD-like
-Download-URL: http://www.parallelpython.com/downloads/pp/pp-1.6.4.zip
+Download-URL: http://www.parallelpython.com/downloads/pp/pp-1.6.5.zip
 Description: 
         Parallel Python module (PP) provides an easy and efficient way to create parallel-enabled applications for SMP computers and clusters. PP module features cross-platform portability and dynamic load balancing. Thus application written with PP will parallelize efficiently even on heterogeneous and multi-platform clusters (including clusters running other application with variable CPU loads). Visit http://www.parallelpython.com for further information.
         
diff --git a/pp.py b/pp.py
index 9d9a930..936c68d 100644
--- a/pp.py
+++ b/pp.py
@@ -45,7 +45,7 @@ import ppauto
 import ppcommon
 
 copyright = "Copyright (c) 2005-2012 Vitalii Vanovschi. All rights reserved"
-version = "1.6.4"
+version = "1.6.5"
 
 # Reconnect persistent rworkers in seconds.
 RECONNECT_WAIT_TIME = 5
@@ -332,8 +332,9 @@ class Server(object):
         pythondirs = [os.getcwd()] + sys.path
 
         if "PYTHONPATH" in os.environ and os.environ["PYTHONPATH"]:
-            pythondirs += os.environ["PYTHONPATH"].split(os.pathsep)
-        os.environ["PYTHONPATH"] = os.pathsep.join(set(pythondirs))
+            pythondirs = os.environ["PYTHONPATH"].split(os.pathsep) + pythondirs
+        dirset = set()        
+        os.environ["PYTHONPATH"] = os.pathsep.join([dirset.add(x) or x for x in pythondirs if x not in dirset])
 
         atexit.register(self.destroy)
         self.__stats = {"local": _Statistics(0)}
diff --git a/ppauto.py b/ppauto.py
index a6addab..e57bddf 100644
--- a/ppauto.py
+++ b/ppauto.py
@@ -37,7 +37,7 @@ import threading
 import ppcommon
 
 copyright = "Copyright (c) 2005-2012 Vitalii Vanovschi. All rights reserved"
-version = "1.6.4"
+version = "1.6.5"
 
 # broadcast every 10 sec
 BROADCAST_INTERVAL = 10
diff --git a/ppcommon.py b/ppcommon.py
index f762702..bc2c89a 100644
--- a/ppcommon.py
+++ b/ppcommon.py
@@ -33,7 +33,7 @@ forums
 import threading
 
 copyright = "Copyright (c) 2005-2012 Vitalii Vanovschi. All rights reserved"
-version = "1.6.4"
+version = "1.6.5"
 
 def start_thread(name,  target,  args=(),  kwargs={},  daemon=True):
     """Starts a thread"""
diff --git a/ppserver.py b/ppserver.py
index 0be228c..c2641ae 100755
--- a/ppserver.py
+++ b/ppserver.py
@@ -50,7 +50,7 @@ import ppcommon
 import pptransport
 
 copyright = "Copyright (c) 2005-2012 Vitalii Vanovschi. All rights reserved"
-version = "1.6.4"
+version = "1.6.5"
 
 LISTEN_SOCKET_TIMEOUT = 20
 
diff --git a/pptransport.py b/pptransport.py
index 7b822cd..dd27f86 100644
--- a/pptransport.py
+++ b/pptransport.py
@@ -37,7 +37,7 @@ import struct
 import types
 
 copyright = "Copyright (c) 2005-2012 Vitalii Vanovschi. All rights reserved"
-version = "1.6.4"
+version = "1.6.5"
 
 
 # compartibility with Python 2.6
diff --git a/ppworker.py b/ppworker.py
index 60e7797..b14319f 100644
--- a/ppworker.py
+++ b/ppworker.py
@@ -36,7 +36,7 @@ import cPickle as pickle
 import pptransport
 
 copyright = "Copyright (c) 2005-2012 Vitalii Vanovschi. All rights reserved"
-version = "1.6.4"
+version = "1.6.5"
 
 
 def preprocess(msg):

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



More information about the Python-modules-commits mailing list