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 ned.deily
Recipients Sophie.Chancheong, ned.deily
Date 2013-12-25.07:26:15
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1387956376.72.0.972593960426.issue20054@psf.upfronthosting.co.za>
In-reply-to
Content
I was assuming you were using a Python 3.3 from a binary installer downloaded from python.org.  Those Pythons are built to dynamically link with a compatible Tcl and Tk 8.5 frameworks in /Library/Frameworks, such as the ActiveTcl 8.5 ones, and fall back to the Apple-supplied version in /System/Library/Frameworks.  If you are using a Python 3.3 from another source or built yourself from source, it may not behave that way.

If you are using the current Python.org 3.3.3 64-bit/32-bit installer, the signature should be:

$ /usr/local/bin/python3.3 -c "import sys; print(sys.version)"
3.3.3 (v3.3.3:c3896275c0f6, Nov 16 2013, 23:39:35)
[GCC 4.2.1 (Apple Inc. build 5666) (dot 3)]
$ /usr/local/bin/python3.3 -c "import _tkinter;print(_tkinter.__file__)"
/Library/Frameworks/Python.framework/Versions/3.3/lib/python3.3/lib-dynload/_tkinter.so
$ otool -L $(/usr/local/bin/python3.3 -c "import _tkinter;print(_tkinter.__file__)")
/Library/Frameworks/Python.framework/Versions/3.3/lib/python3.3/lib-dynload/_tkinter.so:
	/Library/Frameworks/Tcl.framework/Versions/8.5/Tcl (compatibility version 8.5.0, current version 8.5.15)
	/Library/Frameworks/Tk.framework/Versions/8.5/Tk (compatibility version 8.5.0, current version 8.5.15)
	/usr/lib/libSystem.B.dylib (compatibility version 1.0.0, current version 125.2.0)
History
Date User Action Args
2013-12-25 07:26:16ned.deilysetrecipients: + ned.deily, Sophie.Chancheong
2013-12-25 07:26:16ned.deilysetmessageid: <1387956376.72.0.972593960426.issue20054@psf.upfronthosting.co.za>
2013-12-25 07:26:16ned.deilylinkissue20054 messages
2013-12-25 07:26:15ned.deilycreate