summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRaymond Hettinger <python@rcn.com>2005-07-01 23:18:36 (GMT)
committerRaymond Hettinger <python@rcn.com>2005-07-01 23:18:36 (GMT)
commit452b6834f0822f83975951446a21f3456461fbb1 (patch)
tree94c0498949f7fd555fa8f0e0d5621acf86d87b3d
parent16ffbc3d104fff10bf351fbf71b6342694b86dbc (diff)
downloadcpython-452b6834f0822f83975951446a21f3456461fbb1.zip
cpython-452b6834f0822f83975951446a21f3456461fbb1.tar.gz
cpython-452b6834f0822f83975951446a21f3456461fbb1.tar.bz2
Cross reference the set built-ins with the sets module.
-rw-r--r--Doc/lib/libstdtypes.tex8
1 files changed, 8 insertions, 0 deletions
diff --git a/Doc/lib/libstdtypes.tex b/Doc/lib/libstdtypes.tex
index 740887d..65e96bf 100644
--- a/Doc/lib/libstdtypes.tex
+++ b/Doc/lib/libstdtypes.tex
@@ -1291,6 +1291,14 @@ Note, the non-operator versions of the \method{update()},
\method{symmetric_difference_update()} methods will accept any iterable
as an argument.
+The design of the set types was based on lessons learned from the
+\module{sets} module.
+
+\begin{seealso}
+ \seemodule[comparison-to-builtin-set]{sets}{Differences between
+ the \module{sets} module and the built-in set types.}
+\end{seealso}
+
\subsection{Mapping Types --- class{dict} \label{typesmapping}}
\obindex{mapping}