1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
|
////////////////////////////////////////////////////////////////////////
test_class
////////////////////////////////////////////////////////////////////////
test test_class failed -- hash(C1()) should raise <class 'exceptions.TypeError'>
Also hash(C2())
Also stack blowout, recursing between
#5921 0x0003868c in slot_tp_call (self=0x5b0c90, args=0x338030, kwds=0x0) at ../Objects/typeobject.c:4583
#5922 0x00021124 in PyObject_Call (func=0x5b0c90, arg=0x3384c0, kw=0x134e10) at ../Objects/abstract.c:1791
////////////////////////////////////////////////////////////////////////
test_minidom
////////////////////////////////////////////////////////////////////////
test test_minidom crashed -- <class 'exceptions.TypeError'>: Error when calling the metaclass bases
Cannot create a consistent method resolution
order (MRO) for bases object, GetattrMagic
////////////////////////////////////////////////////////////////////////
test_xml_etree
////////////////////////////////////////////////////////////////////////
3 items had failures:
18 of 32 in test.test_xml_etree.find
1 of 3 in test.test_xml_etree.sanity
8 of 12 in test.test_xml_etree.xinclude
***Test Failed*** 27 failures.
test test_xml_etree failed -- 27 of 91 doctests failed
////////////////////////////////////////////////////////////////////////
test_xml_etree_c
////////////////////////////////////////////////////////////////////////
**********************************************************************
File "/Users/guido/projects/python/py3k/Lib/test/test_xml_etree_c.py", line 112, in test.test_xml_etree_c.find
Failed example:
elem.find("section/tag").tag
Exception raised:
Traceback (most recent call last):
File "/Users/guido/projects/python/py3k/Lib/doctest.py", line 1207, in __run
compileflags, 1) in test.globs
File "<doctest test.test_xml_etree_c.find[3]>", line 1, in <module>
elem.find("section/tag").tag
AttributeError: 'NoneType' object has no attribute 'tag'
////////////////////////////////////////////////////////////////////////
test_descr
////////////////////////////////////////////////////////////////////////
Testing hash of mutable subclasses...
Traceback (most recent call last):
File "../Lib/test/test_descr.py", line 4096, in <module>
test_main()
File "../Lib/test/test_descr.py", line 4059, in test_main
hashinherit()
File "../Lib/test/test_descr.py", line 3108, in hashinherit
raise TestFailed, "hash() of dict subclass should fail"
test.test_support.TestFailed: hash() of dict subclass should fail
////////////////////////////////////////////////////////////////////////
test_gc
////////////////////////////////////////////////////////////////////////
testing finalizers... restoring automatic collection
Traceback (most recent call last):
File "../Lib/test/test_gc.py", line 636, in <module>
test()
File "../Lib/test/test_gc.py", line 623, in test
test_all()
File "../Lib/test/test_gc.py", line 586, in test_all
run_test("finalizers", test_finalizer)
File "../Lib/test/test_gc.py", line 18, in run_test
thunk()
File "../Lib/test/test_gc.py", line 125, in test_finalizer
raise TestFailed, "didn't find obj in garbage (finalizer)"
test.test_support.TestFailed: didn't find obj in garbage (finalizer)
////////////////////////////////////////////////////////////////////////
test_set
////////////////////////////////////////////////////////////////////////
======================================================================
FAIL: test_contains (__main__.TestSetSubclass)
----------------------------------------------------------------------
Traceback (most recent call last):
File "../Lib/test/test_set.py", line 52, in test_contains
self.assert_(self.thetype(self.letters) in s)
AssertionError
======================================================================
FAIL: test_discard (__main__.TestSetSubclass)
----------------------------------------------------------------------
Traceback (most recent call last):
File "../Lib/test/test_set.py", line 302, in test_discard
self.assert_(self.thetype(self.word) in s)
AssertionError
======================================================================
FAIL: test_hash (__main__.TestSetSubclass)
----------------------------------------------------------------------
Traceback (most recent call last):
File "../Lib/test/test_set.py", line 265, in test_hash
self.assertRaises(TypeError, hash, self.s)
AssertionError: TypeError not raised
======================================================================
FAIL: test_remove (__main__.TestSetSubclass)
----------------------------------------------------------------------
Traceback (most recent call last):
File "../Lib/test/test_set.py", line 291, in test_remove
self.assert_(self.thetype(self.word) in s)
AssertionError
////////////////////////////////////////////////////////////////////////
test_compare
////////////////////////////////////////////////////////////////////////
test test_compare failed -- Traceback (most recent call last):
File "/Users/nnorwitz/build/python/py3k.2/Lib/test/test_compare.py", line 28, in test_comparisons
self.assertEqual(a, b)
AssertionError: 2 != (2+0j)
////////////////////////////////////////////////////////////////////////
test_complex
////////////////////////////////////////////////////////////////////////
======================================================================
FAIL: test_pow (test.test_complex.ComplexTest)
----------------------------------------------------------------------
Traceback (most recent call last):
File "/Users/nnorwitz/build/python/py3k.2/Lib/test/test_complex.py", line 130, in test_pow
self.assertEqual(a ** 0j, 1)
AssertionError: (1+0j) != 1
======================================================================
FAIL: test_richcompare (test.test_complex.ComplexTest)
----------------------------------------------------------------------
Traceback (most recent call last):
File "/Users/nnorwitz/build/python/py3k.2/Lib/test/test_complex.py", line 96, in test_richcompare
self.assertRaises(OverflowError, complex.__eq__, 1+1j, 1L<<10000)
AssertionError: OverflowError not raised
|