[issue38526] zipfile.Path has the wrong method name

2019-11-21 Thread Karthikeyan Singaravelan
Karthikeyan Singaravelan added the comment: Closing as fixed since PRs are merged. Thanks Alex for the report and @Claudiu.Popa for the patch. -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker

[issue38526] zipfile.Path has the wrong method name

2019-11-21 Thread miss-islington
miss-islington added the comment: New changeset 107ed88cde3ae6f1cb01ae75575ea0f92c138464 by Miss Islington (bot) in branch '3.8': bpo-38526: Fix zipfile.Path method name to be the correct one (GH-17317) https://github.com/python/cpython/commit/107ed88cde3ae6f1cb01ae75575ea0f92c138464 --

[issue38526] zipfile.Path has the wrong method name

2019-11-21 Thread miss-islington
Change by miss-islington : -- pull_requests: +16816 pull_request: https://github.com/python/cpython/pull/17329 ___ Python tracker ___ __

[issue38526] zipfile.Path has the wrong method name

2019-11-21 Thread Jason R. Coombs
Jason R. Coombs added the comment: New changeset 65444cf7fe84d8ca1f9b51c7f5992210751e08bb by Jason R. Coombs (Claudiu Popa) in branch 'master': bpo-38526: Fix zipfile.Path method name to be the correct one (#17317) https://github.com/python/cpython/commit/65444cf7fe84d8ca1f9b51c7f5992210751e0

[issue38526] zipfile.Path has the wrong method name

2019-11-21 Thread PCManticore
Change by PCManticore : -- keywords: +patch pull_requests: +16804 stage: -> patch review pull_request: https://github.com/python/cpython/pull/17317 ___ Python tracker ___

[issue38526] zipfile.Path has the wrong method name

2019-10-19 Thread Karthikeyan Singaravelan
Karthikeyan Singaravelan added the comment: This looks like a valid issue to me. The docs were added with issue36832. -- nosy: +jaraco, xtreak type: -> behavior versions: +Python 3.9 ___ Python tracker

[issue38526] zipfile.Path has the wrong method name

2019-10-19 Thread Alex Walters
New submission from Alex Walters : https://docs.python.org/3.8/library/zipfile.html#zipfile.Path.listdir The docs for zipfile.Path list a method named 'listdir', the closest approximation to the functionality described in the actual code is a method named 'iterdir' -- assignee: docs@