I saw in many python functions people using a single standalone "*" parameter, but it is not args or kwargs. I just saw an example on shutil standard lib documentation.:
shutil.copy(src, dst, *, follow_symlinks=True)
I tried to google it, but only found examples about args. What does this parameter do exactly?
Thanks.