Open the Help menu where the Report Bug button is supposed to live:
Python: Traceback (most recent call last):
File "/media/data/blender_guest/cmake_release/bin/3.2/scripts/startup/bl_ui/space_topbar.py", line 692, in draw
).type = 'API'
AttributeError: 'WM_OT_url_open' object has no attribute 'type'This error is odd, because that operator does in fact have a type EnumProperty annotation. I assume the new Python version doesn't like the fact that type is a Python built-in keyword. I wanted to submit a patch to fix this case, but there are probably a hundred other cases like this, and maybe a more robust solution would be needed, as well as adding a note to the wiki that python keywords are no longer allowed as operator parameter names.