Removed TupleSubclass, which wasn't being used.

This commit is contained in:
Jeremy Fincher 2005-07-21 18:32:41 +00:00
parent 17afef9c30
commit f8156cc9cc
1 changed files with 0 additions and 11 deletions

View File

@ -43,17 +43,6 @@ class Object(object):
return not self == other
class TupleSubclass(type):
def __new__(cls, name, bases, dict):
assert tuple in bases
assert '__attrs__' in dict
for (i, attr) in enumerate(dict['__attrs__']):
dict[attr] = property(lambda self, i=i: self[i])
del dict['__attrs__']
# XXX Check the length of the iterable given.
return super(TupleSubclass, cls).__new__(cls, name, bases, dict)
class Synchronized(type):
METHODS = '__synchronized__'
LOCK = '_Synchronized_rlock'