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 simonltwick
Recipients simonltwick
Date 2017-11-21.17:46:10
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1511286370.98.0.213398074469.issue32108@psf.upfronthosting.co.za>
In-reply-to
Content
If you assign a ConfigParser section back to the parent ConfigParser object (say after updating the section), the section is emptied.

(I realise now that you don't need to assign the section back to the parent as it's a proxy for the section in the parent already - but still it does not behave as you would expect):
code: 
        from configparser import ConfigParser
        config = ConfigParser()
        config['test'] = {'key': 'value'}
        section = config['test']
        section['key'] = 'different'
        print("before: config['test'] is %s" % dict(config['test']))
        config['test'] = section
        print("after: config['test'] is %s" % dict(config['test']))
        # the section is now printed as {}
History
Date User Action Args
2017-11-21 17:46:11simonltwicksetrecipients: + simonltwick
2017-11-21 17:46:10simonltwicksetmessageid: <1511286370.98.0.213398074469.issue32108@psf.upfronthosting.co.za>
2017-11-21 17:46:10simonltwicklinkissue32108 messages
2017-11-21 17:46:10simonltwickcreate