Create a shallow copy of this ExecutableOption.
(self, **kw)
| 1089 | _is_core: bool = True |
| 1090 | |
| 1091 | def _clone(self, **kw): |
| 1092 | """Create a shallow copy of this ExecutableOption.""" |
| 1093 | c = self.__class__.__new__(self.__class__) |
| 1094 | c.__dict__ = dict(self.__dict__) # type: ignore |
| 1095 | return c |
| 1096 | |
| 1097 | |
| 1098 | class Executable(roles.StatementRole): |