Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Python's IDLE library (idlelib) has different package names in Python 2.x and 3.x #7

Open
mikefenton opened this issue Jun 28, 2017 · 0 comments

Comments

@mikefenton
Copy link

The GUI uses exception handling to try to import Tkinter, as the module can be named Tkinter or tkinter. A similar check should be implemented for the idlelib imports as a few things seem to have changed in the most recent versions of idlelib.

In Python 2.x, all module names are correct as currently implemented in the GUI:

from idlelib.Percolator import Percolator
from idlelib.ColorDelegator import ColorDelegator
from idlelib.textView import view_file

However, in Python 3.x some changes have been made. Module names are no longer capitalised, and the idlelib.ColorDelegator module has been re-named. An alternative implementation similar to the tkinter case above should be:

from idlelib.percolator import Percolator
from idlelib.colorizer import ColorDelegator
from idlelib.textview import view_file

All of the above means that the GUI does not run any more in Python 3.x.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant