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 cheryl.sabella, terry.reedy
Date 2017-08-17.23:56:47
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1503014207.85.0.934840671082.issue31001@psf.upfronthosting.co.za>
In-reply-to
Content
Coverage now 95%.  We are getting close.  Still not covered in highlight group: 
 
create_page_highlight:  # Highlight only.
    text.bind('<Double-Button-1>', lambda e: 'break')
    text.bind('<B1-Motion>', lambda e: 'break')
Callbacks are never called. I presume that these mask something.  I am not sure that they are needed.

save_new:  # Same as for keys.
        if not idleConf.userCfg['highlight'].has_section(theme_name): 
Never false.

delete_custom:  # Same as for keys.
        if not item_list: 
            self.custom_theme_on['state'] = DISABLED 
            self.customlist.SetMenu(item_list, '- no custom themes -') 
        else: 
            self.customlist.SetMenu(item_list, item_list[0]) 
Condition never false, else never executed.
History
Date User Action Args
2017-08-17 23:56:47terry.reedysetrecipients: + terry.reedy, cheryl.sabella
2017-08-17 23:56:47terry.reedysetmessageid: <1503014207.85.0.934840671082.issue31001@psf.upfronthosting.co.za>
2017-08-17 23:56:47terry.reedylinkissue31001 messages
2017-08-17 23:56:47terry.reedycreate