Move brief descriptions of what() and whathdr() to docstrings in the
functions (from comments).
diff --git a/Lib/sndhdr.py b/Lib/sndhdr.py
index d9f8372..b2cdd30 100644
--- a/Lib/sndhdr.py
+++ b/Lib/sndhdr.py
@@ -31,20 +31,14 @@
 # subroutine come last.
 
 
-#--------------------------------#
-# Guess the type of a sound file #
-#--------------------------------#
-
 def what(filename):
+	"""Guess the type of a sound file"""
 	res = whathdr(filename)
 	return res
 
 
-#-------------------------#
-# Recognize sound headers #
-#-------------------------#
-
 def whathdr(filename):
+	"""Recognize sound headers"""
 	f = open(filename, 'r')
 	h = f.read(512)
 	for tf in tests: