Finding a list of all double-underscore variables?
Related: What is the common header format of Python files? Where can I find a list of all double-underscore variables/keywords that are commonly used in Python? In Python, variables starting and ending with double underscores are typically to store metadata or are built into the system. For example, #!/usr/bin/env python __author__ = 'Michael0x2a' __license__ = 'GPL' class Test(object): def __init__(self): print 'Hello World!' if __name__ == '__main__': t = Test() I'm pretty certain __author__ and __license__ are pretty well known. What other double-underscore metadata variables are there? Is