diff options
author | 180909 <wjh180909@gmail.com> | 2022-02-14 18:58:22 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-02-14 18:58:22 (GMT) |
commit | 5d53cf30f9cb3758849e859db5d4602cb7c521f7 (patch) | |
tree | 07fcf6792d3d431d42744986867d5cb0236670f1 | |
parent | 4e4e7c2684b80350e82d82e4feeda5de24d362b9 (diff) | |
download | cpython-5d53cf30f9cb3758849e859db5d4602cb7c521f7.zip cpython-5d53cf30f9cb3758849e859db5d4602cb7c521f7.tar.gz cpython-5d53cf30f9cb3758849e859db5d4602cb7c521f7.tar.bz2 |
bpo-38619: Update the documentation for UUID.hex (GH-29830)
Explicitly state that it is lowercase.
Co-authored-by: Kumar Aditya <59607654+kumaraditya303@users.noreply.github.com>
-rw-r--r-- | Doc/library/uuid.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/uuid.rst b/Doc/library/uuid.rst index 415e25b..ddfbbda 100644 --- a/Doc/library/uuid.rst +++ b/Doc/library/uuid.rst @@ -118,7 +118,7 @@ which relays any information about the UUID's safety, using this enumeration: .. attribute:: UUID.hex - The UUID as a 32-character hexadecimal string. + The UUID as a 32-character lowercase hexadecimal string. .. attribute:: UUID.int |