Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > comp.lang.python > #27555
| From | Oscar Benjamin <oscar.j.benjamin@gmail.com> |
|---|---|
| Subject | Re: Class.__class__ magic trick help |
| Date | 2012-08-21 08:40 +0100 |
| References | <21067364-7b9c-4415-bad1-947961497343@u20g2000yqc.googlegroups.com> <mailman.3576.1345488010.4697.python-list@python.org> <bd3da121-f77c-49b3-a9d5-ae1aebbd9398@r10g2000yqm.googlegroups.com> <8dc49931-de0d-4ce3-8b0d-8789bc8c07c8@w9g2000yqe.googlegroups.com> |
| Newsgroups | comp.lang.python |
| Message-ID | <mailman.3593.1345534858.4697.python-list@python.org> (permalink) |
On Mon, 20 Aug 2012 21:17:15 -0700 (PDT), Massimo Di Pierro
<massimo.dipierro@gmail.com> wrote:
> Consider this code:
> class SlowStorage(dict):
> def __getattr__(self,key):
> return self[key]
> def __setattr__(self,key):
> self[key]=value
> class FastStorage(dict):
> def __init__(self, __d__=None, **kwargs):
> self.update(__d__,**kwargs)
> def __getitem__(self,key):
> return self.__dict__.get(key,None)
> def __setitem__(self,key,value):
> self.__dict__[key] = value
> def __delitem__(self,key):
> delattr(self,key)
> def __copy__(self):
> return Storage(self)
> def __nonzero__(self):
> return len(self.__dict__)>0
> def pop(self,key,default=None):
> if key in self:
> default = getattr(self,key)
> delattr(self,key)
> return default
> def clear(self):
> self.__dict__.clear()
> def __repr__(self):
> return repr(self.__dict__)
> def keys(self):
> return self.__dict__.keys()
> def values(self):
> return self.__dict__.values()
> def items(self):
> return self.__dict__.items()
> def iterkeys(self):
> return self.__dict__.iterkeys()
> def itervalues(self):
> return self.__dict__.itervalues()
> def iteritems(self):
> return self.__dict__.iteritems()
> def viewkeys(self):
> return self.__dict__.viewkeys()
> def viewvalues(self):
> return self.__dict__.viewvalues()
> def viewitems(self):
> return self.__dict__.viewitems()
> def fromkeys(self,S,v=None):
> return self.__dict__.fromkeys(S,v)
> def setdefault(self, key, default=None):
> try:
> return getattr(self,key)
> except AttributeError:
> setattr(self,key,default)
> return default
> def clear(self):
> self.__dict__.clear()
> def len(self):
> return len(self.__dict__)
> def __iter__(self):
> return self.__dict__.__iter__()
> def has_key(self,key):
> return key in self.__dict__
> def __contains__(self,key):
> return key in self.__dict__
> def update(self,__d__=None,**kwargs):
> if __d__:
> for key in __d__:
> kwargs[key] = __d__[key]
> self.__dict__.update(**kwargs)
> def get(self,key,default=None):
> return getattr(self,key) if key in self else default
> >>> s=SlowStorage()
> >>> a.x=1 ### (1)
> >>> a.x ### (2)
> 1 # ok
> >>> isinstance(a,dict)
> True # ok
> >>> print dict(a)
> {'x':1} # ok (3)
Try:
>>> a.items()
What does that show?
> >>> s=FastStorage()
> >>> a.x=1 ### (4)
> >>> a.x ### (5)
> 1 # ok
> >>> isinstance(a,dict)
> True # ok
> >>> print dict(a)
> {} # not ok (6)
> Lines (4) and (5) are about 10x faster then lines (1) and (2). I
like
> FastStorage better but while (3) behaves ok, (6) does not behave as
I
> want.
> I intuitively understand why FastStorage is cannot cast into dict
> properly.
> What I do not know is how to make it do the casting properly without
> losing the 10x speedup of FastStorage over SlowStorage.
> Any idea?
I don't really understand what your trying to do but since you didn't
add the __setattr__ method to FastStorage the item is not added to
the dictionary when you do a.x = 1
Oscar
Back to comp.lang.python | Previous | Next — Previous in thread | Next in thread | Find similar | Unroll thread
Class.__class__ magic trick help Massimo Di Pierro <massimo.dipierro@gmail.com> - 2012-08-20 11:01 -0700
Re: Class.__class__ magic trick help Steven D'Aprano <steve+comp.lang.python@pearwood.info> - 2012-08-20 18:21 +0000
Re: Class.__class__ magic trick help Ian Kelly <ian.g.kelly@gmail.com> - 2012-08-20 12:39 -0600
Re: Class.__class__ magic trick help Massimo Di Pierro <massimo.dipierro@gmail.com> - 2012-08-20 12:28 -0700
Re: Class.__class__ magic trick help Massimo Di Pierro <massimo.dipierro@gmail.com> - 2012-08-20 21:17 -0700
Re: Class.__class__ magic trick help Oscar Benjamin <oscar.j.benjamin@gmail.com> - 2012-08-21 08:40 +0100
Re: Class.__class__ magic trick help Massimo Di Pierro <massimo.dipierro@gmail.com> - 2012-08-21 05:52 -0700
Re: Class.__class__ magic trick help Massimo Di Pierro <massimo.dipierro@gmail.com> - 2012-08-21 06:50 -0700
csiph-web