summaryrefslogtreecommitdiff
path: root/Lib/test/test_httplib.py
diff options
context:
space:
mode:
authorMartin Panter <vadmium+py@gmail.com>2016-10-10 00:28:38 +0000
committerMartin Panter <vadmium+py@gmail.com>2016-10-10 00:28:38 +0000
commitfd1df3fef2ebe334e5a58e9e6e35dbd77d0a34ca (patch)
tree3a88214971caf784c7557ccc81043e7a4bf5acb8 /Lib/test/test_httplib.py
parent49f5cdde1a5804c0ac0858e3778f7bd740f4a9fc (diff)
parentd2a584b47b30f2e8189730201c4d19d51cdd0e89 (diff)
downloadcpython-git-fd1df3fef2ebe334e5a58e9e6e35dbd77d0a34ca.tar.gz
Issue #28394: Merge typo fixes from 3.5 into 3.6
Diffstat (limited to 'Lib/test/test_httplib.py')
-rw-r--r--Lib/test/test_httplib.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_httplib.py b/Lib/test/test_httplib.py
index c613c57723..68f6946a3a 100644
--- a/Lib/test/test_httplib.py
+++ b/Lib/test/test_httplib.py
@@ -1403,7 +1403,7 @@ class SourceAddressTest(TestCase):
def testHTTPSConnectionSourceAddress(self):
self.conn = client.HTTPSConnection(HOST, self.port,
source_address=('', self.source_port))
- # We don't test anything here other the constructor not barfing as
+ # We don't test anything here other than the constructor not barfing as
# this code doesn't deal with setting up an active running SSL server
# for an ssl_wrapped connect() to actually return from.