From 557fffd5a12b8f519ab4830eb2a09e78ff6e9530 Mon Sep 17 00:00:00 2001 From: trcmohitmandokhot <53010568+trcmohitmandokhot@users.noreply.github.com> Date: Mon, 14 Nov 2022 19:36:29 -0500 Subject: [PATCH] PEP 3141: Fix typo in Number.Complex.imag() docstring (#2881) --- pep-3141.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pep-3141.txt b/pep-3141.txt index cbc332e98..f68516ef4 100644 --- a/pep-3141.txt +++ b/pep-3141.txt @@ -85,7 +85,7 @@ numbers are supported by this hierarchy. :: @abstractproperty def imag(self): - """Retrieve the real component of this number. + """Retrieve the imaginary component of this number. This should subclass Real. """