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.

classification
Title: test_ttk_guionly fails on MacOSX 10.6
Type: behavior Stage:
Components: Tests Versions: Python 3.2
process
Status: closed Resolution: duplicate
Dependencies: Superseder: buildbot: test_ttk_guionly failures (test_traversal, test_tab_identifiers, test_identify, test_heading_callback)
View: 8445
Assigned To: Nosy List: donmez, flox
Priority: normal Keywords:

Created on 2010-09-11 09:48 by donmez, last changed 2022-04-11 14:57 by admin. This issue is now closed.

Messages (3)
msg116086 - (view) Author: Ismail Donmez (donmez) * Date: 2010-09-11 09:48
Using py3k branch revision 84707, on Mac OSX 10.6, case-sensitive HFS+ filesystem.


======================================================================
ERROR: test_tab_identifiers (tkinter.test.test_ttk.test_widgets.NotebookTest)
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/Users/cartman/Sources/py3k/Lib/tkinter/test/test_ttk/test_widgets.py", line 560, in test_tab_identifiers
    self.assertEqual(self.nb.tab('@5,5'), self.nb.tab('current'))
  File "/Users/cartman/Sources/py3k/Lib/tkinter/ttk.py", line 922, in tab
    return _val_or_dict(kw, self.tk.call, self._w, "tab", tab_id)
  File "/Users/cartman/Sources/py3k/Lib/tkinter/ttk.py", line 318, in _val_or_dict
    res = func(*(args + options))
_tkinter.TclError: tab '@5,5' not found

======================================================================
FAIL: test_identify (tkinter.test.test_ttk.test_widgets.WidgetTest)
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/Users/cartman/Sources/py3k/Lib/tkinter/test/test_ttk/test_widgets.py", line 27, in test_identify
    self.assertEqual(self.widget.identify(5, 5), "label")
AssertionError: 'Button.button' != 'label'
- Button.button
+ label


======================================================================
FAIL: test_traversal (tkinter.test.test_ttk.test_widgets.NotebookTest)
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/Users/cartman/Sources/py3k/Lib/tkinter/test/test_ttk/test_widgets.py", line 721, in test_traversal
    self.assertEqual(self.nb.select(), str(self.child1))
AssertionError: '.4320099472' != '.4320099600'
- .4320099472
?         ^^^
+ .4320099600
?         ^^^
msg116101 - (view) Author: Ismail Donmez (donmez) * Date: 2010-09-11 15:10
Btw I configured with;

./configure --with-wctype-functions --with-fpectl --with-wide-unicode --with-computed-gotos --enable-ipv6 --with-universal-archs=64-bit MACOSX_DEPLOYMENT_TARGET=10.6
msg116102 - (view) Author: Florent Xicluna (flox) * (Python committer) Date: 2010-09-11 15:20
This is a duplicate of #8445
History
Date User Action Args
2022-04-11 14:57:06adminsetgithub: 54042
2010-09-11 15:20:35floxsetstatus: open -> closed

nosy: + flox
messages: + msg116102

superseder: buildbot: test_ttk_guionly failures (test_traversal, test_tab_identifiers, test_identify, test_heading_callback)
resolution: duplicate
2010-09-11 15:10:31donmezsetmessages: + msg116101
2010-09-11 09:48:12donmezcreate