[issue39830] zipfile.Path is not included in __all__

2020-07-24 Thread Karthikeyan Singaravelan
Karthikeyan Singaravelan added the comment: Closing it as resolved. Thanks Zackery and jaraco. -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker

[issue39830] zipfile.Path is not included in __all__

2020-05-26 Thread Jason R. Coombs
Jason R. Coombs added the comment: New changeset 5c1d745da5e1166a8724b619060165dcf3949e93 by Miss Islington (bot) in branch '3.8': bpo-39830: Add zipfile.Path to __all__ (GH-19115) (GH-19116) https://github.com/python/cpython/commit/5c1d745da5e1166a8724b619060165dcf3949e93 --

[issue39830] zipfile.Path is not included in __all__

2020-03-23 Thread miss-islington
Change by miss-islington : -- nosy: +miss-islington nosy_count: 4.0 -> 5.0 pull_requests: +18477 pull_request: https://github.com/python/cpython/pull/19116 ___ Python tracker

[issue39830] zipfile.Path is not included in __all__

2020-03-23 Thread Jason R. Coombs
Jason R. Coombs added the comment: New changeset 9a81ab107a54b8ca320fb703f7c68e14ccd9d016 by Zackery Spytz in branch 'master': bpo-39830: Add zipfile.Path to __all__ (GH-19115) https://github.com/python/cpython/commit/9a81ab107a54b8ca320fb703f7c68e14ccd9d016 --

[issue39830] zipfile.Path is not included in __all__

2020-03-23 Thread Zackery Spytz
Change by Zackery Spytz : -- keywords: +patch nosy: +ZackerySpytz nosy_count: 3.0 -> 4.0 pull_requests: +18476 stage: -> patch review pull_request: https://github.com/python/cpython/pull/19115 ___ Python tracker

[issue39830] zipfile.Path is not included in __all__

2020-03-02 Thread Karthikeyan Singaravelan
New submission from Karthikeyan Singaravelan : Since zipfile.Path is a public API and documented it could be included in __all__ . This might be a problem for code that uses below pattern : from zipfile import * from pathlib import Path If this is accepted this can be a good beginner issue.