summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorChris McDonough <chrism@plope.com>2012-01-19 00:11:12 -0500
committerChris McDonough <chrism@plope.com>2012-01-19 00:11:12 -0500
commitc35ac5f097d4927862b53b41eecf420fa603ce95 (patch)
treeac0fed84adf3f7ce76f7e1dcea868883b37e75a2 /docs
parent7adc8369e4ac52e6ac37c5faf69a669099dfcca4 (diff)
downloadwaitress-c35ac5f097d4927862b53b41eecf420fa603ce95.tar.gz
mention threads
Diffstat (limited to 'docs')
-rw-r--r--docs/design.rst1
1 files changed, 1 insertions, 0 deletions
diff --git a/docs/design.rst b/docs/design.rst
index 69731a7..21c19ae 100644
--- a/docs/design.rst
+++ b/docs/design.rst
@@ -3,6 +3,7 @@ Design
Waitress uses a combination of asynchronous and synchronous code to do its
job. It handles I/O to and from clients using the :term:`asyncore` library.
+It services requests via threads.
The :term:`asyncore` module in the Python standard library: