From: Benjamin Peterson Date: Sat, 20 Oct 2018 23:51:05 +0000 (-0700) Subject: Remove ">>>" from testsetup. (GH-10017) X-Git-Tag: v3.8.0a1~715 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=12d0ff12305957511c9da22513858adbcef72a95;p=thirdparty%2FPython%2Fcpython.git Remove ">>>" from testsetup. (GH-10017) Fixes doc build breakage from 890a4b92933be8e7c554222d99ef829c88fa8637. --- diff --git a/Doc/howto/sorting.rst b/Doc/howto/sorting.rst index b2fccb19f5d4..1d6d5c45b4d9 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::