asyncio: Fold some long lines.
diff --git a/Lib/asyncio/selector_events.py b/Lib/asyncio/selector_events.py
index f7bc61a..e61a88d 100644
--- a/Lib/asyncio/selector_events.py
+++ b/Lib/asyncio/selector_events.py
@@ -416,7 +416,8 @@
                 tulip_log.exception('pause_writing() failed')
 
     def _maybe_resume_protocol(self):
-        if self._protocol_paused and self.get_write_buffer_size() <= self._low_water:
+        if (self._protocol_paused and
+            self.get_write_buffer_size() <= self._low_water):
             self._protocol_paused = False
             try:
                 self._protocol.resume_writing()
diff --git a/Lib/asyncio/tasks.py b/Lib/asyncio/tasks.py
index 6385017..2a21a4b 100644
--- a/Lib/asyncio/tasks.py
+++ b/Lib/asyncio/tasks.py
@@ -62,8 +62,9 @@
             code = func.__code__
             filename = code.co_filename
             lineno = code.co_firstlineno
-            logger.error('Coroutine %r defined at %s:%s was never yielded from',
-                         func.__name__, filename, lineno)
+            logger.error(
+                'Coroutine %r defined at %s:%s was never yielded from',
+                func.__name__, filename, lineno)
 
 
 def coroutine(func):