Removed Acquire, which I won't be using anymore.

This commit is contained in:
Jeremy Fincher 2005-07-21 05:04:31 +00:00
parent 45c7f773ac
commit 1aa73acd8d
1 changed files with 0 additions and 9 deletions

View File

@ -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'