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-11-22.21:10:20
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1511385020.6.0.213398074469.issue32100@psf.upfronthosting.co.za>
In-reply-to
Content
The reason double-clicking got worse from 3.6.3 to now is this.  Previously, browser.ModuleBrowserTreeItem.OnDoubleClick ignored the file_open global (set to pyshell.flist.open in .__init__) and called pyshell.flist.open.  The Class and Method OnDoubleClick called file_open.  So double-clicking a file name in pathbrowser opened the file, but expanding a file and double-clicking a class or function name raised "'NoneType' object is not callable".  I don't know if I ever tried the latter before.  We subsequently changed the Module DoubleClick to also use file_open, so double clicking a file name also raises. (I meant to submit this yesterday.)
History
Date User Action Args
2017-11-22 21:10:20terry.reedysetrecipients: + terry.reedy, cheryl.sabella
2017-11-22 21:10:20terry.reedysetmessageid: <1511385020.6.0.213398074469.issue32100@psf.upfronthosting.co.za>
2017-11-22 21:10:20terry.reedylinkissue32100 messages
2017-11-22 21:10:20terry.reedycreate