[issue29092] Sync os.stat's doc and doc string

2017-01-21 Thread Roundup Robot
Roundup Robot added the comment: New changeset 1f30e114cbc8 by Xiang Zhang in branch '3.5': Issue #29092: Sync os.stat's doc and docstring on path type. https://hg.python.org/cpython/rev/1f30e114cbc8 New changeset 409ffea5cccf by Xiang Zhang in branch '3.6': Issue #29092: Sync os.stat's doc and

[issue29092] Sync os.stat's doc and doc string

2017-01-21 Thread Xiang Zhang
Changes by Xiang Zhang : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker ___ ___ Py

[issue29092] Sync os.stat's doc and doc string

2017-01-03 Thread STINNER Victor
STINNER Victor added the comment: Ignore my comment, I was thinking to something else (recent os.scandir change on Windows). -- ___ Python tracker ___ __

[issue29092] Sync os.stat's doc and doc string

2017-01-03 Thread STINNER Victor
STINNER Victor added the comment: It's a recent change, before path type was always str. -- nosy: +haypo, serhiy.storchaka ___ Python tracker ___

[issue29092] Sync os.stat's doc and doc string

2016-12-28 Thread Xiang Zhang
New submission from Xiang Zhang: The accepted types of parameter *path* are different between os.stat's doc and doc string. In doc, it mentions Pathlike, string and file descriptor. In doc string, it mentions string, bytes and file descriptor. (3.5 only lack bytes in doc). -- assignee