Skip to content

Commit

Permalink
crypt docs: Fix references to methods attr (GH-26806)
Browse files Browse the repository at this point in the history
Co-authored-by: Jelle Zijlstra <[email protected]>
(cherry picked from commit cae0f5d)

Co-authored-by: andrei kulakov <[email protected]>
  • Loading branch information
miss-islington and akulakov authored Apr 5, 2022
1 parent 31c9e35 commit c1984f3
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions Doc/library/crypt.rst
Original file line number Diff line number Diff line change
Expand Up @@ -96,8 +96,7 @@ The :mod:`crypt` module defines the following functions:
:func:`mksalt`, one of the ``crypt.METHOD_*`` values (though not all
may be available on all platforms), or a full encrypted password
including salt, as returned by this function. If *salt* is not
provided, the strongest method will be used (as returned by
:func:`methods`).
provided, the strongest method available in :attr:`methods` will be used.

Checking a password is usually done by passing the plain-text password
as *word* and the full results of a previous :func:`crypt` call,
Expand Down Expand Up @@ -125,8 +124,8 @@ The :mod:`crypt` module defines the following functions:
.. function:: mksalt(method=None, *, rounds=None)

Return a randomly generated salt of the specified method. If no
*method* is given, the strongest method available as returned by
:func:`methods` is used.
*method* is given, the strongest method available in :attr:`methods` is
used.

The return value is a string suitable for passing as the *salt* argument
to :func:`crypt`.
Expand Down

0 comments on commit c1984f3

Please sign in to comment.