You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In Python 3.12 the implementation of OrderedDict.__repr__ changed such
that ExpiringDict.__repr__ may trigger expiration and raise KeyError. To
avoid this, explicitly implement ExpiringDict.__repr__ using validated
ExpiringDict.items().
Resolvesmailgun#55
In Python 3.12, representation as a string fails with
KeyError
:The underlying cause is that string representation now copies the dict, and this action fails in both Python 3.11 and 3.12:
The text was updated successfully, but these errors were encountered: