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
Expected:
VarDictionary(baz, [('hi_mom', <metavar.Var hi_mom: foo at 0x...>)])
Got:
VarDictionary(baz, {'hi_mom': <metavar.Var hi_mom: foo at 0x7f6c73e92990>})
Need to decide whether to move away from using the string representations of the base python classes (OrderedDict, etc) so we're unaffected by this. Or if we need to update the doctests themselves.
The text was updated successfully, but these errors were encountered:
Description
The VarDictionary doctests are failing because of this change in python3.12:
gh-101446: Change repr of collections.OrderedDict to use regular dictionary formating instead of pairs of keys and values
Steps to Reproduce
Run the doctests overall or for only metavar.py
Additional Context
Here is the difference:
Need to decide whether to move away from using the string representations of the base python classes (OrderedDict, etc) so we're unaffected by this. Or if we need to update the doctests themselves.
The text was updated successfully, but these errors were encountered: