Create a shallow copy of this ExecutableOption.
(self, **kw)
| 1101 | _is_core: bool = True |
| 1102 | |
| 1103 | def _clone(self, **kw): |
| 1104 | """Create a shallow copy of this ExecutableOption.""" |
| 1105 | c = self.__class__.__new__(self.__class__) |
| 1106 | c.__dict__ = dict(self.__dict__) # type: ignore |
| 1107 | return c |
| 1108 | |
| 1109 | |
| 1110 | _L = TypeVar("_L", bound=str) |