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 ciasoms
Recipients ciasoms, lukasz.langa
Date 2011-04-16.16:48:31
SpamBayes Score 1.6666421e-08
Marked as misclassified No
Message-id <1302972514.64.0.403074363027.issue11858@psf.upfronthosting.co.za>
In-reply-to
Content
configparser.ExtendedInterpolation in Python 3.2 has a bug that it will convert the section name in the interpolation to lowercase, and lead to an exception of NoSectionError if the section name has letters in uppercase.

In fact it just cannot pass the test of the second example in the doc (http://docs.python.org/py3k/library/configparser.html#configparser.ExtendedInterpolation).

The attached patch should fix it.
History
Date User Action Args
2011-04-16 16:48:34ciasomssetrecipients: + ciasoms, lukasz.langa
2011-04-16 16:48:34ciasomssetmessageid: <1302972514.64.0.403074363027.issue11858@psf.upfronthosting.co.za>
2011-04-16 16:48:31ciasomslinkissue11858 messages
2011-04-16 16:48:31ciasomscreate