diff options
author | Zachary Ware <zachary.ware@gmail.com> | 2015-02-27 07:40:22 (GMT) |
---|---|---|
committer | Zachary Ware <zachary.ware@gmail.com> | 2015-02-27 07:40:22 (GMT) |
commit | 0b49637890c4f9ad125a670b496b3b6110e6def9 (patch) | |
tree | 2d29f98782bd38d3d83c1388d1eba83e91d18a95 /Doc | |
parent | d2e067b130a8b67f1eb57ac3eab4e6a84fb5d854 (diff) | |
download | cpython-0b49637890c4f9ad125a670b496b3b6110e6def9.zip cpython-0b49637890c4f9ad125a670b496b3b6110e6def9.tar.gz cpython-0b49637890c4f9ad125a670b496b3b6110e6def9.tar.bz2 |
Fix copy/paste error in bytes.isupper() doc.
Reported by Jon Colburn on docs@.
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/library/stdtypes.rst | 4 |
1 files 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:: |