From 1aa73acd8d26a2dac69a961b55c31616b168cbd2 Mon Sep 17 00:00:00 2001 From: Jeremy Fincher Date: Thu, 21 Jul 2005 05:04:31 +0000 Subject: [PATCH] Removed Acquire, which I won't be using anymore. --- src/utils/python.py | 9 --------- 1 file changed, 9 deletions(-) diff --git a/src/utils/python.py b/src/utils/python.py index 37e5bee7b..3537c4ae2 100644 --- a/src/utils/python.py +++ b/src/utils/python.py @@ -54,15 +54,6 @@ class TupleSubclass(type): return super(TupleSubclass, cls).__new__(cls, name, bases, dict) -class Acquire(object): - # Mixin for acquiring attributes from parents. - def __init__(self, attr): - self.__parent = attr - - def __getattr__(self, attr): - return getattr(self.__parent, attr) - - class Synchronized(type): METHODS = '__synchronized__' LOCK = '_Synchronized_rlock'