From: Zachary Ware Date: Fri, 27 Feb 2015 07:40:22 +0000 (-0600) Subject: Fix copy/paste error in bytes.isupper() doc. X-Git-Tag: v3.5.0a2~78^2 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=0b49637890c4f9ad125a670b496b3b6110e6def9;p=thirdparty%2FPython%2Fcpython.git Fix copy/paste error in bytes.isupper() doc. Reported by Jon Colburn on docs@. --- diff --git a/Doc/library/stdtypes.rst b/Doc/library/stdtypes.rst index e0f8cfaf9e72..d3fc09395306 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::