revert r69777 since all the experts agree that extra import lines distract from the code
diff --git a/Doc/library/ssl.rst b/Doc/library/ssl.rst
index 572c566..30f1fea 100644
--- a/Doc/library/ssl.rst
+++ b/Doc/library/ssl.rst
@@ -481,9 +481,7 @@
This example connects to an SSL server, prints the server's address and certificate,
sends some bytes, and reads part of the response::
- import pprint
- import socket
- import ssl
+ import socket, ssl, pprint
s = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
@@ -537,8 +535,7 @@
You'd open a socket, bind it to a port, call :meth:`listen` on it, then start waiting for clients
to connect::
- import socket
- import ssl
+ import socket, ssl
bindsocket = socket.socket()
bindsocket.bind(('myaddr.mydomain.com', 10023))