(self)
| 327 | ', '.join(args)) |
| 328 | |
| 329 | def __reduce__(self): |
| 330 | if not self._kwargs: |
| 331 | return self.__class__, (self._name,) + self._args |
| 332 | else: |
| 333 | from functools import partial |
| 334 | return partial(self.__class__, self._name, **self._kwargs), self._args |
| 335 | |
| 336 | |
| 337 | # In-place Operations *********************************************************# |