Idea #11770
open[Python SDK] Implement support for universal newline mode in Collections API
Description
Implementation should match that of the Python 3 file open method as described at: https://docs.python.org/release/3.2/library/functions.html#open
??newline controls how universal newlines works (it only applies to text mode). It can be None, '', '\n', '\r', and '\r\n'. It works as follows:
On input, if newline is None, universal newlines mode is enabled. Lines in the input can end in '\n', '\r', or '\r\n', and these are translated into '\n' before being returned to the caller. If it is '', universal newline mode is enabled, but line endings are returned to the caller untranslated. If it has any of the other legal values, input lines are only terminated by the given string, and the line ending is returned to the caller untranslated.
On output, if newline is None, any '\n' characters written are translated to the system default line separator, os.linesep. If newline is '', no translation takes place. If newline is any of the other legal values, any '\n' characters written are translated to the given string.
??
Note that the Python 2 method of specifying a mode of 'rU' is now deprecated.