(self)
| 263 | |
| 264 | @asyncio.coroutine |
| 265 | def receive_msg(self): |
| 266 | warnings.warn( |
| 267 | 'receive_msg() coroutine is deprecated. use receive() instead', |
| 268 | DeprecationWarning) |
| 269 | return (yield from self.receive()) |
| 270 | |
| 271 | @asyncio.coroutine |
| 272 | def receive_str(self): |