From bd6a5fa0448cac7e376a8f0a6623c939004e5a6c Mon Sep 17 00:00:00 2001 From: huanghao Date: Tue, 21 Apr 2015 15:36:33 +0800 Subject: [PATCH] Update basics.rst Remove a useless import statement --- source/pyzmq/basics.rst | 1 - 1 file changed, 1 deletion(-) diff --git a/source/pyzmq/basics.rst b/source/pyzmq/basics.rst index d30395e..6746641 100644 --- a/source/pyzmq/basics.rst +++ b/source/pyzmq/basics.rst @@ -25,7 +25,6 @@ It is better to install it using virtualenv/virtualenwrapper:: Before using any ØMQ library functions, the caller must initialize a ØMQ context:: import zmq - import time context = zmq.Context() Contexts are thread safe unlike sockets. An application can create and manage multiple contexts.