summaryrefslogtreecommitdiffstats
path: root/Doc
diff options
context:
space:
mode:
authorZachary Ware <zachary.ware@gmail.com>2015-02-27 07:40:22 (GMT)
committerZachary Ware <zachary.ware@gmail.com>2015-02-27 07:40:22 (GMT)
commit0b49637890c4f9ad125a670b496b3b6110e6def9 (patch)
tree2d29f98782bd38d3d83c1388d1eba83e91d18a95 /Doc
parentd2e067b130a8b67f1eb57ac3eab4e6a84fb5d854 (diff)
downloadcpython-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.rst4
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::