summaryrefslogtreecommitdiffstats
path: root/Lib/test
diff options
context:
space:
mode:
authorGiampaolo RodolĂ  <g.rodola@gmail.com>2010-05-06 18:24:02 (GMT)
committerGiampaolo RodolĂ  <g.rodola@gmail.com>2010-05-06 18:24:02 (GMT)
commit902b57b6f6693bd1b5bb9161ad52d8109177aee0 (patch)
treea924aac70593b5e8bcc68d06765866ae0da36115 /Lib/test
parent1222669b440e163885be8661cf81c3d46a73b337 (diff)
downloadcpython-902b57b6f6693bd1b5bb9161ad52d8109177aee0.zip
cpython-902b57b6f6693bd1b5bb9161ad52d8109177aee0.tar.gz
cpython-902b57b6f6693bd1b5bb9161ad52d8109177aee0.tar.bz2
Merged revisions 80875 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk ........ r80875 | giampaolo.rodola | 2010-05-06 19:57:06 +0200 (gio, 06 mag 2010) | 1 line Fix asyncore issues 8573 and 8483: _strerror might throw ValueError; asyncore.__getattr__ cheap inheritance caused confusing error messages when accessing undefined class attributes; added an alias for __str__ which now is used as a fallback for __repr__ ........
Diffstat (limited to 'Lib/test')
-rw-r--r--Lib/test/test_asyncore.py12
1 files changed, 12 insertions, 0 deletions
diff --git a/Lib/test/test_asyncore.py b/Lib/test/test_asyncore.py
index ce835aa..670ee43 100644
--- a/Lib/test/test_asyncore.py
+++ b/Lib/test/test_asyncore.py
@@ -301,6 +301,18 @@ class DispatcherTests(unittest.TestCase):
'warning: unhandled accept event']
self.assertEquals(lines, expected)
+ def test_issue_8594(self):
+ d = asyncore.dispatcher(socket.socket())
+ # make sure the error message no longer refers to the socket
+ # object but the dispatcher instance instead
+ try:
+ d.foo
+ except AttributeError, err:
+ self.assertTrue('dispatcher instance' in str(err))
+ else:
+ self.fail("exception not raised")
+ # test cheap inheritance with the underlying socket
+ self.assertEqual(d.family, socket.AF_INET)
class dispatcherwithsend_noread(asyncore.dispatcher_with_send):