(self)
| 335 | ', '.join(args)) |
| 336 | |
| 337 | def __reduce__(self): |
| 338 | if not self._kwargs: |
| 339 | return self.__class__, (self._name,) + self._args |
| 340 | else: |
| 341 | from functools import partial |
| 342 | return partial(self.__class__, self._name, **self._kwargs), self._args |
| 343 | |
| 344 | |
| 345 | # In-place Operations *********************************************************# |