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 pitrou
Recipients gpolo, pitrou
Date 2010-10-09.10:18:28
SpamBayes Score 0.00014483584
Marked as misclassified No
Message-id <1286619510.51.0.775607940456.issue10056@psf.upfronthosting.co.za>
In-reply-to
Content
This is only with 3.1. Following patch allows building:

Index: setup.py
===================================================================
--- setup.py	(révision 85336)
+++ setup.py	(copie de travail)
@@ -1450,7 +1450,7 @@
         # The versions with dots are used on Unix, and the versions without
         # dots on Windows, for detection by cygwin.
         tcllib = tklib = tcl_includes = tk_includes = None
-        for version in ['8.5', '85', '8.4', '84', '8.3', '83', '8.2',
+        for version in ['8.6', '86', '8.5', '85', '8.4', '84', '8.3', '83', '8.2',
                         '82', '8.1', '81', '8.0', '80']:
             tklib = self.compiler.find_library_file(lib_dirs, 'tk' + version)
             tcllib = self.compiler.find_library_file(lib_dirs, 'tcl' + version)


However, there is then a test failure:

======================================================================
FAIL: test_tag_configure (tkinter.test.test_ttk.test_widgets.TreeviewTest)
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/home/antoine/py3k/31/Lib/tkinter/test/test_ttk/test_widgets.py", line 1116, in test_tag_configure
    'blue')
AssertionError: <color object at 0x202a8f0> != 'blue'
History
Date User Action Args
2010-10-09 10:18:30pitrousetrecipients: + pitrou, gpolo
2010-10-09 10:18:30pitrousetmessageid: <1286619510.51.0.775607940456.issue10056@psf.upfronthosting.co.za>
2010-10-09 10:18:28pitroulinkissue10056 messages
2010-10-09 10:18:28pitroucreate