(self)
| 202 | class function_like_behavior: |
| 203 | # Things that help them eg show up in autodoc easier |
| 204 | def inherits_module_from_body(self): |
| 205 | mytask = Task(_func, name="funky") |
| 206 | assert mytask.__module__ is _func.__module__ |
| 207 | |
| 208 | class attributes: |
| 209 | def has_default_flag(self): |