init_bsddb(): Added a few symbols that Greg forgot.

This commit is contained in:
Barry Warsaw 2003-03-31 19:51:29 +00:00
parent 56fbcb525b
commit 1baa982c31
1 changed files with 4 additions and 1 deletions

View File

@ -4518,7 +4518,10 @@ DL_EXPORT(void) init_bsddb(void)
ADD_INT(d, ENOENT);
ADD_INT(d, EPERM);
#if (DBVER >= 40)
ADD_INT(d, DB_SET_LOCK_TIMEOUT);
ADD_INT(d, DB_SET_TXN_TIMEOUT);
#endif
/* The base exception class is DBError */
DBError = PyErr_NewException("bsddb._db.DBError", NULL, NULL);