Issue 9916: Add some missing errno symbols.
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 @@
     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):