From 0e4a47f12834b203a77b9802afa919a562062114 Mon Sep 17 00:00:00 2001 From: Alan Conway Date: Tue, 6 Apr 2010 18:26:22 +0000 Subject: Remove non-portable @staticmethod from qpid/datatypes.py git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@931262 13f79535-47bb-0310-9956-ffa450edef68 --- qpid/python/qpid/datatypes.py | 12 +++++------- 1 file changed, 5 insertions(+), 7 deletions(-) (limited to 'qpid/python') diff --git a/qpid/python/qpid/datatypes.py b/qpid/python/qpid/datatypes.py index fc267c48ef..c37929394c 100644 --- a/qpid/python/qpid/datatypes.py +++ b/qpid/python/qpid/datatypes.py @@ -308,17 +308,15 @@ except ImportError: def uuid4(): return UUID(random_uuid()) -class UUID: +def parseUUID(str): + fields=str.split("-") + fields[4:5] = [fields[4][:4], fields[4][4:]] + return UUID(struct.pack("!LHHHHL", *[int(x,16) for x in fields])) +class UUID: def __init__(self, bytes): self.bytes = bytes - @staticmethod - def parse(str): - fields=str.split("-") - fields[4:5] = [fields[4][:4], fields[4][4:]] - return UUID(struct.pack("!LHHHHL", *[int(x,16) for x in fields])) - def __cmp__(self, other): if isinstance(other, UUID): return cmp(self.bytes, other.bytes) -- cgit v1.2.1