I was looking at the definition of the glob
function and I noticed that the second parameter was simply *
.
def glob(pathname, *, recursive=False):
"""Return a list of paths matching a pathname pattern.
[...]
"""
return list(iglob(pathname, recursive=recursive))
What is the point of the *
?