diff options
author | Tim Peters <tim.peters@gmail.com> | 2001-10-01 20:25:26 (GMT) |
---|---|---|
committer | Tim Peters <tim.peters@gmail.com> | 2001-10-01 20:25:26 (GMT) |
commit | 1350c07de3baa4ccb1597e194e75d77d0e44cad8 (patch) | |
tree | e55e5f3df522a372bcdea43515b4032f3a846bcd /Doc/ref | |
parent | 20524dbf36fea8c288f40b8fa6865beee83a8639 (diff) | |
download | cpython-1350c07de3baa4ccb1597e194e75d77d0e44cad8.zip cpython-1350c07de3baa4ccb1597e194e75d77d0e44cad8.tar.gz cpython-1350c07de3baa4ccb1597e194e75d77d0e44cad8.tar.bz2 |
Removed stray backslash (a typo -- my fault).
Diffstat (limited to 'Doc/ref')
-rw-r--r-- | Doc/ref/ref5.tex | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/ref/ref5.tex b/Doc/ref/ref5.tex index be672b7..473b24a 100644 --- a/Doc/ref/ref5.tex +++ b/Doc/ref/ref5.tex @@ -819,7 +819,7 @@ Mappings (dictionaries) compare equal if and only if their sorted (key, value) lists compare equal.\footnote{The implementation computes this efficiently, without constructing lists or sorting.} Outcomes other than equality are resolved consistently, but are not -otherwise defined.\footnote{Earlier versions of Python used\ +otherwise defined.\footnote{Earlier versions of Python used lexicographic comparison of the sorted (key, value) lists, but this was very expensive for the common case of comparing for equality. An even earlier version of Python compared dictionaries by identity only, |