[issue21860] Correct FileIO docstrings

2014-09-24 Thread Roundup Robot
Roundup Robot added the comment: New changeset be2746c565c2 by Berker Peksag in branch '2.7': Issue #21860: Correct docstrings of FileIO.seek() and FileIO.truncate() methods. https://hg.python.org/cpython/rev/be2746c565c2 -- ___ Python tracker

[issue21860] Correct FileIO docstrings

2014-09-24 Thread Berker Peksag
Berker Peksag added the comment: Thanks for the patch, Terry. -- assignee: haypo -> berker.peksag nosy: +berker.peksag resolution: -> fixed stage: commit review -> resolved status: open -> closed versions: +Python 3.5 -Python 3.3 ___ Python tracker

[issue21860] Correct FileIO docstrings

2014-09-24 Thread Roundup Robot
Roundup Robot added the comment: New changeset 2058d94f32dd by Berker Peksag in branch '3.4': Issue #21860: Correct docstrings of FileIO.seek() and FileIO.truncate() methods. https://hg.python.org/cpython/rev/2058d94f32dd New changeset de645efe6a9b by Berker Peksag in branch 'default': Issue #21

[issue21860] Correct FileIO docstrings

2014-07-31 Thread Serhiy Storchaka
Changes by Serhiy Storchaka : -- assignee: docs@python -> haypo stage: needs patch -> commit review ___ Python tracker ___ ___ Python-

[issue21860] Correct FileIO docstrings

2014-07-29 Thread STINNER Victor
STINNER Victor added the comment: The patch looks good to me. -- ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue21860] Correct FileIO docstrings

2014-07-22 Thread Serhiy Storchaka
Changes by Serhiy Storchaka : -- nosy: +haypo ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.pyth

[issue21860] Correct FileIO docstrings

2014-06-24 Thread Terry Chia
Terry Chia added the comment: Is this acceptable? -- keywords: +patch nosy: +terry.chia Added file: http://bugs.python.org/file35770/issue21860.patch ___ Python tracker ___ _

[issue21860] Correct FileIO docstrings

2014-06-24 Thread Serhiy Storchaka
New submission from Serhiy Storchaka: Docstrings for seek() and truncate() methods of FileIO declare that they return None. Actually they return truncated size and new position respectively. -- assignee: docs@python components: Documentation, IO keywords: easy messages: 221452 nosy: ben