예제 #1
0
파일: test_types.py 프로젝트: minrk/pyczmq
def test_context():
    # Create and destroy a context without using it
    ctx = Context()
    del ctx

    # call API functions
    ctx = Context()
    ctx.set_iothreads(1)
    ctx.set_linger(5)
    ctx.set_pipehwm(500)
    ctx.set_sndhwm(500)
    ctx.set_rcvhwm(500)
    del ctx