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 till
Recipients r.david.murray, till
Date 2009-07-18.22:03:05
SpamBayes Score 0.039138924
Marked as misclassified No
Message-id <1247954587.36.0.855323202841.issue6517@psf.upfronthosting.co.za>
In-reply-to
Content
Afacs it is not documented to work. Here is the testcase:

#!/usr/bin/python
# vim: fileencoding=utf8

import ConfigParser
import tempfile

file = tempfile.TemporaryFile(mode='rw+b')
file.write("[s]\nf=%%(b)s\n")
file.seek(0)
config = ConfigParser.ConfigParser()

config.readfp(file)

print config.get("s", "f")

file.close()
History
Date User Action Args
2009-07-18 22:03:07tillsetrecipients: + till, r.david.murray
2009-07-18 22:03:07tillsetmessageid: <1247954587.36.0.855323202841.issue6517@psf.upfronthosting.co.za>
2009-07-18 22:03:05tilllinkissue6517 messages
2009-07-18 22:03:05tillcreate