-
Notifications
You must be signed in to change notification settings - Fork 292
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
Can't import tkinter
in Python 2.7
#262
Comments
I'm also having this problem on Ubuntu 14.04 and Debian 7 - _splitdict seems to have been introduced around Python 2.7.9; it doesn't exist in 2.7.6, for example, which is the default system python for Ubuntu 14.04. |
This error goes away after capitalizing tkinter's import. Change 'tkinter' to 'Tkinter' and it'll hopefully go away! (I saw this come up on my 14.04 machine) |
@sebfio That defeats the point of using |
…er py27 versions)
I noticed the same issue as @DaveyBiggers with Ubuntu 14.04.5 LTS, Python 2.7.6, future 0.16.0
I created a pull request with a simple fix. |
Fix for issue #262 (non-existing tkinter imports in older py27 versions)
Resolved by #379 |
I get an error when trying to import
tkinter
:The import of
_join
was added as fix for #233 and also includes_splitdict
, and_stringify
which don't exist in my Python 2.7sTkinter
module. The perils of implementation details I guess.The text was updated successfully, but these errors were encountered: