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 vstinner
Recipients Govind, vstinner
Date 2008-10-06.13:09:07
SpamBayes Score 0.0013785119
Marked as misclassified No
Message-id <1223298549.66.0.571137908735.issue4054@psf.upfronthosting.co.za>
In-reply-to
Content
It's not a bug. Please read the documentation of the split() method:
   http://docs.python.org/library/stdtypes.html#str.split

If you want to get the value after "=", use:
   value = line.split("FILE=", 1)[1]
or:
   value = line[len('FILE='):]
or:
   value = line.partition('FILE=')[2]
or:
   etc.
History
Date User Action Args
2008-10-06 13:09:09vstinnersetrecipients: + vstinner, Govind
2008-10-06 13:09:09vstinnersetmessageid: <1223298549.66.0.571137908735.issue4054@psf.upfronthosting.co.za>
2008-10-06 13:09:08vstinnerlinkissue4054 messages
2008-10-06 13:09:07vstinnercreate