summaryrefslogtreecommitdiff
path: root/Lib/test/test_whichdb.py
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>2002-08-22 20:22:16 +0000
committerGuido van Rossum <guido@python.org>2002-08-22 20:22:16 +0000
commit2b51c6ac2734242701f4196321536d1e9879b7c3 (patch)
treed15d652497be3b8a17fb2e7b0de79a5054f91762 /Lib/test/test_whichdb.py
parenta9f66066cb1e6c36d2547a1c5db1407c43169081 (diff)
downloadcpython-2b51c6ac2734242701f4196321536d1e9879b7c3.tar.gz
Standardize behavior: no docstrings in test functions.
Diffstat (limited to 'Lib/test/test_whichdb.py')
-rw-r--r--Lib/test/test_whichdb.py7
1 files changed, 3 insertions, 4 deletions
diff --git a/Lib/test/test_whichdb.py b/Lib/test/test_whichdb.py
index 2f1a3a2f09..000c999365 100644
--- a/Lib/test/test_whichdb.py
+++ b/Lib/test/test_whichdb.py
@@ -42,10 +42,9 @@ for name in anydbm._names:
except ImportError:
continue
- def test_whichdb_name(self,name=name,mod=mod):
- """Check whether whichdb correctly guesses module name
- for databases opened with module mod.
- """
+ def test_whichdb_name(self, name=name, mod=mod):
+ # Check whether whichdb correctly guesses module name
+ # for databases opened with module mod.
f = mod.open(_fname, 'c')
f["1"] = "1"
f.close()