Return a shallow copy of the instance.
(self, **changes: Any)
| 119 | self.attrs[name] = value |
| 120 | |
| 121 | def copy(self, **changes: Any) -> Token: |
| 122 | """Return a shallow copy of the instance.""" |
| 123 | return dc.replace(self, **changes) |
| 124 | |
| 125 | def as_dict( |
| 126 | self, |