arity
New in Django 1.10.
A class attribute that denotes the number of arguments the function accepts. If this attribute is set and the function is called with a different number of expressions, TypeError
will be raised. Defaults to None
.
Please login to continue.