(self)
| 3085 | raise ValueError("Unknown keyword argument %r to initialize %s" % (kw, self.__class__.__name__)) |
| 3086 | |
| 3087 | def copy(self): |
| 3088 | other = self.__class__() |
| 3089 | other.copy_from(self) |
| 3090 | return other |
| 3091 | |
| 3092 | def copy_from(self, other): |
| 3093 | if self is other: |