Message 80360 - Python tracker (original) (raw)
Message80360
Author | pitrou |
---|---|
Recipients | LambertDW, dgaletic, pitrou |
Date | 2009-01-22.08:27:52 |
SpamBayes Score | 0.00033092298 |
Marked as misclassified | No |
Message-id | 1232612873.9.0.651359273696.issue5029@psf.upfronthosting.co.za |
In-reply-to |
Content |
---|
Why should it return an empty list? >>> foo = [1,2,3] >>> foo[1::-1] [2, 1] >>> foo[0::-1] [1] looks quite consistent to me. |
History | |||
---|---|---|---|
Date | User | Action | Args |
2009-01-22 08:27:54 | pitrou | set | recipients: + pitrou, LambertDW, dgaletic |
2009-01-22 08:27:53 | pitrou | set | messageid: 1232612873.9.0.651359273696.issue5029@psf.upfronthosting.co.za |
2009-01-22 08:27:53 | pitrou | link | issue5029 messages |
2009-01-22 08:27:52 | pitrou | create |