summaryrefslogtreecommitdiffstats
path: root/Doc/howto
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2018-10-20 23:51:05 (GMT)
committerGitHub <noreply@github.com>2018-10-20 23:51:05 (GMT)
commit12d0ff12305957511c9da22513858adbcef72a95 (patch)
tree03a0a24251f2d33eace77addebd779355c074229 /Doc/howto
parent890a4b92933be8e7c554222d99ef829c88fa8637 (diff)
downloadcpython-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.rst2
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::