summaryrefslogtreecommitdiff
path: root/qpid/python/qpid/datatypes.py
diff options
context:
space:
mode:
Diffstat (limited to 'qpid/python/qpid/datatypes.py')
-rw-r--r--qpid/python/qpid/datatypes.py6
1 files changed, 4 insertions, 2 deletions
diff --git a/qpid/python/qpid/datatypes.py b/qpid/python/qpid/datatypes.py
index 61643715e4..e4cbcb7f10 100644
--- a/qpid/python/qpid/datatypes.py
+++ b/qpid/python/qpid/datatypes.py
@@ -290,9 +290,11 @@ try:
def random_uuid():
return uuid.uuid4().get_bytes()
except ImportError:
- import random
+ import os, random, socket, time
+ rand = random.Random()
+ rand.seed((os.getpid(), time.time(), socket.gethostname()))
def random_uuid():
- bytes = [random.randint(0, 255) for i in xrange(16)]
+ bytes = [rand.randint(0, 255) for i in xrange(16)]
# From RFC4122, the version bits are set to 0100
bytes[7] &= 0x0F