diff options
author | Keith Gaughan <k@stereochro.me> | 2013-05-23 21:25:42 +0100 |
---|---|---|
committer | Keith Gaughan <k@stereochro.me> | 2013-05-23 21:25:42 +0100 |
commit | d4c6e186b05494549498ec6f4730a51722fb88ff (patch) | |
tree | 495c0363a389c43be26625ad17a0ad42b3229cfb /docs | |
parent | 6d7a0f0edbb0df32cd03e664eca2ae8f92106fec (diff) | |
download | waitress-d4c6e186b05494549498ec6f4730a51722fb88ff.tar.gz |
autopep8 runthrough and janitorial changes.
Diffstat (limited to 'docs')
-rw-r--r-- | docs/api.rst | 4 | ||||
-rw-r--r-- | docs/arguments.rst | 5 | ||||
-rw-r--r-- | docs/design.rst | 1 | ||||
-rw-r--r-- | docs/glossary.rst | 2 | ||||
-rw-r--r-- | docs/index.rst | 1 |
5 files changed, 2 insertions, 11 deletions
diff --git a/docs/api.rst b/docs/api.rst index 586d639..f906953 100644 --- a/docs/api.rst +++ b/docs/api.rst @@ -8,7 +8,3 @@ .. function:: serve(app, host='0.0.0.0', port=8080, unix_socket=None, unix_socket_perms='600', threads=4, url_scheme='http', ident='waitress', backlog=1204, recv_bytes=8192, send_bytes=18000, outbuf_overflow=104856, inbuf_overflow=52488, connection_limit=1000, cleanup_interval=30, channel_timeout=120, log_socket_errors=True, max_request_header_size=262144, max_request_body_size=1073741824, expose_tracebacks=False) See :ref:`arguments` for more information. - - - - diff --git a/docs/arguments.rst b/docs/arguments.rst index cdb7c70..a10285b 100644 --- a/docs/arguments.rst +++ b/docs/arguments.rst @@ -58,7 +58,7 @@ send_bytes outbuf_overflow A tempfile should be created if the pending output is larger than outbuf_overflow, which is measured in bytes. The default is 1MB - (``104856``). This is conservative. + (``1048576``). This is conservative. inbuf_overflow A tempfile should be created if the pending input is larger than @@ -86,7 +86,7 @@ channel_timeout ``120``. "Inactive" is defined as "has received no data from a client and has sent no data to a client". -log_socket_errors +log_socket_errors Boolean: turn off to not log premature client disconnect tracebacks. Default: ``True``. @@ -105,4 +105,3 @@ expose_tracebacks asyncore_loop_timeout The ``timeout`` value (seconds) passed to ``asyncore.loop`` to run the mainloop. Default: 1. (New in 0.8.3.) - diff --git a/docs/design.rst b/docs/design.rst index 21c19ae..591a423 100644 --- a/docs/design.rst +++ b/docs/design.rst @@ -52,4 +52,3 @@ entirely. Periodic maintenance is done by the main thread (the thread handling I/O). If a channel hasn't sent or received any data in a while, the channel's connection is closed, and the channel is destroyed. - diff --git a/docs/glossary.rst b/docs/glossary.rst index ad0876b..92aaf31 100644 --- a/docs/glossary.rst +++ b/docs/glossary.rst @@ -13,5 +13,3 @@ Glossary asyncore A standard library module for asynchronous communications. See http://docs.python.org/library/asyncore.html . - - diff --git a/docs/index.rst b/docs/index.rst index 754c88a..155b10e 100644 --- a/docs/index.rst +++ b/docs/index.rst @@ -263,4 +263,3 @@ fork. ``zope.server`` has existed in one form or another since about 2001, and has seen production usage since then, so Waitress is not exactly "another" server, it's more a repackaging of an old one that was already known to work fairly well. - |