def f(a, b): pass
a call f(1, 'x') starts by executing a, b = 1, 'x' in the local namespace. Nothing is being 'passed'. -- Terry Jan Reedy -- https://mail.python.org/mailman/listinfo/python-list
def f(a, b): pass
a call f(1, 'x') starts by executing a, b = 1, 'x' in the local namespace. Nothing is being 'passed'. -- Terry Jan Reedy -- https://mail.python.org/mailman/listinfo/python-list