From e2bb09430d90c73a7be6e47ea8c4528f094f693f Mon Sep 17 00:00:00 2001 From: Jarrod Millman Date: Wed, 17 Feb 2010 23:53:04 +0000 Subject: more docstring updates from pydoc website (thanks to everyone who contributed!) --- numpy/polynomial/polytemplate.py | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) (limited to 'numpy/polynomial/polytemplate.py') diff --git a/numpy/polynomial/polytemplate.py b/numpy/polynomial/polytemplate.py index 512fd9201..29691496b 100644 --- a/numpy/polynomial/polytemplate.py +++ b/numpy/polynomial/polytemplate.py @@ -1,4 +1,12 @@ -"""Template for the Chebyshev and Polynomial classes. +""" +Template for the Chebyshev and Polynomial classes. + +This module houses a Python string module Template object (see, e.g., +http://docs.python.org/library/string.html#template-strings) used by +the `polynomial` and `chebyshev` modules to implement their respective +`Polynomial` and `Chebyshev` classes. It provides a mechanism for easily +creating additional specific polynomial classes (e.g., Legendre, Jacobi, +etc.) in the future, such that all these classes will have a common API. """ import string -- cgit v1.2.1