diff -r 68ec7b9e09a4 -r 59b3639df0a9 mercurial/revlog.py --- a/mercurial/revlog.py Thu Nov 17 19:38:57 2005 +0100 +++ b/mercurial/revlog.py Fri Nov 18 22:48:47 2005 -0800 @@ -52,7 +52,7 @@ indexformat = ">4l20s20s20s" -class lazyparser: +class lazyparser(object): """ this class avoids the need to parse the entirety of large indices @@ -94,7 +94,7 @@ self.map[e[6]] = i i += 1 -class lazyindex: +class lazyindex(object): """a lazy version of the index array""" def __init__(self, parser): self.p = parser @@ -114,7 +114,7 @@ def trunc(self, pos): self.p.trunc(pos) -class lazymap: +class lazymap(object): """a lazy version of the node map""" def __init__(self, parser): self.p = parser @@ -152,7 +152,7 @@ class RevlogError(Exception): pass -class revlog: +class revlog(object): """ the underlying revision storage object