Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 37d9a0d commit eeb9298Copy full SHA for eeb9298
lib/matplotlib/artist.py
@@ -1503,13 +1503,13 @@ def get_setters(self):
1503
@staticmethod
1504
@lru_cache(maxsize=None)
1505
def number_of_parameters(func):
1506
- """Return number of parameters of function."""
+ """Return number of parameters of the callable *func*."""
1507
return len(inspect.signature(func).parameters)
1508
1509
1510
1511
def is_alias(method):
1512
- """Return whether method object *o* is an alias for another method."""
+ """Return whether method object *method* is an alias for another method."""
1513
1514
ds = inspect.getdoc(method)
1515
if ds is None:
0 commit comments