Message82132
| Author | pitrou |
|---|---|
| Recipients | alexandre.vassalotti, pitrou |
| Date | 2009-02-14.22:36:17 |
| SpamBayes Score | 0.00045662833 |
| Marked as misclassified | No |
| Message-id | <1234650978.85.0.656093494146.issue5265@psf.upfronthosting.co.za> |
| In-reply-to |
| Content | |
|---|---|
This one is a bit strange:
>>> f = io.StringIO("a\r\nb\r\n", newline=None)
>>> f.read()
'a\nb\n'
>>> f = io.StringIO("a\r\nb\r\n", newline=None)
>>> f.read(6)
'a\nb\n'
>>> f = io.StringIO("a\r\nb\r\n", newline=None)
>>> f.read(5)
'a\n\nb\n' |
|
| History | |||
|---|---|---|---|
| Date | User | Action | Args |
| 2009-02-14 22:36:19 | pitrou | set | recipients: + pitrou, alexandre.vassalotti |
| 2009-02-14 22:36:18 | pitrou | set | messageid: <1234650978.85.0.656093494146.issue5265@psf.upfronthosting.co.za> |
| 2009-02-14 22:36:17 | pitrou | link | issue5265 messages |
| 2009-02-14 22:36:17 | pitrou | create | |