Mercurial > hg
diff mercurial/revlog.py @ 1322:b3d44e9b3092
Make revlog constructor more discerning in its treatment of errors.
author | Bryan O'Sullivan <bos@serpentine.com> |
---|---|
date | Thu, 22 Sep 2005 23:31:44 -0700 |
parents | eb3cc5e2eb89 |
children | 57220daf40e9 |
line wrap: on
line diff
--- a/mercurial/revlog.py Thu Sep 22 23:19:47 2005 -0700 +++ b/mercurial/revlog.py Thu Sep 22 23:31:44 2005 -0700 @@ -10,9 +10,9 @@ of the GNU General Public License, incorporated herein by reference. """ -import zlib, struct, sha, binascii, heapq -import mdiff from node import * +from demandload import demandload +demandload(globals(), "binascii errno heapq mdiff sha struct urllib2 zlib") def hash(text, p1, p2): """generate a hash from the given text and its parent hashes @@ -179,7 +179,11 @@ try: i = self.opener(self.indexfile).read() - except IOError: + except urllib2.URLError: + raise + except IOError, inst: + if inst.errno != errno.ENOENT: + raise i = "" if len(i) > 10000: