##// END OF EJS Templates
Create subclasses field with None for consistency.
Matthias Bussonnier -
Show More
@@ -753,7 +753,7 b' class Inspector(Colorable):'
753 ds = '<no docstring>'
753 ds = '<no docstring>'
754
754
755 # store output in a dict, we initialize it here and fill it as we go
755 # store output in a dict, we initialize it here and fill it as we go
756 out = dict(name=oname, found=True, isalias=isalias, ismagic=ismagic)
756 out = dict(name=oname, found=True, isalias=isalias, ismagic=ismagic, subclasses=None)
757
757
758 string_max = 200 # max size of strings to show (snipped if longer)
758 string_max = 200 # max size of strings to show (snipped if longer)
759 shalf = int((string_max - 5) / 2)
759 shalf = int((string_max - 5) / 2)
General Comments 0
You need to be logged in to leave comments. Login now