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 zach.ware
Recipients gpolo, ned.deily, python-dev, serhiy.storchaka, terry.reedy, vajrasky, zach.ware
Date 2013-11-05.17:58:58
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1383674339.3.0.02234336499.issue19085@psf.upfronthosting.co.za>
In-reply-to
Content
Looks like the last commit broke 8.5.15 on Windows; in particular, on line 25 of widget_tests.py, int_round doesn't exist.  Replacing 'int_round' with 'round' allows most tests to pass, but I still get these two failures:

======================================================================
FAIL: test_insertwidth (tkinter.test.test_tkinter.test_widgets.EntryTest)
----------------------------------------------------------------------
Traceback (most recent call last):
  File "P:\Projects\OSS\Python\cpython\lib\tkinter\test\test_tkinter\test_widget
s.py", line 336, in test_insertwidth
    self.checkParam(widget, 'insertwidth', 0.9, expected=2)
  File "P:\Projects\OSS\Python\cpython\lib\tkinter\test\widget_tests.py", line 6
6, in checkParam
    self.assertEqual2(widget[name], expected, eq=eq)
  File "P:\Projects\OSS\Python\cpython\lib\tkinter\test\widget_tests.py", line 5
0, in assertEqual2
    self.assertEqual(actual, expected, msg)
AssertionError: 1 != 2

======================================================================
FAIL: test_insertwidth (tkinter.test.test_tkinter.test_widgets.SpinboxTest)
----------------------------------------------------------------------
Traceback (most recent call last):
  File "P:\Projects\OSS\Python\cpython\lib\tkinter\test\test_tkinter\test_widget
s.py", line 336, in test_insertwidth
    self.checkParam(widget, 'insertwidth', 0.9, expected=2)
  File "P:\Projects\OSS\Python\cpython\lib\tkinter\test\widget_tests.py", line 6
6, in checkParam
    self.assertEqual2(widget[name], expected, eq=eq)
  File "P:\Projects\OSS\Python\cpython\lib\tkinter\test\widget_tests.py", line 5
0, in assertEqual2
    self.assertEqual(actual, expected, msg)
AssertionError: 1 != 2
History
Date User Action Args
2013-11-05 17:58:59zach.waresetrecipients: + zach.ware, terry.reedy, gpolo, ned.deily, python-dev, serhiy.storchaka, vajrasky
2013-11-05 17:58:59zach.waresetmessageid: <1383674339.3.0.02234336499.issue19085@psf.upfronthosting.co.za>
2013-11-05 17:58:59zach.warelinkissue19085 messages
2013-11-05 17:58:58zach.warecreate