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_collections fails under Windows
Type: behavior Stage: needs patch
Components: Tests Versions: Python 3.1
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: Nosy List: benjamin.peterson, pitrou, rhettinger
Priority: release blocker Keywords:

Created on 2009-04-04 17:07 by pitrou, last changed 2022-04-11 14:56 by admin. This issue is now closed.

Messages (3)
msg85411 - (view) Author: Antoine Pitrou (pitrou) * (Python committer) Date: 2009-04-04 17:07
This is under Windows XP with VS 2008 Express:

test test_collections failed -- Traceback (most recent call last):
  File "Z:\py3k\__svn__\lib\test\test_collections.py", line 714, in
test_equalit
y
    self.assertNotEqual(od1, od2)       # different order implies inequality
AssertionError: OrderedDict([('f', 6), ('e', 5), ('a', 3), ('b', 2),
('c', 1), (
'd', 4)]) == OrderedDict([('a', 3), ('b', 2), ('c', 1), ('d', 4), ('f',
6), ('e'
, 5)])
msg85415 - (view) Author: Benjamin Peterson (benjamin.peterson) * (Python committer) Date: 2009-04-04 17:27
Fixed in r71176.
msg85417 - (view) Author: Antoine Pitrou (pitrou) * (Python committer) Date: 2009-04-04 17:37
> Fixed in r71176.

Thanks!
History
Date User Action Args
2022-04-11 14:56:47adminsetgithub: 49941
2009-04-04 17:37:31pitrousetmessages: + msg85417
2009-04-04 17:27:14benjamin.petersonsetstatus: open -> closed

nosy: + benjamin.peterson
messages: + msg85415

resolution: fixed
2009-04-04 17:07:24pitroucreate