Summary:
Compatibility issue for Python 3.8 (modifying dicts while iterating over them)
Full changelog:
getSelfDescription() method was modifying dicts which it was iterating over, which creates a runtime error in Python 3.8.
The dict is being converted into a list before being changed to fix the problem.
…n 3.8, dict is converted to list for fix.
Summary: Compatibility issue for Python 3.8 (modifying dicts while iterating over them)
Full changelog:
getSelfDescription() method was modifying dicts which it was iterating over, which creates a runtime error in Python 3.8. The dict is being converted into a list before being changed to fix the problem.
Related issues:
None