mtTkinter icon indicating copy to clipboard operation
mtTkinter copied to clipboard

Legacy multi-threading support for Tkinter, Python 2.7 or earlier only

Results 3 mtTkinter issues
Sort by recently updated
recently updated
newest added

Project description says that there is only python 2.7 or lower support "`Python 2.7 or earlier only`", but with #6 there is now python 3 support. The description really confused...

Hi, I am getting this error: File "/Library/Frameworks/Python.framework/Versions/3.6/lib/python3.6/tkinter/__init__.py", line 3010, in get value = self.tk.call(self._w, 'get') File "/Library/Frameworks/Python.framework/Versions/3.6/lib/python3.6/site-packages/mttkinter/mtTkinter.py", line 136, in __call__ self._tk._event_queue.put((self._attr, args, kwargs, response_queue), True, 1) File "/Library/Frameworks/Python.framework/Versions/3.6/lib/python3.6/queue.py",...

question

[Wherever](https://stackoverflow.com/questions/16745507/tkinter-how-to-use-threads-to-preventing-main-event-loop-from-freezing) [I](https://stackoverflow.com/questions/36969724/multi-threading-in-tkinter-gui-threads-in-different-classes) [look](http://stupidpythonideas.blogspot.ru/2013/10/why-your-gui-app-freezes.html), everyone says that Tk/Tkinter has no facilities to call/send events into the main thread ([even in Py3](https://stackoverflow.com/questions/26703502/threads-and-tkinter-python-3)). So the only option is to poll some `queue` or...

question