Skip to content

Commit

Permalink
Parameters to Args for doc consistency
Browse files Browse the repository at this point in the history
  • Loading branch information
mmckerns committed Feb 20, 2023
1 parent 0d996d0 commit 103f001
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions dill/session.py
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@ def dump_module(
built with :py:class:`~types.ModuleType`), to a file. The pickled
module can then be restored with the function :py:func:`load_module`.
Parameters:
Args:
filename: a path-like object or a writable stream. If `None`
(the default), write to a named file in a temporary directory.
module: a module object or the name of an importable module. If `None`
Expand Down Expand Up @@ -344,7 +344,7 @@ def load_module(
Otherwise, a new instance is created with :py:class:`~types.ModuleType`
and returned.
Parameters:
Args:
filename: a path-like object or a readable stream. If `None`
(the default), read from a named file in a temporary directory.
module: a module object or the name of an importable module;
Expand Down Expand Up @@ -527,7 +527,7 @@ def load_module_asdict(
however, does not alter the original module. Also, the path of
the loaded module is stored in the ``__session__`` attribute.
Parameters:
Args:
filename: a path-like object or a readable stream. If `None`
(the default), read from a named file in a temporary directory.
update: if `True`, initialize the dictionary with the current state
Expand Down

0 comments on commit 103f001

Please sign in to comment.