advice on docstrings.
This fixes SF bug #495601.
\begin{verbatim}
>>> def fib(n): # write Fibonacci series up to n
-... "Print a Fibonacci series up to n"
+... """Print a Fibonacci series up to n."""
... a, b = 0, 1
... while b < n:
... print b,
\begin{verbatim}
>>> def fib2(n): # return Fibonacci series up to n
-... "Return a list containing the Fibonacci series up to n"
+... """Return a list containing the Fibonacci series up to n."""
... result = []
... a, b = 0, 1
... while b < n: