diff options
author | Barry Warsaw <barry@python.org> | 2010-09-22 20:58:04 (GMT) |
---|---|---|
committer | Barry Warsaw <barry@python.org> | 2010-09-22 20:58:04 (GMT) |
commit | 31c604d3a7ed0872b0a861ce8480245ff31db37c (patch) | |
tree | 4c67b4664798ce9d4d4770f27983356d7c9d9520 /Lib/test/test_errno.py | |
parent | 0258ce8f0a992ffe24a7b77314603cc7224c3971 (diff) | |
download | cpython-31c604d3a7ed0872b0a861ce8480245ff31db37c.zip cpython-31c604d3a7ed0872b0a861ce8480245ff31db37c.tar.gz cpython-31c604d3a7ed0872b0a861ce8480245ff31db37c.tar.bz2 |
Issue 9916: Add some missing errno symbols.
Diffstat (limited to 'Lib/test/test_errno.py')
-rwxr-xr-x | Lib/test/test_errno.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Lib/test/test_errno.py b/Lib/test/test_errno.py index e7d5ce5..f414a87 100755 --- a/Lib/test/test_errno.py +++ b/Lib/test/test_errno.py @@ -20,7 +20,8 @@ class ErrnoAttributeTests(unittest.TestCase): def test_using_errorcode(self): # Every key value in errno.errorcode should be on the module. for value in errno.errorcode.values(): - self.assertTrue(hasattr(errno, value), 'no %s attr in errno' % value) + self.assertTrue(hasattr(errno, value), + 'no %s attr in errno' % value) class ErrorcodeTests(unittest.TestCase): |