PythonConsole: the list of completions in the autocomplete context menu no longer shows any objec path leading up to the final symbol being completed (#7023)
This object path was always the same for all items for a given completion and caused choosing an item to be inefficient for the user (especially for large menus).
An example:
typing nav.parent.n and pressing tab used to list:
nav.parent.name
nav.parent.next
Now it lists:
name
next