I found an odd argument of init of threading.Thread class.
def __init__(self, group=None, target=None, name=None,
args=(), kwargs=None, *, daemon=None):
What is the seventh argument?
I have never seen such arguments.
Moreover the argument is not used in the __init__
.
Is it really necessary?