You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: nx_parallel/tests/test_get_chunks.py
+7-2Lines changed: 7 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -10,7 +10,12 @@
10
10
11
11
12
12
defget_all_functions(package_name="nx_parallel"):
13
-
"""Returns a dictionary where the keys are the function names in a given Python package, and the values are dictionaries containing the function's keyword arguments and positional arguments."""
13
+
"""Returns a dict keyed by function names to its arguments.
14
+
15
+
This function constructs a dictionary keyed by the function
16
+
names in the package `package_name` to dictionaries containing
17
+
the function's keyword arguments and positional arguments.
0 commit comments