[issue46616] test_importlib leaves stray registry entries on Windows

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

[issue46616] test_importlib leaves stray registry entries on Windows

2022-02-02 Thread miss-islington
miss-islington added the comment: New changeset 5765eaa13654e5f812a286700da7d6b8e144da0e by Miss Islington (bot) in branch '3.10': bpo-46616: Ensures test_importlib.test_windows cleans up registry keys after completion (GH-31086) https://github.com/python/cpython/commit/5765eaa13654e5f812a28

[issue46616] test_importlib leaves stray registry entries on Windows

2022-02-02 Thread miss-islington
miss-islington added the comment: New changeset 3c6173ca67c019f3eb7a2fc34c5bfc426f99c5b2 by Miss Islington (bot) in branch '3.9': bpo-46616: Ensures test_importlib.test_windows cleans up registry keys after completion (GH-31086) https://github.com/python/cpython/commit/3c6173ca67c019f3eb7a2f

[issue46616] test_importlib leaves stray registry entries on Windows

2022-02-02 Thread miss-islington
Change by miss-islington : -- pull_requests: +29272 pull_request: https://github.com/python/cpython/pull/31088 ___ Python tracker ___ __

[issue46616] test_importlib leaves stray registry entries on Windows

2022-02-02 Thread miss-islington
Change by miss-islington : -- nosy: +miss-islington nosy_count: 4.0 -> 5.0 pull_requests: +29271 pull_request: https://github.com/python/cpython/pull/31087 ___ Python tracker _

[issue46616] test_importlib leaves stray registry entries on Windows

2022-02-02 Thread Steve Dower
Steve Dower added the comment: New changeset 89a0a90c2e0e685bc70206fc45e4413c4f4411ed by Steve Dower in branch 'main': bpo-46616: Ensures test_importlib.test_windows cleans up registry keys after completion (GH-31086) https://github.com/python/cpython/commit/89a0a90c2e0e685bc70206fc45e4413c4

[issue46616] test_importlib leaves stray registry entries on Windows

2022-02-02 Thread Steve Dower
Change by Steve Dower : -- keywords: +patch pull_requests: +29270 stage: needs patch -> patch review pull_request: https://github.com/python/cpython/pull/31086 ___ Python tracker _

[issue46616] test_importlib leaves stray registry entries on Windows

2022-02-02 Thread Steve Dower
New submission from Steve Dower : When running test_importlib.test_windows, it may create registry keys that previously didn't exist. These keys are not fully cleaned up. Detect if the full key is created and then delete it after the test. If it existed, only delete the specific test key. --