(self)
| 155 | |
| 156 | @asyncio.coroutine |
| 157 | def wait_closed(self): # pragma: no cover |
| 158 | warnings.warn( |
| 159 | 'wait_closed() coroutine is deprecated. use close() instead', |
| 160 | DeprecationWarning) |
| 161 | |
| 162 | return (yield from self.close()) |
| 163 | |
| 164 | @asyncio.coroutine |
| 165 | def write_eof(self): |