From 70d0a63390c0d3a765b4745c0eb0ad7425a1d53c Mon Sep 17 00:00:00 2001 From: Brett Cannon Date: Fri, 11 Aug 2017 15:54:20 -0700 Subject: [PATCH] Fix a reST markup issue --- pep-0532.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pep-0532.txt b/pep-0532.txt index 30bf7a644..630596531 100644 --- a/pep-0532.txt +++ b/pep-0532.txt @@ -343,7 +343,7 @@ conditional expression:: The factory functions in the ``operator`` module would then make it straightforward to create circuit breakers that correspond to identity -checks using the ``is`` and ``is not`` operators: +checks using the ``is`` and ``is not`` operators:: def is_sentinel(value, sentinel): """Returns a circuit breaker switching on 'value is sentinel'"""