From caf21bf2b88e9947c624dfe60611c467a6bc5419 Mon Sep 17 00:00:00 2001 From: cdjc <2360928+cdjc@users.noreply.github.com> Date: Thu, 16 Apr 2020 15:22:00 +1200 Subject: [PATCH] Update pep-0505.rst (#1370) Fix missing ` --- pep-0505.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pep-0505.rst b/pep-0505.rst index 7a9e55abc..4a462e6b8 100644 --- a/pep-0505.rst +++ b/pep-0505.rst @@ -581,7 +581,7 @@ No-Value Protocol The operators could be generalised to user-defined types by defining a protocol to indicate when a value represents "no value". Such a protocol may be a dunder -method ``__has_value__(self)` that returns ``True`` if the value should be +method ``__has_value__(self)`` that returns ``True`` if the value should be treated as having a value, and ``False`` if the value should be treated as no value.