-
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
tkinter._flatten and others not (easily) accessible #233
Comments
Thanks for the feedback, Guilherme! I have added _flatten and _cnfmerge to the v0.16.x branch. I would be very grateful if you could provide me with a comprehensive list of other underscore-prefixed names that deserve to be added. We could add these to the upcoming v0.16 release. |
I believe the full list is
|
I think this is fixed now in v0.16.0. Please feel free to re-open this issue if you encounter any more missing |
I had the problem - I tried the above - For me the issue was I had installed a newer version of Anaconda without deleting the earlier - It had always worked before - It worked on other computers - When I deleted the earlier versions, it worked again - Not sure if that's related... |
Hello,
The tkinter package included here does a
from Tkinter import *
, which misses at least_flatten
, and_cnfmerge
which might be used by tk extensions. Therefore the typical method of handling Python 2/3 causes it to stop working when combined with python-future. Example:after running the above on stock Python 2 or Python 3
tkinter._flatten
is available, but not when using python-future. Packages that make use of that need to be patched with something like:The text was updated successfully, but these errors were encountered: