[issue15161] add new-style os API to two missing functions

2012-06-24 Thread Roundup Robot
Roundup Robot added the comment: New changeset da416ff1ecf5 by Georg Brandl in branch 'default': Closes #15161: add support for giving path as a fd for truncate() and pathconf(). http://hg.python.org/cpython/rev/da416ff1ecf5 -- nosy: +python-dev resolution: -> fixed stage: -> committ

[issue15161] add new-style os API to two missing functions

2012-06-24 Thread Georg Brandl
Changes by Georg Brandl : Added file: http://bugs.python.org/file26128/truncate.diff ___ Python tracker ___ ___ Python-bugs-list mailing list

[issue15161] add new-style os API to two missing functions

2012-06-24 Thread Georg Brandl
New submission from Georg Brandl : For pathconf() / fpathconf() and truncate() / ftruncate() the former didn't support fds as path. These two patches should fix it. -- assignee: larry components: Extension Modules files: pathconf.diff keywords: patch messages: 163760 nosy: georg.brandl