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 zach.ware
Recipients Yavuz Selim Komur, lukasz.langa, r.david.murray, skip.montanaro, zach.ware
Date 2015-06-05.03:57:57
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1433476678.14.0.783327664452.issue24371@psf.upfronthosting.co.za>
In-reply-to
Content
Am I missing something here?

Python 3.6.0a0 (default:c2c3b79ba992, Jun  4 2015, 10:24:23)
>>> from configparser import ConfigParser
>>> cp = ConfigParser()
>>> cp.read_string("""\
... [remember]
... eth2.6 = True
... eth5 = True
... """)
>>> cp['remember']['eth2.6']
'True'
History
Date User Action Args
2015-06-05 03:57:58zach.waresetrecipients: + zach.ware, skip.montanaro, r.david.murray, lukasz.langa, Yavuz Selim Komur
2015-06-05 03:57:58zach.waresetmessageid: <1433476678.14.0.783327664452.issue24371@psf.upfronthosting.co.za>
2015-06-05 03:57:58zach.warelinkissue24371 messages
2015-06-05 03:57:57zach.warecreate