[issue8895] newline vs. newlines in io module

2015-02-24 Thread Martin Panter
Changes by Martin Panter : -- nosy: +vadmium ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.python

[issue8895] newline vs. newlines in io module

2010-06-04 Thread R. David Murray
R. David Murray added the comment: This is off topic for this issue, but what you just reported makes no sense to me. TextIOWrapper calls the encoder corresponding to the specified encoding in its write method. That said, it is true that the IO docs are currently a class reference and not a

[issue8895] newline vs. newlines in io module

2010-06-04 Thread Jean-Michel Fauth
Jean-Michel Fauth added the comment: 2010/6/4 Éric Araujo > > Éric Araujo added the comment: > > Could you think of a way to improve the docs on that point? > > -- > > Quick and dirty answer. I have ~10 years experience with Python and it seems to me the io module is technically ex

[issue8895] newline vs. newlines in io module

2010-06-04 Thread Éric Araujo
Éric Araujo added the comment: Could you think of a way to improve the docs on that point? -- ___ Python tracker ___ ___ Python-bugs-l

[issue8895] newline vs. newlines in io module

2010-06-04 Thread Éric Araujo
Changes by Éric Araujo : Removed file: http://bugs.python.org/file17549/unnamed ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubs

[issue8895] newline vs. newlines in io module

2010-06-04 Thread Jean-Michel Fauth
Jean-Michel Fauth added the comment: 2010/6/4 R. David Murray > > R. David Murray added the comment: > > This is as documented: > > http://docs.python.org/dev/3.0/library/io.html#io.TextIOBase.newlines > > The keyword argument is named 'newline', the attribute is named 'newlines'. > The at

[issue8895] newline vs. newlines in io module

2010-06-04 Thread R. David Murray
R. David Murray added the comment: This is as documented: http://docs.python.org/dev/3.0/library/io.html#io.TextIOBase.newlines The keyword argument is named 'newline', the attribute is named 'newlines'. The attribute does not record what was passed to the newline argument, rather it rec

[issue8895] newline vs. newlines in io module

2010-06-04 Thread Éric Araujo
Éric Araujo added the comment: Thanks for the report. Could you check the docs for 3.1 and 3.x trunk (py3k) too? -- assignee: -> d...@python components: +Documentation -IO nosy: +d...@python, merwok stage: -> needs patch title: newline arg/attribute in the module io -> newline vs. ne