[issue41364] Optimise uuid platform detection

2020-07-22 Thread Steve Dower
Steve Dower added the comment: New changeset a18f22ab11a7bfb5ff3e74c737ca9e1bebe4abf9 by Steve Dower in branch '3.8': bpo-41364: Reduce import overhead of uuid module (GH-21586) https://github.com/python/cpython/commit/a18f22ab11a7bfb5ff3e74c737ca9e1bebe4abf9 -- ___

[issue41364] Optimise uuid platform detection

2020-07-22 Thread Steve Dower
Change by Steve Dower : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker ___ ___ P

[issue41364] Optimise uuid platform detection

2020-07-21 Thread Steve Dower
Change by Steve Dower : -- pull_requests: +20730 pull_request: https://github.com/python/cpython/pull/21591 ___ Python tracker ___ _

[issue41364] Optimise uuid platform detection

2020-07-21 Thread miss-islington
miss-islington added the comment: New changeset 00466db22168579509fe6aa6cb47cdd89dfb9141 by Miss Islington (bot) in branch '3.9': bpo-41364: Reduce import overhead of uuid module (GH-21586) https://github.com/python/cpython/commit/00466db22168579509fe6aa6cb47cdd89dfb9141 -- ___

[issue41364] Optimise uuid platform detection

2020-07-21 Thread miss-islington
Change by miss-islington : -- nosy: +miss-islington nosy_count: 1.0 -> 2.0 pull_requests: +20729 pull_request: https://github.com/python/cpython/pull/21589 ___ Python tracker _

[issue41364] Optimise uuid platform detection

2020-07-21 Thread Steve Dower
Steve Dower added the comment: New changeset bf2f76ec0976c09de79c8827764f30e3b6fba776 by Steve Dower in branch 'master': bpo-41364: Reduce import overhead of uuid module (GH-21586) https://github.com/python/cpython/commit/bf2f76ec0976c09de79c8827764f30e3b6fba776 --

[issue41364] Optimise uuid platform detection

2020-07-21 Thread Steve Dower
Change by Steve Dower : -- keywords: +patch pull_requests: +20726 stage: needs patch -> patch review pull_request: https://github.com/python/cpython/pull/21586 ___ Python tracker _

[issue41364] Optimise uuid platform detection

2020-07-21 Thread Steve Dower
New submission from Steve Dower : The uuid module calls platform.system() multiple times, even when the result is known from sys.platform. We can avoid some of these. -- assignee: steve.dower components: Library (Lib) messages: 374079 nosy: steve.dower priority: normal severity: normal