Since we recommend one module per import line, reflect this also in the
documentation.
diff --git a/Doc/library/termios.rst b/Doc/library/termios.rst
index 4847949..38da7b4 100644
--- a/Doc/library/termios.rst
+++ b/Doc/library/termios.rst
@@ -91,7 +91,8 @@
 exactly no matter what happens::
 
    def getpass(prompt = "Password: "):
-       import termios, sys
+       import sys
+       import termios
        fd = sys.stdin.fileno()
        old = termios.tcgetattr(fd)
        new = termios.tcgetattr(fd)