mirror of
https://github.com/python/cpython.git
synced 2025-09-27 02:39:58 +00:00
Merged revisions 88604 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k ........ r88604 | giampaolo.rodola | 2011-02-25 21:05:48 +0100 (ven, 25 feb 2011) | 1 line (issue 11214) - fix asyncore.strerror test failure on AIX ........
This commit is contained in:
parent
63390b3cbb
commit
5217d3f9ca
1 changed files with 1 additions and 1 deletions
|
@ -330,7 +330,7 @@ class DispatcherTests(unittest.TestCase):
|
||||||
if hasattr(os, 'strerror'):
|
if hasattr(os, 'strerror'):
|
||||||
self.assertEqual(err, os.strerror(errno.EPERM))
|
self.assertEqual(err, os.strerror(errno.EPERM))
|
||||||
err = asyncore._strerror(-1)
|
err = asyncore._strerror(-1)
|
||||||
self.assertIn("unknown error", err.lower())
|
self.assertTrue(err != "")
|
||||||
|
|
||||||
|
|
||||||
class dispatcherwithsend_noread(asyncore.dispatcher_with_send):
|
class dispatcherwithsend_noread(asyncore.dispatcher_with_send):
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue