[issue6864] IDLE 2.6.1 locks up on Mac OS 10.6

Ronald Oussoren report at bugs.python.org
Sun Sep 20 21:26:12 CEST 2009


Ronald Oussoren <ronaldoussoren at 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 <report at bugs.python.org>
<http://bugs.python.org/issue6864>
_______________________________________


More information about the Python-bugs-list mailing list