diff options
author | Mads Jensen <mje@inducks.org> | 2018-01-27 12:34:28 (GMT) |
---|---|---|
committer | Christian Heimes <christian@python.org> | 2018-01-27 12:34:28 (GMT) |
commit | 746cc75541f31278864a10b995e7d009bd2ff053 (patch) | |
tree | 2fdf3c95ad6915b0d8c50fe0093f1d28cf448a29 /Misc | |
parent | d0e31b980f18101738d0ec518cb991a5fb73fe93 (diff) | |
download | cpython-746cc75541f31278864a10b995e7d009bd2ff053.zip cpython-746cc75541f31278864a10b995e7d009bd2ff053.tar.gz cpython-746cc75541f31278864a10b995e7d009bd2ff053.tar.bz2 |
bpo-31853: Replaced socket.method calls with super() in SSLSocket. (#4048)
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS.d/next/Library/2017-10-23-22-55-51.bpo-31853.h5fjrP.rst | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2017-10-23-22-55-51.bpo-31853.h5fjrP.rst b/Misc/NEWS.d/next/Library/2017-10-23-22-55-51.bpo-31853.h5fjrP.rst new file mode 100644 index 0000000..516214d --- /dev/null +++ b/Misc/NEWS.d/next/Library/2017-10-23-22-55-51.bpo-31853.h5fjrP.rst @@ -0,0 +1,2 @@ +Use super().method instead of socket.method in SSLSocket. They were +there most likely for legacy reasons. |