diff options
Diffstat (limited to 'Doc/library/crypt.rst')
-rw-r--r-- | Doc/library/crypt.rst | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/Doc/library/crypt.rst b/Doc/library/crypt.rst index 2f037c7..f8d4f92 100644 --- a/Doc/library/crypt.rst +++ b/Doc/library/crypt.rst @@ -45,7 +45,9 @@ this module. A simple example illustrating typical use:: - import crypt, getpass, pwd + import crypt + import getpass + import pwd def login(): username = raw_input('Python login:') |