Add missing synopses for library modules.

This commit is contained in:
Georg Brandl
2007-08-02 20:33:06 +00:00
parent a9f6483547
commit a39f67e314
43 changed files with 79 additions and 126 deletions

View File

@@ -1,13 +1,12 @@
:mod:`operator` --- Standard operators as functions.
====================================================
:mod:`operator` --- Standard operators as functions
===================================================
.. module:: operator
:synopsis: Functions corresponding to the standard operators.
.. sectionauthor:: Skip Montanaro <skip@automatrix.com>
The :mod:`operator` module exports a set of functions implemented in C
corresponding to the intrinsic operators of Python. For example,
``operator.add(x, y)`` is equivalent to the expression ``x+y``. The function