I have little confusion; you can see in the pic.. i have created a class, then applied dir() on this class to check which names are defined by this class.
Then to access attributes of this class; particularly those which startswith '__', what i see is a huge list of attributes; most of them are not present in dir()'s list;
so my first question is from where does they all came??

also below is my observation for which i have posted this question. it is as
"""
dir(object1) gives us a list of attributes; which can be accessible on the object2 (which is a instance of this object1) as . after that object2 (applied that if that object2 can become the instance of object1) (and with other attributes which are defined for object2)"""
is it so??????
lets check them.. (i am using ipython's qtconsole)
example 1:
type is instance of itself. so lets check first for type. you can see the list in the snap as below; the list of dir(type) and then next output of accession its attributes by placing . on it, (1st for those which starts with __) then here is a list for that(see line 55);

then for all remaning(its just one mro); so after combining both; its same as dir(type)

example 2: lets create our own class
on line 59; (i.e. on instance of testClass) lets access first those which starts with __ and then others as:
and finally combine these two results of line 59 is same as dir(testClass). right?? Right then; lets check another example
example 3:
and
and similarly combine the result of line 64 and compare it with line 54 of example 1.
Thats it from my side. Its my observation; is this right???? i require any expert comment from python gurus on this observation.
