Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cpython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
cpython
Commits
f7d2569b
Commit
f7d2569b
authored
Sep 22, 2016
by
Martin Panter
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix references to Python 3’s socketserver (lowercase) module
parent
eef36d56
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
3 additions
and
3 deletions
+3
-3
Lib/test/ssl_servers.py
Lib/test/ssl_servers.py
+1
-1
Lib/test/test_ssl.py
Lib/test/test_ssl.py
+1
-1
Misc/NEWS
Misc/NEWS
+1
-1
No files found.
Lib/test/ssl_servers.py
View file @
f7d2569b
...
...
@@ -16,7 +16,7 @@ here = os.path.dirname(__file__)
HOST
=
support
.
HOST
CERTFILE
=
os
.
path
.
join
(
here
,
'keycert.pem'
)
# This one's based on HTTPServer, which is based on
SocketS
erver
# This one's based on HTTPServer, which is based on
sockets
erver
class
HTTPSServer
(
_HTTPServer
):
...
...
Lib/test/test_ssl.py
View file @
f7d2569b
...
...
@@ -2661,7 +2661,7 @@ else:
s
.
close
()
def
test_socketserver
(
self
):
"""Using
a SocketS
erver to create and manage SSL connections."""
"""Using
sockets
erver to create and manage SSL connections."""
server
=
make_https_server
(
self
,
certfile
=
CERTFILE
)
# try to connect
if
support
.
verbose
:
...
...
Misc/NEWS
View file @
f7d2569b
...
...
@@ -3494,7 +3494,7 @@ Library
- Issue #18643: Add socket.socketpair() on Windows.
- Issue #22435: Fix a file descriptor leak when
SocketS
erver bind fails.
- Issue #22435: Fix a file descriptor leak when
sockets
erver bind fails.
- Issue #13096: Fixed segfault in CTypes POINTER handling of large
values.
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment