diff options
author | Neal Norwitz <nnorwitz@gmail.com> | 2007-08-29 05:52:49 (GMT) |
---|---|---|
committer | Neal Norwitz <nnorwitz@gmail.com> | 2007-08-29 05:52:49 (GMT) |
commit | 39dce30b4c6749731911ca7ed518c2ea706c15ea (patch) | |
tree | fddf339ff0d036311addda47da70498154383f18 /Lib/bsddb/test/test_dbtables.py | |
parent | e14841c19e284d05643370560d9d1b07ad87e658 (diff) | |
download | cpython-39dce30b4c6749731911ca7ed518c2ea706c15ea.zip cpython-39dce30b4c6749731911ca7ed518c2ea706c15ea.tar.gz cpython-39dce30b4c6749731911ca7ed518c2ea706c15ea.tar.bz2 |
Get test_bsddb3 passing
Diffstat (limited to 'Lib/bsddb/test/test_dbtables.py')
-rw-r--r-- | Lib/bsddb/test/test_dbtables.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/bsddb/test/test_dbtables.py b/Lib/bsddb/test/test_dbtables.py index ddb9644..149f3bd 100644 --- a/Lib/bsddb/test/test_dbtables.py +++ b/Lib/bsddb/test/test_dbtables.py @@ -326,7 +326,7 @@ class TableDBTestCase(unittest.TestCase): return type def increment_access(count): - return bytes(str(int(count)+1)) + return str(int(count)+1).encode('ascii') def remove_value(value): return None |