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 Balachander.Ganesan
Recipients Balachander.Ganesan
Date 2010-05-12.18:29:36
SpamBayes Score 0.0054218248
Marked as misclassified No
Message-id <1273688979.04.0.976435378464.issue8700@psf.upfronthosting.co.za>
In-reply-to
Content
Version:
========
Python 2.4.3 (#1, Jan 14 2008, 18:31:21)
[GCC 4.1.2 20070626 (Red Hat 4.1.2-14)] on linux2

Description:
============
When the pattern used for strip contains "-" character then it removes one more characters next to it.

>>> a = 'image-abc-1.2.0-12_1234_123'
>>> b = a.strip('image-')
>>> print b
bc-1.2.0-12_1234_123


From the above print statement we can see that instead of 'bc-1.2.0-12_1234_123', it prints only 'bc-1.2.0-12_1234_123'. 
The first character "a" next to "-" is missing.
History
Date User Action Args
2010-05-12 18:29:39Balachander.Ganesansetrecipients: + Balachander.Ganesan
2010-05-12 18:29:39Balachander.Ganesansetmessageid: <1273688979.04.0.976435378464.issue8700@psf.upfronthosting.co.za>
2010-05-12 18:29:37Balachander.Ganesanlinkissue8700 messages
2010-05-12 18:29:36Balachander.Ganesancreate