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 terry.reedy
Date 2016-07-01.19:19:31
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1467400772.1.0.605855673918.issue27437@psf.upfronthosting.co.za>
In-reply-to
Content
An important feature of IDLE is that it has default configuration values in idlelib/config-xyz.def files that can be overriden by user values in $HOME/.idlerc/config-xyz.cfg files. IDLE should run and tests should pass both without and with user overrides. IDLE's config module currently hard-codes the file names.  However, configparser can read from files it opens from a filename (.read), iterables of strings (.read_file), strings (.read_string), and dictionaries (.read_dict). This issue is about exposing this flexibility to IDLE tests and being able to clear and reset the user values for each test.
History
Date User Action Args
2016-07-01 19:19:32terry.reedysetrecipients: + terry.reedy
2016-07-01 19:19:32terry.reedysetmessageid: <1467400772.1.0.605855673918.issue27437@psf.upfronthosting.co.za>
2016-07-01 19:19:32terry.reedylinkissue27437 messages
2016-07-01 19:19:31terry.reedycreate