diff options
author | Martin v. Löwis <martin@v.loewis.de> | 2007-08-08 22:08:30 (GMT) |
---|---|---|
committer | Martin v. Löwis <martin@v.loewis.de> | 2007-08-08 22:08:30 (GMT) |
commit | 918f49e645474382251bfddbb0a2e030051083ef (patch) | |
tree | 01fada4bbee6dd26f5503a7a7295b1c9f9f63a9c /Lib/bsddb/dbtables.py | |
parent | eb29e9ab2b037db198591a9cacb5993385c7f83d (diff) | |
download | cpython-918f49e645474382251bfddbb0a2e030051083ef.zip cpython-918f49e645474382251bfddbb0a2e030051083ef.tar.gz cpython-918f49e645474382251bfddbb0a2e030051083ef.tar.bz2 |
Fix most of the bsddb3 tests.
Diffstat (limited to 'Lib/bsddb/dbtables.py')
-rw-r--r-- | Lib/bsddb/dbtables.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/bsddb/dbtables.py b/Lib/bsddb/dbtables.py index 690e280..fda1273 100644 --- a/Lib/bsddb/dbtables.py +++ b/Lib/bsddb/dbtables.py @@ -90,8 +90,8 @@ class LikeCond(Cond): # # keys used to store database metadata # -_table_names_key = '__TABLE_NAMES__' # list of the tables in this db -_columns = '._COLUMNS__' # table_name+this key contains a list of columns +_table_names_key = b'__TABLE_NAMES__' # list of the tables in this db +_columns = b'._COLUMNS__' # table_name+this key contains a list of columns def _columns_key(table): return table + _columns |