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-08.01:58:44
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1467943126.13.0.718896019337.issue27465@psf.upfronthosting.co.za>
In-reply-to
Content
The 'General' tab of the IDLE configuration menu allows a user to add entries to the Help menu that display a text when clicked.  A user might want more than one text available for a given 'topic', such as a doc and how-to for a package.  However, there is no need to have duplicate entries, as up to 30 chars are allowed.  "Package - doc" and "Package - how" would be clearer than "Package" and "Package".  Issue 27380 makes checking for unique entries easy as that is already done for user configuration file section names and the same base class is now used for help source names.

Currently, names are displayed in the order added.  I believe sorting would be better, especially when one adds more than 2 entries.  That should also be easy.

Existing duplicates would not be a problem for IDLE as the check would only apply when adding or editing an item.  Python's stable list.sort would keep existing duplicates in the same relative order.  I will *not* use the doc path to break ties.
History
Date User Action Args
2016-07-08 01:58:46terry.reedysetrecipients: + terry.reedy
2016-07-08 01:58:46terry.reedysetmessageid: <1467943126.13.0.718896019337.issue27465@psf.upfronthosting.co.za>
2016-07-08 01:58:45terry.reedylinkissue27465 messages
2016-07-08 01:58:44terry.reedycreate