revert r69777 since all the experts agree that extra import lines distract from the code
diff --git a/Doc/howto/doanddont.rst b/Doc/howto/doanddont.rst
index b4f271e..a56fb8c 100644
--- a/Doc/howto/doanddont.rst
+++ b/Doc/howto/doanddont.rst
@@ -267,8 +267,7 @@
 :func:`max`/:func:`min`. Another highly useful function is :func:`reduce`. A
 classical use of :func:`reduce` is something like ::
 
-   import operator
-   import sys
+   import sys, operator
    nums = map(float, sys.argv[1:])
    print reduce(operator.add, nums)/len(nums)