[issue29341] Missing accepting path-like object in docstrings of os module functions

2018-11-02 Thread Pablo Galindo Salgado
Change by Pablo Galindo Salgado : -- Removed message: https://bugs.python.org/msg329149 ___ Python tracker ___ ___ Python-bugs-list

[issue29341] Missing accepting path-like object in docstrings of os module functions

2018-11-02 Thread Pablo Galindo Salgado
Pablo Galindo Salgado added the comment: The docstrings are fixed and the (manual!) backports to 3.7 and 3.6 are done. Very good job, Luna! -- ___ Python tracker ___

[issue29341] Missing accepting path-like object in docstrings of os module functions

2018-11-02 Thread Pablo Galindo Salgado
Pablo Galindo Salgado added the comment: The docstrings are fixed and the m(anual!) backports to 3.7 and 3.6 are done. Very good job, Luna! -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker

[issue29341] Missing accepting path-like object in docstrings of os module functions

2018-11-02 Thread Pablo Galindo Salgado
Pablo Galindo Salgado added the comment: New changeset 08026b103ea8f4c9f2b5045ef7806dd8b760da2b by Pablo Galindo (BNMetrics) in branch '3.7': [3.7]bpo-29341: Backport b942707 3.7 (#10298) https://github.com/python/cpython/commit/08026b103ea8f4c9f2b5045ef7806dd8b760da2b -- _

[issue29341] Missing accepting path-like object in docstrings of os module functions

2018-11-02 Thread Pablo Galindo Salgado
Pablo Galindo Salgado added the comment: New changeset 8d2f88fb17468642813108977bb9ec5f7a065b84 by Pablo Galindo (BNMetrics) in branch '3.6': [3.6]bpo-29341: Backport b942707 3.6 (GH-10299) https://github.com/python/cpython/commit/8d2f88fb17468642813108977bb9ec5f7a065b84 -- ___

[issue29341] Missing accepting path-like object in docstrings of os module functions

2018-11-02 Thread Luna Chen
Change by Luna Chen : -- pull_requests: +9608 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.py

[issue29341] Missing accepting path-like object in docstrings of os module functions

2018-11-02 Thread Luna Chen
Change by Luna Chen : -- pull_requests: +9607 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.py

[issue29341] Missing accepting path-like object in docstrings of os module functions

2018-11-02 Thread Pablo Galindo Salgado
Pablo Galindo Salgado added the comment: New changeset b942707fc23454a998323c17e30be78ff1a4f0e7 by Pablo Galindo (BNMetrics) in branch 'master': bpo-29341: Clarify that path-like objects are accepted in some os methods (GH-10101) https://github.com/python/cpython/commit/b942707fc23454a998323

[issue29341] Missing accepting path-like object in docstrings of os module functions

2018-10-26 Thread Guido van Rossum
Change by Guido van Rossum : -- nosy: +gvanrossum ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mai

[issue29341] Missing accepting path-like object in docstrings of os module functions

2018-10-25 Thread Luna Chen
Change by Luna Chen : -- keywords: +patch pull_requests: +9434 stage: needs patch -> patch review ___ Python tracker ___ ___ Python-

[issue29341] Missing accepting path-like object in docstrings of os module functions

2018-10-23 Thread Luna Chen
Luna Chen added the comment: Farhaan Bukhsh: you said you wanted to work on this but that was over a month ago, so I presume you've directed your attention elsewhere, and I'd like to give this a try. -- nosy: +BNMetrics -thatiparthy ___ Python tra

[issue29341] Missing accepting path-like object in docstrings of os module functions

2018-10-23 Thread శ్రీనివాస్ రెడ్డి తాటిపర్తి
Change by Srinivas Reddy Thatiparthy(శ్రీనివాస్ రెడ్డి తాటిపర్తి) : -- nosy: +thatiparthy ___ Python tracker ___ ___ Python-bugs-li

[issue29341] Missing accepting path-like object in docstrings of os module functions

2018-10-12 Thread Mayank Asthana
Change by Mayank Asthana : -- nosy: +masthana ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.py

[issue29341] Missing accepting path-like object in docstrings of os module functions

2018-10-06 Thread Vinodhini
Vinodhini added the comment: This is now carried forward in 3.8 also. Is anyone working on this issue ? It needs to be corrected in doc-string for all method where its applicable -- nosy: +Vinu2003 ___ Python tracker

[issue29341] Missing accepting path-like object in docstrings of os module functions

2018-09-14 Thread Karthikeyan Singaravelan
Change by Karthikeyan Singaravelan : -- nosy: +xtreak ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https:/

[issue29341] Missing accepting path-like object in docstrings of os module functions

2018-09-13 Thread Farhaan Bukhsh
Farhaan Bukhsh added the comment: Hey I would like to make this change which file should I look into? -- nosy: +fhackdroid ___ Python tracker ___ _

[issue29341] Missing accepting path-like object in docstrings of os module functions

2017-01-23 Thread Xiang Zhang
Xiang Zhang added the comment: I don't mean to sync the docstring and the documentation totally. But just like os.chown, there are some functions explicitly mention the acceptable types of path parameter in their docstrings. I think since they already mention the types, then make the list comp

[issue29341] Missing accepting path-like object in docstrings of os module functions

2017-01-23 Thread Emily Morehouse
Emily Morehouse added the comment: I see that path-like objects are indeed mentioned in the documentation (Doc/library/os.rst), simply stating "Changed in version 3.6: Supports a path-like object." Other methods, such as os.chroot, also mention such a change. Comparing the docs mentioned above

[issue29341] Missing accepting path-like object in docstrings of os module functions

2017-01-21 Thread Serhiy Storchaka
Changes by Serhiy Storchaka : -- assignee: -> docs@python components: +Documentation keywords: +easy nosy: +docs@python ___ Python tracker ___ __

[issue29341] Missing accepting path-like object in docstrings of os module functions

2017-01-21 Thread Xiang Zhang
Changes by Xiang Zhang : -- stage: -> needs patch ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail

[issue29341] Missing accepting path-like object in docstrings of os module functions

2017-01-21 Thread Xiang Zhang
New submission from Xiang Zhang: PathLike objects are added in 3.6 and they are mentioned in the documentation. But in some os module functions' docstrings, acceptable types of path parameter are mentioned and they are not altered to mention path-like object. For example: chown(path, uid, gid,