Why can't I use named arguments in Python 2 in case of str.split
function from the Python's standard library while I can use them for my own functions:
def foo(bar=''):
pass
foo(bar='str')
Why can't I use named arguments in Python 2 in case of str.split
function from the Python's standard library while I can use them for my own functions:
def foo(bar=''):
pass
foo(bar='str')