Revision 4de03d63 ncclient/transport/session.py

b/ncclient/transport/session.py
12 12
# See the License for the specific language governing permissions and
13 13
# limitations under the License.
14 14

  
15
from threading import Event
16 15
from Queue import Queue
16
from threading import Thread, Lock, Event
17 17

  
18 18
from ncclient.capabilities import Capabilities
19
from ncclient.glue import Subject
19
from ncclient.content import parse_root
20 20

  
21 21
from hello import HelloHandler
22 22

  
23 23
import logging
24 24
logger = logging.getLogger('ncclient.transport.session')
25 25

  
26

  
26 27
class Session(Thread):
27 28
    
28 29
    "TODO: docstring"

Also available in: Unified diff