Author: Philip Jenvey <[email protected]>
Branch: py3k
Changeset: r72011:b9f9b88bc64f
Date: 2014-06-09 10:36 -0700
http://bitbucket.org/pypy/pypy/changeset/b9f9b88bc64f/

Log:    now an IOError subclass

diff --git a/lib_pypy/_gdbm.py b/lib_pypy/_gdbm.py
--- a/lib_pypy/_gdbm.py
+++ b/lib_pypy/_gdbm.py
@@ -47,7 +47,7 @@
     # failure must be due to missing gdbm dev libs
     raise ImportError('%s: %s' %(e.__class__.__name__, e))
 
-class error(Exception):
+class error(IOError):
     pass
 
 def _fromstr(key):
_______________________________________________
pypy-commit mailing list
[email protected]
https://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to