summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorGregory P. Smith <greg@mad-scientist.com>2009-01-31 22:57:30 (GMT)
committerGregory P. Smith <greg@mad-scientist.com>2009-01-31 22:57:30 (GMT)
commitde1a8b720a8cc5a6dab5e293d322a43d7ecb5c69 (patch)
treede48d40fe9b7261a43d44005f0eda3512268db37 /Misc
parenta528dc507caab7b549ec7b6a8f84c2a76dd6c1c7 (diff)
downloadcpython-de1a8b720a8cc5a6dab5e293d322a43d7ecb5c69.zip
cpython-de1a8b720a8cc5a6dab5e293d322a43d7ecb5c69.tar.gz
cpython-de1a8b720a8cc5a6dab5e293d322a43d7ecb5c69.tar.bz2
- Issue #5104: The socket module now raises OverflowError when 16-bit port and
protocol numbers are supplied outside the allowed 0-65536 range on bind() and getservbyport().
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS4
1 files changed, 4 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index bce2207..c403b61 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -383,6 +383,10 @@ Library
- Issue #4861: ctypes.util.find_library(): Robustify. Fix library detection on
biarch systems. Try to rely on ldconfig only, without using objdump and gcc.
+- Issue #5104: The socket module now raises OverflowError when 16-bit port and
+ protocol numbers are supplied outside the allowed 0-65536 range on bind()
+ and getservbyport().
+
Tools/Demos
-----------