Message 85198 - Python tracker
Message85198
| Author | ocean-city |
|---|---|
| Recipients | loewis, ocean-city, vstinner |
| Date | 2009-04-02.11:59:02 |
| SpamBayes Score | 5.769755e-06 |
| Marked as misclassified | No |
| Message-id | <1238673546.16.0.641325606914.issue5391@psf.upfronthosting.co.za> |
| In-reply-to |
| Content | |
|---|---|
Yes, you can do
m.write_byte(b"a")
but on the other hand you cannot do
a = b"abc"
m.write_byte(a[1])
instead you should do
a = b"abc"
m.write_byte(a[1:2])
This is trade off, though.
I'll update "with getarg('b') version" to compare. |
|
| History | |||
|---|---|---|---|
| Date | User | Action | Args |
| 2009-04-02 11:59:06 | ocean-city | set | recipients: + ocean-city, loewis, vstinner |
| 2009-04-02 11:59:06 | ocean-city | set | messageid: <1238673546.16.0.641325606914.issue5391@psf.upfronthosting.co.za> |
| 2009-04-02 11:59:05 | ocean-city | link | issue5391 messages |
| 2009-04-02 11:59:05 | ocean-city | create | |