Removing TODO comment for None keys, as suggested by Neal Norwitz.

This commit is contained in:
Gustavo Niemeyer 2004-01-20 15:24:29 +00:00
parent 8974f72b81
commit f073b7584f
1 changed files with 1 additions and 1 deletions

View File

@ -348,7 +348,7 @@ make_key_dbt(DBObject* self, PyObject* keyobj, DBT* key, int* pflags)
int type;
CLEAR_DBT(*key);
if (keyobj == Py_None) { /* TODO: is None really okay for keys? */
if (keyobj == Py_None) {
type = _DB_get_type(self);
if (type == -1)
return 0;