summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorFacundo Batista <facundobatista@gmail.com>2007-05-21 17:32:32 (GMT)
committerFacundo Batista <facundobatista@gmail.com>2007-05-21 17:32:32 (GMT)
commit70f996be24dd00c11500cd99d92e8b2a1dfaa501 (patch)
treeb60861e73678368f2690057584e42faf1eaa41ef /Misc
parent767debb6aa5729e919da309ecc770f8b2d94beba (diff)
downloadcpython-70f996be24dd00c11500cd99d92e8b2a1dfaa501.zip
cpython-70f996be24dd00c11500cd99d92e8b2a1dfaa501.tar.gz
cpython-70f996be24dd00c11500cd99d92e8b2a1dfaa501.tar.bz2
Added timeout support to HTTPSConnection, through the
socket.create_connection function. Also added a small test for this, and updated NEWS file.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS2
1 files changed, 1 insertions, 1 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 264e5e7..a0692c4 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -259,7 +259,7 @@ Library
- Patch #1676823: Added create_connection() to socket.py, which may be
called with a timeout, and use it from httplib (whose HTTPConnection
- now accepts an optional timeout).
+ and HTTPSConnection now accept an optional timeout).
- Bug #978833: Revert r50844, as it broke _socketobject.dup.