This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # override ioloop.IOLoop with zmq's IOLoop | |
| import sys | |
| import tornado.ioloop | |
| from zmq.eventloop import ioloop | |
| tornado.ioloop.IOLoop = ioloop.IOLoop | |
| import trombi | |
| loop = ioloop.IOLoop.instance() | |
| # check that tornado's ioloop instance is actually zmq's |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/python | |
| """ | |
| zmq_cli - 0MQ Server interruptability test case, client module. | |
| """ | |
| import zmq | |
NewerOlder