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 eryksun
Recipients Drekin, eryksun, larry, paul.moore, steve.dower, tim.golden, zach.ware
Date 2015-08-01.19:34:20
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1438457660.93.0.222653229319.issue24771@psf.upfronthosting.co.za>
In-reply-to
Content
64-bit 3.5.0b4 works for me in Windows 7. Try loading _tkinter.pyd in [Dependency Walker][1]. Or try loading the dependent DLLs directly via ctypes:

    import os
    import _ctypes

    dlls_path = os.path.dirname(_ctypes.__file__)
    for d in ('tcl86t.dll', 'tk86t.dll'):
        path = os.path.join(dlls_path, d)
        try:
            _ctypes.LoadLibrary(path)
        except OSError:
            print('failed:', path)

[1]: http://dependencywalker.com
History
Date User Action Args
2015-08-01 19:34:20eryksunsetrecipients: + eryksun, paul.moore, larry, tim.golden, zach.ware, Drekin, steve.dower
2015-08-01 19:34:20eryksunsetmessageid: <1438457660.93.0.222653229319.issue24771@psf.upfronthosting.co.za>
2015-08-01 19:34:20eryksunlinkissue24771 messages
2015-08-01 19:34:20eryksuncreate