module documentation

Tests for the private NumPy argument parsing functionality. They mainly exists to ensure good test coverage without having to try the weirder cases on actual numpy functions but test them in one place.

The test function is defined in C to be equivalent to (errors may not always match exactly, and could be adjusted):

def func(arg1, /, arg2, *, arg3):
i = integer(arg1) # reproducing the 'i' parsing in Python. return None
Function test​_invalid​_integers Undocumented
Function test​_missing​_arguments Undocumented
Function test​_multiple​_values Undocumented
Function test​_string​_fallbacks Undocumented
Function test​_too​_many​_positional Undocumented
def test_invalid_integers():

Undocumented

def test_missing_arguments():

Undocumented

def test_multiple_values():

Undocumented

def test_string_fallbacks():

Undocumented

def test_too_many_positional():

Undocumented