Ronald Oussoren <ronaldousso...@mac.com> added the comment:

To explain my previous entry about shipping 8.4 and 8.5 versions of 
_tkinter, one way to implement this is:

* Build two copies of _tkinter.so: _tkinter84.so and _tkinter85.so
* Add _tkinter.py to Lib/plat-mac with the following contents:

    try:
       from _tkinter85 import *
    except ImportError:
       from _tkinter84 import *

----------

_______________________________________
Python tracker <rep...@bugs.python.org>
<http://bugs.python.org/issue6864>
_______________________________________
_______________________________________________
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com

Reply via email to