diff options
author | Gustavo Niemeyer <gustavo@niemeyer.net> | 2004-01-20 15:24:29 (GMT) |
---|---|---|
committer | Gustavo Niemeyer <gustavo@niemeyer.net> | 2004-01-20 15:24:29 (GMT) |
commit | f073b7584f5f1c9a82f80ed55224678fb3262640 (patch) | |
tree | 327e4aa79b9e96b45afb31f607b2d5ad9690ad10 /Modules | |
parent | 8974f72b81229a39f130cb6f1528b5774412f74e (diff) | |
download | cpython-f073b7584f5f1c9a82f80ed55224678fb3262640.zip cpython-f073b7584f5f1c9a82f80ed55224678fb3262640.tar.gz cpython-f073b7584f5f1c9a82f80ed55224678fb3262640.tar.bz2 |
Removing TODO comment for None keys, as suggested by Neal Norwitz.
Diffstat (limited to 'Modules')
-rw-r--r-- | Modules/_bsddb.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/_bsddb.c b/Modules/_bsddb.c index b9259d6..a503a80 100644 --- a/Modules/_bsddb.c +++ b/Modules/_bsddb.c @@ -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; |