Created
March 19, 2015 00:56
-
-
Save calid/3b3e4427284d7cfe4968 to your computer and use it in GitHub Desktop.
pyzmq hanging on exit
This file contains 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
import zmq | |
c = zmq.Context() | |
s = c.socket(zmq.DEALER) | |
s.connect('ipc://*') | |
s.send_string('ohhai') | |
s.send_string('ohhai') | |
s.send_string('ohhai') | |
print('Done') |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment