Hi, > http://hg.python.org/cpython/rev/57c076ab4bbd > user: Łukasz Langa <luk...@langa.pl>
> --- a/Lib/test/test_cfgparser.py > +++ b/Lib/test/test_cfgparser.py > @@ -20,10 +20,16 @@ > def values(self): > return [i[1] for i in self.items()] > > - def iteritems(self): return iter(self.items()) > - def iterkeys(self): return iter(self.keys()) > + def iteritems(self): > + return iter(self.items()) > + > + def iterkeys(self): > + return iter(self.keys()) > + > + def itervalues(self): > + return iter(self.values()) > + The dict methods in that subclass could probably be cleaned up. Regards _______________________________________________ Python-Dev mailing list Python-Dev@python.org http://mail.python.org/mailman/listinfo/python-dev Unsubscribe: http://mail.python.org/mailman/options/python-dev/archive%40mail-archive.com