Objects with __name__ attribute

ast nomail at com.invalid
Wed Oct 25 02:49:00 EDT 2017


Hi,

I know two Python's objects which have an intrinsic 
name, classes and functions.

def f():
    pass

>>> f.__name__
'f'
>>> g = f
>>> g.__name__
'f'

class Test:
    pass

>>> Test.__name__
'Test'
>>> Test2 = Test
>>> Test2.__name__
'Test'

Are there others objects with a __name__ attribute
and what is it used for ?

Regards






More information about the Python-list mailing list