diff options
author | Benjamin Peterson <benjamin@python.org> | 2018-10-20 23:51:05 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-10-20 23:51:05 (GMT) |
commit | 12d0ff12305957511c9da22513858adbcef72a95 (patch) | |
tree | 03a0a24251f2d33eace77addebd779355c074229 /Doc/howto | |
parent | 890a4b92933be8e7c554222d99ef829c88fa8637 (diff) | |
download | cpython-12d0ff12305957511c9da22513858adbcef72a95.zip cpython-12d0ff12305957511c9da22513858adbcef72a95.tar.gz cpython-12d0ff12305957511c9da22513858adbcef72a95.tar.bz2 |
Remove ">>>" from testsetup. (GH-10017)
Fixes doc build breakage from 890a4b92933be8e7c554222d99ef829c88fa8637.
Diffstat (limited to 'Doc/howto')
-rw-r--r-- | Doc/howto/sorting.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/howto/sorting.rst b/Doc/howto/sorting.rst index b2fccb1..1d6d5c4 100644 --- a/Doc/howto/sorting.rst +++ b/Doc/howto/sorting.rst @@ -257,7 +257,7 @@ To convert to a key function, just wrap the old comparison function: .. testsetup:: - >>> from functools import cmp_to_key + from functools import cmp_to_key .. doctest:: |