Hi Steve, Thank you, you're correct. I can include the patch with attribution in the github repo. Best, Roger On 6/20/21 5:43 PM, Steve wrote: Tested on Xubuntu 20.04 with Idle version 3.8.5 On clicking "Export to HTML" and selecting a file name, an empty HTML file is created. This is due to: AttributeError: module 'cgi' has no attribute 'escape' To fix the problem, change line 88: import cgi to import html and line 145 from out.append(cgi.escape(content)) to out.append(html.escape(content)) Export...
Hi Tom, IdleX 1.16 does not work with Python 3.6+ due to changes in IDLE itself. IdleX 1.18 contains a fork of the 3.5 IDLE code. You won't be able to move LineNumbers.py into IDLE for your version of Python. You should be able to create a launcher to use IdleX instead of IDLE. Regards, Roger
Yes, IdleX will work with 3.6/3.7.
As for a github move, I agree. I have plans in the next few months to have a full...
I didn't update the string with the version number in the code with the 1.13 release....
I haven't tried Qt5 just yet. It should be straight forward to add a custom event...
I removed IPython support for now. I don't have plans to incorporate it in a furture...
I have no plans on future support of IPython at the moment. IdleX works with the...