[issue7235] IO libary have some error

2009-10-29 Thread lpp1985
发送时间: 2009-10-29 21:18:31 收件人: lpp1985 抄送: 主题: [issue7235] IO libary have some error Antoine Pitrou added the comment: It's by design. If you want to split on arbitrary characters, use the split() method on string and bytes objects. -- nosy: +p

[issue7235] IO libary have some error

2009-10-29 Thread Antoine Pitrou
Antoine Pitrou added the comment: It's by design. If you want to split on arbitrary characters, use the split() method on string and bytes objects. -- nosy: +pitrou resolution: -> invalid status: open -> closed ___ Python tracker

[issue7235] IO libary have some error

2009-10-29 Thread lpp1985
New submission from lpp1985 : The parameter 'newline' in os.open() functiion in the condition of input could ought to be set to any character.But if I set anythin else '','\n','\r\n',and '\r',there will be a error raise.This is maybe a bug in this libary. -- components: Library (Lib)