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 lukasz.langa
Recipients lukasz.langa, python-dev, wolfmanx
Date 2012-12-31.13:04:12
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1356959052.28.0.252129520959.issue16820@psf.upfronthosting.co.za>
In-reply-to
Content
For the record, the bug that caused the following to be equivalent:

  parser['DEFAULT'] = {'option': 'value'} 
  parser['DEFAULT'].update({'option': 'value'})

has been fixed for 3.3.1+ only. This way it's going to be easier for users to reason about the fix ("it was broken in 3.2.0 - 3.3.0").

Note that the bug only affected __setitem__ on the default section.
History
Date User Action Args
2012-12-31 13:04:12lukasz.langasetrecipients: + lukasz.langa, python-dev, wolfmanx
2012-12-31 13:04:12lukasz.langasetmessageid: <1356959052.28.0.252129520959.issue16820@psf.upfronthosting.co.za>
2012-12-31 13:04:12lukasz.langalinkissue16820 messages
2012-12-31 13:04:12lukasz.langacreate