One more TODO: pass socket to start_serving().

This commit is contained in:
Guido van Rossum 2013-01-23 21:26:32 -08:00
parent 9c9f54697a
commit aca10418a9
1 changed files with 3 additions and 0 deletions

View File

@ -987,6 +987,9 @@ Open Issues
- Need to handle os.fork(). (This may be up to the selector classes
in Tulip's case.)
- Perhaps start_serving() needs a way to pass in an existing socket
(e.g. gunicorn would need this).
- We might introduce explicit locks, though these will be a bit of a
pain to use, as we can't use the ``with lock: block`` syntax
(because to wait for a lock we'd have to use ``yield from``, which