(self, func)
| 111 | return return_type |
| 112 | |
| 113 | def get_watch_argument_name(self, func): |
| 114 | if PYDOC_FOLLOW_PARAM in pydoc.getdoc(func): |
| 115 | return 'follow' |
| 116 | else: |
| 117 | return 'watch' |
| 118 | |
| 119 | def unmarshal_event(self, data, return_type): |
| 120 | if not data or data.isspace(): |