Commit efe9ff90 authored by Denis Bilenko's avatar Denis Bilenko

update TODO

parent 282682bf
...@@ -2,10 +2,9 @@ ...@@ -2,10 +2,9 @@
- move Semaphore and BoundedSemaphore from coros to another module; deprecate coros - move Semaphore and BoundedSemaphore from coros to another module; deprecate coros
- fix BoundedSemaphore to behave like standard threading's BoundedSemaphore behaves: - fix BoundedSemaphore to behave like standard threading's BoundedSemaphore behaves:
raise ValueError if upper limit is reached instead of blocking. raise ValueError if upper limit is reached instead of blocking.
- "raise Timeout" means customizing exception with Timeout(exception=RuntimeError) no longer works - "raise Timeout" used in some places means customizing exception with Timeout(exception=RuntimeError) no longer works
- grep for XXX and QQQ - grep for XXX and QQQ
- classes in gevent.core should not crash even if improperly used - classes in gevent.core should not crash even if improperly used
- do not include the standard tests in greentest/; run the standard tests unchanged through monkey patcher
- initialize libevent in Hub.__init__() - initialize libevent in Hub.__init__()
- support multiple event_bases - support multiple event_bases
- discourage direct use of gevent.core; put the needed methods back on Hub (timer, read_event, write_event) - discourage direct use of gevent.core; put the needed methods back on Hub (timer, read_event, write_event)
...@@ -20,4 +19,4 @@ ...@@ -20,4 +19,4 @@
1.1 1.1
- use libevent 2.x's bufferevent for socket implementation (or for its _fileobject) - use libevent 2.x's bufferevent for socket implementation (or for its _fileobject)
- add threadsafe Queue that can be used to interact with other event loops (e.g. pygtk) - add threadsafe Queue that can be used to interact with other event loops (e.g. pygtk)
- wrap libevent's http client code
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment