How to list attributes in Mechanical CPython Console?
The conventional dir() doesn't print a list of all the attributes and functions of the object in the CPython Console. One has to explicitly use the the print command to print the returned list from dir()
dir()
print
print(dir(attribute))