summaryrefslogtreecommitdiff
path: root/docs/user
diff options
context:
space:
mode:
authorKenneth Reitz <me@kennethreitz.com>2014-08-29 10:30:49 -0400
committerKenneth Reitz <me@kennethreitz.com>2014-08-29 10:30:49 -0400
commit1fcda912dbac57cd4e0f557fb611ea46c200cb4e (patch)
tree5d01b52ff8d78a8532020ec55dd97d8c1cdfb81c /docs/user
parentd22b8d8e7e8fcb8d16efba6841977dc81ac2c935 (diff)
downloadpython-requests-1fcda912dbac57cd4e0f557fb611ea46c200cb4e.tar.gz
Revert "Documentation update : connection keep alive"
This reverts commit 1b2602344fe783c5422602ff5f7d03bf7928c0f3. Conflicts: docs/user/advanced.rst
Diffstat (limited to 'docs/user')
-rw-r--r--docs/user/advanced.rst4
1 files changed, 0 insertions, 4 deletions
diff --git a/docs/user/advanced.rst b/docs/user/advanced.rst
index 65970daf..0de6b1b1 100644
--- a/docs/user/advanced.rst
+++ b/docs/user/advanced.rst
@@ -240,10 +240,6 @@ Note that connections are only released back to the pool for reuse once all body
data has been read; be sure to either set ``stream`` to ``False`` or read the
``content`` property of the ``Response`` object.
-For some older servers it may be necessary to manually set the
-``Connection: keep-alive`` header. This will request that the server keep the
-connection open. This does not guarantee that the connection will be kept open,
-and generally is not necessary.
Streaming Uploads
-----------------