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 berker.peksag
Recipients Ivailo.Monev, berker.peksag, brianyardy, eric.araujo, r.david.murray
Date 2016-02-14.21:52:35
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1455486755.27.0.904393451207.issue19841@psf.upfronthosting.co.za>
In-reply-to
Content
Thanks for the patch, Ivailo.

The following changes are going to break the public API:

    -    def get(self, section, option, raw=False, vars=None):
    +    def get(self, section, option, raw=False, vvars=None):

    -    def items(self, section, raw=False, vars=None):
    +    def items(self, section, raw=False, vvars=None):

Also,

    -class RawConfigParser:
    +class RawConfigParser(object):

There are a few differences between old-style and new-style classes. RawConfigParser implements collections.abs.MutableMapping so this isn't a problem in Python 3.

Closing this as "won't fix".
History
Date User Action Args
2016-02-14 21:52:35berker.peksagsetrecipients: + berker.peksag, eric.araujo, r.david.murray, Ivailo.Monev, brianyardy
2016-02-14 21:52:35berker.peksagsetmessageid: <1455486755.27.0.904393451207.issue19841@psf.upfronthosting.co.za>
2016-02-14 21:52:35berker.peksaglinkissue19841 messages
2016-02-14 21:52:35berker.peksagcreate