Clear context and binds *initial_values* using `bind`. Only necessary with dict implementations that keep global state like those wrapped by `structlog.threadlocal.wrap_dict` when threads are reused.
(self, **new_values: Any)
| 200 | return super().try_unbind(*keys) |
| 201 | |
| 202 | def new(self, **new_values: Any) -> Self: |
| 203 | """ |
| 204 | Clear context and binds *initial_values* using `bind`. |
| 205 | |
| 206 | Only necessary with dict implementations that keep global state like |
| 207 | those wrapped by `structlog.threadlocal.wrap_dict` when threads |
| 208 | are reused. |
| 209 | """ |
| 210 | return super().new(**new_values) |
| 211 | |
| 212 | def debug(self, event: str | None = None, *args: Any, **kw: Any) -> Any: |
| 213 | """ |
no outgoing calls