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 terry.reedy
Recipients Adrian Wielgosik, dheiberg, hongweipeng, lukasz.langa, terry.reedy
Date 2018-12-14.20:05:28
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1544817929.01.0.788709270274.issue35448@psf.upfronthosting.co.za>
In-reply-to
Content
Since the code and doc agree, and since the proposal is to add a call parameter, this would be an enhancement for next release only, not a bug fix.

The proposal seems reasonable.  I might use it for IDLE.

IDLE uses .read within this subclass method.

    def Load(self):
        "Load the configuration file from disk."
        if self.file:  # '' for at least some tests
            self.read(self.file) 

The default config files in idlelib should be present.  (I should see what happens if not.  Does every 'get' pass a seeming redundant and possibly inconsistent backup default?)  I might use the new parameter here.  

User override config files and even the config directory are optional, so the current behavior is fine.
History
Date User Action Args
2018-12-14 20:05:29terry.reedysetrecipients: + terry.reedy, lukasz.langa, Adrian Wielgosik, hongweipeng, dheiberg
2018-12-14 20:05:29terry.reedysetmessageid: <1544817929.01.0.788709270274.issue35448@psf.upfronthosting.co.za>
2018-12-14 20:05:28terry.reedylinkissue35448 messages
2018-12-14 20:05:28terry.reedycreate