pprint(d.stat())
for x in letters:
- d.append(bytes(x) * 40)
+ d.append(x.encode('ascii') * 40)
assert len(d) == 52
pprint(d.stat())
for x in letters:
- d.append(bytes(x) * 40)
+ d.append(x.encode('ascii') * 40)
assert len(d) == 52
d.open(self.filename, db.DB_RECNO, db.DB_CREATE)
for x in letters:
- recno = d.append(bytes(x) * 60)
+ recno = d.append(x.encode('ascii') * 60)
assert type(recno) == type(0)
assert recno >= 1
if verbose:
data = "The quick brown fox jumped over the lazy dog".split()
for datum in data:
- d.append(bytes(datum))
+ d.append(datum.encode('ascii'))
d.sync()
d.close()
d.open(self.filename, db.DB_RECNO, db.DB_CREATE)
for x in letters:
- d.append(bytes(x) * 35) # These will be padded
+ d.append(x.encode('ascii') * 35) # These will be padded
d.append(b'.' * 40) # this one will be exact