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 thunderbug
Recipients
Date 2003-04-29.03:41:09
SpamBayes Score
Marked as misclassified
Message-id
In-reply-to
Content
Tkinter.py, line 1572, 2.3b1 from python.org....

Attempts to compare tcl_version with
_tkinter.TCL_VERSION.  Both have the same value, 8.4,
but...

    tcl_version is a <type 'float'> and
    _tkinter.TCL_VERSION is a <type 'str'>

Temporary kludge: wrap it...    str(tcl_version)
History
Date User Action Args
2007-08-23 14:12:54adminlinkissue729317 messages
2007-08-23 14:12:54admincreate