[issue38619] [Doc] UUID.hex is lowercase

2022-02-14 Thread miss-islington
miss-islington added the comment: New changeset 1953f03174c18f315aca883babc3819828f868d8 by Miss Islington (bot) in branch '3.9': bpo-38619: Update the documentation for UUID.hex (GH-29830) https://github.com/python/cpython/commit/1953f03174c18f315aca883babc3819828f868d8 --

[issue38619] [Doc] UUID.hex is lowercase

2022-02-14 Thread miss-islington
miss-islington added the comment: New changeset 828253227efe16f0e759df36bbb2ca49083223c8 by Miss Islington (bot) in branch '3.10': bpo-38619: Update the documentation for UUID.hex (GH-29830) https://github.com/python/cpython/commit/828253227efe16f0e759df36bbb2ca49083223c8 --

[issue38619] [Doc] UUID.hex is lowercase

2022-02-14 Thread Mariatta
Mariatta added the comment: Thanks. I do think it is helpful to state that it is lowercase. I have merged the PR, and will backport to 3.10 and 3.9. Thanks. -- resolution: -> fixed stage: patch review -> resolved status: open -> closed versions: +Python 3.10, Python 3.11

[issue38619] [Doc] UUID.hex is lowercase

2022-02-14 Thread miss-islington
Change by miss-islington : -- nosy: +miss-islington nosy_count: 7.0 -> 8.0 pull_requests: +29487 pull_request: https://github.com/python/cpython/pull/31334 ___ Python tracker

[issue38619] [Doc] UUID.hex is lowercase

2022-02-14 Thread Mariatta
Mariatta added the comment: New changeset 5d53cf30f9cb3758849e859db5d4602cb7c521f7 by 180909 in branch 'main': bpo-38619: Update the documentation for UUID.hex (GH-29830) https://github.com/python/cpython/commit/5d53cf30f9cb3758849e859db5d4602cb7c521f7 -- nosy: +Mariatta

[issue38619] [Doc] UUID.hex is lowercase

2022-02-14 Thread miss-islington
Change by miss-islington : -- pull_requests: +29488 pull_request: https://github.com/python/cpython/pull/31335 ___ Python tracker ___

[issue38619] [Doc] UUID.hex is lowercase

2021-11-28 Thread jiahua wang
Change by jiahua wang : -- keywords: +patch nosy: +wangjiahua nosy_count: 5.0 -> 6.0 pull_requests: +28061 stage: -> patch review pull_request: https://github.com/python/cpython/pull/29830 ___ Python tracker

[issue38619] [Doc] UUID.hex is lowercase

2019-10-28 Thread Fred Drake
Fred Drake added the comment: While I don't know Felipe's use case, I would expect the documentation to be clear that the representation won't change in the future so users will know that this can be relied on to generate keys into some other persistent structure. -- nosy: +fdrake

[issue38619] [Doc] UUID.hex is lowercase

2019-10-28 Thread Eric V. Smith
Eric V. Smith added the comment: Yes, it's always guaranteed to be lowercase. I don't think it would hurt to mention lowercase briefly (like add just one word!). -- nosy: +eric.smith ___ Python tracker

[issue38619] [Doc] UUID.hex is lowercase

2019-10-28 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: There are examples which show the hex is lowercase. I do not think a special note is needed. All conversions to hex are lowercase by default. If you need uppercase, you can use str.upper(). -- nosy: +serhiy.storchaka

[issue38619] [Doc] UUID.hex is lowercase

2019-10-28 Thread Felipe
New submission from Felipe : The hex property of `UUID` is implemented as `'%032x' % self.int` Is it specified that this will always be lowercase? If so, can we add a note to the documentation indicating so? -- assignee: docs@python components: Documentation, Library (Lib) messages: