Standardize behavior: no docstrings in test functions.
diff --git a/Lib/test/test_whichdb.py b/Lib/test/test_whichdb.py
index 2f1a3a2..000c999 100644
--- a/Lib/test/test_whichdb.py
+++ b/Lib/test/test_whichdb.py
@@ -42,10 +42,9 @@
     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()