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 Narendra L
Recipients Narendra L, serhiy.storchaka
Date 2018-02-05.11:19:09
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1517829549.54.0.467229070634.issue32772@psf.upfronthosting.co.za>
In-reply-to
Content
If you see output dttrace.... e is missing 

see working example
>>> test = "Cookie:  test-Debug=edttrace=expires=1517828996"
>>> test.lstrip('Cookie:  test-Debug=')
'dttrace=expires=1517828996'
# e missing here


>>> test = "Cookie:  test-Debug=adttrace=expires=1517828996"
>>> test.lstrip('Cookie:  test-Debug=')
'adttrace=expires=1517828996'
# Works correct here
History
Date User Action Args
2018-02-05 11:19:09Narendra Lsetrecipients: + Narendra L, serhiy.storchaka
2018-02-05 11:19:09Narendra Lsetmessageid: <1517829549.54.0.467229070634.issue32772@psf.upfronthosting.co.za>
2018-02-05 11:19:09Narendra Llinkissue32772 messages
2018-02-05 11:19:09Narendra Lcreate