[issue19852] Misplaced private API method in pathlib.py

2013-12-02 Thread Antoine Pitrou
Antoine Pitrou added the comment: Thanks! Patch now applied. -- resolution: -> fixed stage: -> committed/rejected status: open -> closed ___ Python tracker ___

[issue19852] Misplaced private API method in pathlib.py

2013-12-02 Thread Roundup Robot
Roundup Robot added the comment: New changeset cd8230437f40 by Antoine Pitrou in branch 'default': Issue #19852: move Path._raw_open() around, as it is now a private method. http://hg.python.org/cpython/rev/cd8230437f40 -- nosy: +python-dev ___ Python

[issue19852] Misplaced private API method in pathlib.py

2013-12-01 Thread Vajrasky Kok
New submission from Vajrasky Kok: In class Path, line 942, you have this comment: # Public API but down there, in line 1048, you have this private method: def _raw_open(self, flags, mode=0o777): """ Open the file pointed by this path and return a file descriptor, as