Called to run a new tasklet: rebind the creation so that we can trace it.
(self, *args, **kwargs)
| 350 | # __call__ |
| 351 | # ======================================================================================================================= |
| 352 | def __call__(self, *args, **kwargs): |
| 353 | """ |
| 354 | Called to run a new tasklet: rebind the creation so that we can trace it. |
| 355 | """ |
| 356 | |
| 357 | return setup(self, *args, **kwargs) |
| 358 | |
| 359 | _original_run = stackless.run |
| 360 |