mirror of
https://github.com/python/cpython.git
synced 2024-11-28 16:45:42 +01:00
fab8ab8067
'verbose' flag ala GvR updated test harness architecture. Old way: verbose = 0 if __name__ == '__main__': verbose = 1 New way: from test_support import verbose Some other small readablility and functionality updates.
35 lines
611 B
Python
Executable File
35 lines
611 B
Python
Executable File
#! /usr/bin/env python
|
|
"""Test script for the dbm module
|
|
Roger E. Masse
|
|
"""
|
|
import dbm
|
|
from dbm import error
|
|
from test_support import verbose
|
|
|
|
filename= '/tmp/delete_me'
|
|
|
|
d = dbm.open(filename, 'c')
|
|
d['a'] = 'b'
|
|
d['12345678910'] = '019237410982340912840198242'
|
|
d.keys()
|
|
if d.has_key('a'):
|
|
if verbose:
|
|
print 'Test dbm keys: ', d.keys()
|
|
|
|
d.close()
|
|
d = dbm.open(filename, 'r')
|
|
d.close()
|
|
d = dbm.open(filename, 'rw')
|
|
d.close()
|
|
d = dbm.open(filename, 'w')
|
|
d.close()
|
|
d = dbm.open(filename, 'n')
|
|
d.close()
|
|
|
|
try:
|
|
import os
|
|
os.unlink(filename + '.dir')
|
|
os.unlink(filename + '.pag')
|
|
except:
|
|
pass
|