Since we recommend one module per import line, reflect this also in the
documentation.
diff --git a/Doc/library/pickle.rst b/Doc/library/pickle.rst
index a99dc86..8d153ec 100644
--- a/Doc/library/pickle.rst
+++ b/Doc/library/pickle.rst
@@ -708,7 +708,8 @@
 pickle-containing file, you should open the file in binary mode because you
 can't be sure if the ASCII or binary format was used. ::
 
-   import pprint, pickle
+   import pickle
+   import pprint
 
    pkl_file = open('data.pkl', 'rb')