Return a new copy of the context, with specified changes
(self, /, **changes)
| 407 | current_value: ast.AST | None = None |
| 408 | |
| 409 | def replace(self, /, **changes): |
| 410 | """Return a new copy of the context, with specified changes""" |
| 411 | return dataclasses.replace(self, **changes) |
| 412 | |
| 413 | |
| 414 | class _IdentitySubscript: |
no outgoing calls