summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNeal Norwitz <nnorwitz@gmail.com>2005-11-03 04:39:46 (GMT)
committerNeal Norwitz <nnorwitz@gmail.com>2005-11-03 04:39:46 (GMT)
commite361d8afd016e5874ed5ce4302df88225babdb58 (patch)
tree457cacfdf886f06f4833520e730de600cd82bc84
parent19c431ac14d4aaa0b7a7b070db378accec95f3ec (diff)
downloadcpython-e361d8afd016e5874ed5ce4302df88225babdb58.zip
cpython-e361d8afd016e5874ed5ce4302df88225babdb58.tar.gz
cpython-e361d8afd016e5874ed5ce4302df88225babdb58.tar.bz2
Make consistent with HEAD (some change was not backported)
-rw-r--r--Doc/lib/libsets.tex2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/lib/libsets.tex b/Doc/lib/libsets.tex
index 4f3816a..dd85ec7 100644
--- a/Doc/lib/libsets.tex
+++ b/Doc/lib/libsets.tex
@@ -254,7 +254,7 @@ on lessons learned from the \module{sets} module. The key differences are:
\item The built-in versions have more space efficient pickles.
\item The built-in versions do not have a \method{union_update()} method.
Instead, use the \method{update()} method which is equivalent.
-\item The built-in versions do not have a \method{_repr(sort=True)} method.
+\item The built-in versions do not have a \method{_repr(sorted=True)} method.
Instead, use the built-in \function{repr()} and \function{sorted()}
functions: \code{repr(sorted(s))}.
\item The built-in version does not have a protocol for automatic conversion