summaryrefslogtreecommitdiff
path: root/eventlet/green/zmq.py
Commit message (Expand)AuthorAgeFilesLines
* Fix typos detected by toolkit misspellingsChangBo Guo(gcb)2015-02-071-1/+1
* Improve PEP8 conformanceJakub Stasiak2014-11-111-1/+2
* Tune documentationJakub Stasiak2014-10-051-0/+1
* PEP-8 fixesSergey Shepelev2014-08-271-1/+5
* hubs: defang after remove; related to second simultaneous read issue94-second-readMichael Kerrin2014-08-121-1/+5
* Python 3 compatibility fixesJakub Stasiak2014-07-181-1/+1
* Python3: __bool__, im_code, im_funcVictor Sergeyev2014-04-241-0/+4
* python3 compat: 2to3: `except E as e:` syntaxDavanum Srinivas2013-12-031-2/+2
* green.zmq: pyzmq 13.x compatibilityEdward George2013-07-021-6/+15
* zmq: avoid spurious wakeups by forcing zmq events to be processed when no thr...Geoff Salmon2013-01-211-2/+7
* zmq: Socket.close() support linger argument; Thanks to Eric WindischSergey Shepelev2013-01-141-2/+2
* Fix zmq._QueueLock test in Python2.6 - TestCase.assertRaises is not context m...Sergey Shepelev2012-12-111-1/+7
* Test for Pull Request 22: zmq getsockopt(EVENTS) wake correct threadsSergey Shepelev2012-12-111-3/+3
* zmq getsockopt(EVENTS) wake correct threadsEric Windisch2012-10-101-2/+2
* Fix python 2.5 supportFloris Bruynooghe2012-09-051-0/+3
* unused importGeoff Salmon2012-02-061-1/+0
* Simplify zmq. Remove premature optimizations. Add "_eventlet" to all new attr...Geoff Salmon2012-02-021-132/+31
* remove unused importGeoff Salmon2012-01-261-1/+0
* wrap all zmq send and recv methods to use correct docs and namesGeoff Salmon2012-01-261-6/+9
* test closing zmq x-socketsGeoff Salmon2012-01-261-4/+0
* Rename zmq._SimpleEvent. Add close during recv test. Updating comments.Geoff Salmon2012-01-261-45/+32
* Avoid calling trampoline for zmq sockets. Instead leave a listener registered...Geoff Salmon2012-01-261-46/+47
* zmq: cache super() calls. fix calls to getsockopt. remove unnecessary __zmq__...Geoff Salmon2011-12-291-60/+66
* add closed check to Context.socket(). pyzmq's socket() contains the same check.Geoff Salmon2011-09-161-0/+2
* adds comments explaining zmq greeningGeoff Salmon2011-09-151-10/+65
* Not using zmq_poll anymore, so we can allow multiple zmq.Context objects in t...Geoff Salmon2011-09-141-22/+2
* add tests for zmq._SimpleEvent and zmq._QueueLockGeoff Salmon2011-09-141-2/+4
* readd zmq send_multipart and recv_multipart methods to acquire locksGeoff Salmon2011-09-141-17/+48
* simplify code for supporting multiple 0mq senders and receiversGeoff Salmon2011-09-141-316/+157
* rename wakeup_timer -> wakeupper to avoid confusion. It's not really a timer.Geoff Salmon2011-09-141-8/+8
* check EVENTS before waking up listenerGeoff Salmon2011-09-091-3/+3
* zmq additional commentGeoff Salmon2011-09-051-1/+4
* Remove pointless caching of attributes in zmq.SocketGeoff Salmon2011-09-051-6/+3
* change how zmq socket send and recv operations are customizedGeoff Salmon2011-09-051-33/+51
* Fix up comments in zmq. Take __name__ and __doc__ for methods from the real S...Geoff Salmon2011-09-051-39/+37
* use interruptible trampoline for zmq REQ and REP sockets. Prefer positional a...Geoff Salmon2011-09-051-67/+61
* avoid queuing job in zmq send/recv fast pathGeoff Salmon2011-09-051-19/+43
* ensure any errors from zmq are raise on thread that called send/recvGeoff Salmon2011-09-051-2/+14
* add zmq TODOsGeoff Salmon2011-09-051-0/+5
* clean up zmq process_queues loopGeoff Salmon2011-09-051-25/+49
* fixed missed read events on zmq socked FDGeoff Salmon2011-09-051-86/+111
* implement recv for multiple greenthreadsGeoff Salmon2011-09-031-28/+112
* send/send_multipart from multiple greenthreads working, maybe...Geoff Salmon2011-09-031-64/+155
* first stab at supporting multiple senders and receivers. incomplete.Geoff Salmon2011-09-021-8/+133
* Reducing copypasta with utility function.Ryan Williams2011-04-091-6/+2
* Initial implementation of hubless zeromq support using ZMQ_FD and ZMQ_EVENTS.Zed Shaw2011-04-081-49/+45
* Yessss....test from rfk. TYVM Fixes #76.Ryan Williams2011-01-281-4/+4
* Importing patch from rfk to get green.zmq to respect NOBLOCK flag.Ryan Williams2011-01-271-1/+10
* Merge from trunkBen Ford2010-12-041-12/+42
|\
| * General tidy up and addition of long overdue docstringsBen Ford2010-12-041-0/+34