This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author anakha
Recipients anakha, mark.dickinson
Date 2008-06-18.15:55:45
SpamBayes Score 0.036358513
Marked as misclassified No
Message-id <1213804606.86.0.198962035271.issue3004@psf.upfronthosting.co.za>
In-reply-to
Content
Would these do?

self.assertEqual(slice(None,   -10    ).indices(10), (0,  0,  1))
self.assertEqual(slice(None,   -11,   ).indices(10), (0,  0,  1))
self.assertEqual(slice(None,   -12, -1).indices(10), (9, -1, -1))

If yes, test_slice.patch adds them.
History
Date User Action Args
2008-06-18 15:56:47anakhasetspambayes_score: 0.0363585 -> 0.036358513
recipients: + anakha, mark.dickinson
2008-06-18 15:56:46anakhasetspambayes_score: 0.0363585 -> 0.0363585
messageid: <1213804606.86.0.198962035271.issue3004@psf.upfronthosting.co.za>
2008-06-18 15:55:46anakhalinkissue3004 messages
2008-06-18 15:55:46anakhacreate