From 0b49637890c4f9ad125a670b496b3b6110e6def9 Mon Sep 17 00:00:00 2001 From: Zachary Ware Date: Fri, 27 Feb 2015 01:40:22 -0600 Subject: Fix copy/paste error in bytes.isupper() doc. Reported by Jon Colburn on docs@. --- Doc/library/stdtypes.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Doc/library/stdtypes.rst b/Doc/library/stdtypes.rst index e0f8cfa..d3fc093 100644 --- a/Doc/library/stdtypes.rst +++ b/Doc/library/stdtypes.rst @@ -2880,8 +2880,8 @@ place, and instead produce new objects. .. method:: bytes.isupper() bytearray.isupper() - Return true if there is at least one lowercase alphabetic ASCII character - in the sequence and no uppercase ASCII characters, false otherwise. + Return true if there is at least one uppercase alphabetic ASCII character + in the sequence and no lowercase ASCII characters, false otherwise. For example:: -- cgit v0.12