diff options
author | Victor Stinner <victor.stinner@gmail.com> | 2015-01-08 23:09:10 (GMT) |
---|---|---|
committer | Victor Stinner <victor.stinner@gmail.com> | 2015-01-08 23:09:10 (GMT) |
commit | 15cc678d8971f5ee1a7ea5e88bcd22413601f033 (patch) | |
tree | ea7e29de0dc1817be74197a19db93957fe3459bf /Lib/asyncio/unix_events.py | |
parent | 8d9c145f61d43fb9d43ad43c04744ffd32c93d8c (diff) | |
download | cpython-15cc678d8971f5ee1a7ea5e88bcd22413601f033.zip cpython-15cc678d8971f5ee1a7ea5e88bcd22413601f033.tar.gz cpython-15cc678d8971f5ee1a7ea5e88bcd22413601f033.tar.bz2 |
asyncio: Truncate to 80 columns
Diffstat (limited to 'Lib/asyncio/unix_events.py')
-rw-r--r-- | Lib/asyncio/unix_events.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Lib/asyncio/unix_events.py b/Lib/asyncio/unix_events.py index d1461fd..91e43cf 100644 --- a/Lib/asyncio/unix_events.py +++ b/Lib/asyncio/unix_events.py @@ -69,7 +69,8 @@ class _UnixSelectorEventLoop(selector_events.BaseSelectorEventLoop): """ if (coroutines.iscoroutine(callback) or coroutines.iscoroutinefunction(callback)): - raise TypeError("coroutines cannot be used with add_signal_handler()") + raise TypeError("coroutines cannot be used " + "with add_signal_handler()") self._check_signal(sig) self._check_closed() try: |