Author: Armin Rigo <[email protected]>
Branch: 
Changeset: r80470:a49a3f9c9805
Date: 2015-10-27 23:53 +0100
http://bitbucket.org/pypy/pypy/changeset/a49a3f9c9805/

Log:    Issue #2169: fix (not tested, unsure if it's worth the effort, see
        issue)

diff --git a/lib_pypy/dbm.py b/lib_pypy/dbm.py
--- a/lib_pypy/dbm.py
+++ b/lib_pypy/dbm.py
@@ -149,6 +149,7 @@
 _init_func('store', (c_void_p, datum, datum, c_int), restype=c_int)
 _init_func('error', (c_void_p,), restype=c_int)
 _init_func('delete', (c_void_p, datum), restype=c_int)
+_init_func('clearerr', (c_void_p,), restype=c_int)
 
 lib.DBM_INSERT = 0
 lib.DBM_REPLACE = 1
_______________________________________________
pypy-commit mailing list
[email protected]
https://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to