mirror of https://github.com/python/cpython
Merged revisions 70531 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk ........ r70531 | benjamin.peterson | 2009-03-23 00:24:58 +0200 (Mon, 23 Mar 2009) | 1 line AttributeError can be thrown during recursion errors ........
This commit is contained in:
parent
ae5657e1ff
commit
f747aa4308
|
@ -107,7 +107,7 @@ class cPickleDeepRecursive(unittest.TestCase):
|
|||
for n in nodes:
|
||||
n.connections = list(nodes)
|
||||
n.connections.remove(n)
|
||||
self.assertRaises(RuntimeError, cPickle.dumps, n)
|
||||
self.assertRaises((AttributeError, RuntimeError), cPickle.dumps, n)
|
||||
|
||||
def test_issue3179(self):
|
||||
# Safe test, because I broke this case when fixing the
|
||||
|
|
Loading…
Reference in New Issue