diff options
author | Zachary Ware <zachary.ware@gmail.com> | 2015-02-27 07:40:41 (GMT) |
---|---|---|
committer | Zachary Ware <zachary.ware@gmail.com> | 2015-02-27 07:40:41 (GMT) |
commit | ad9296e4037c4ff94c6bba83637759f8f40ee31b (patch) | |
tree | ffca5a9a6246d7e998e851626bd886827e751783 /Doc | |
parent | daf57f25e5690cfaa4636ccf0d113908dc0783a4 (diff) | |
parent | 0b49637890c4f9ad125a670b496b3b6110e6def9 (diff) | |
download | cpython-ad9296e4037c4ff94c6bba83637759f8f40ee31b.zip cpython-ad9296e4037c4ff94c6bba83637759f8f40ee31b.tar.gz cpython-ad9296e4037c4ff94c6bba83637759f8f40ee31b.tar.bz2 |
Merge with 3.4
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 55f5351..f79c416 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:: |