This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author ronaldoussoren
Recipients barry, darkspork, dpogg1, ned.deily, ronaldoussoren, wordtech
Date 2009-09-20.19:26:11
SpamBayes Score 0.0026560146
Marked as misclassified No
Message-id <1253474772.29.0.184005776715.issue6864@psf.upfronthosting.co.za>
In-reply-to
Content
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 *
History
Date User Action Args
2009-09-20 19:26:12ronaldoussorensetrecipients: + ronaldoussoren, barry, wordtech, ned.deily, dpogg1, darkspork
2009-09-20 19:26:12ronaldoussorensetmessageid: <1253474772.29.0.184005776715.issue6864@psf.upfronthosting.co.za>
2009-09-20 19:26:11ronaldoussorenlinkissue6864 messages
2009-09-20 19:26:11ronaldoussorencreate