diff options
author | Gregory P. Smith <greg@mad-scientist.com> | 2009-01-31 22:57:30 (GMT) |
---|---|---|
committer | Gregory P. Smith <greg@mad-scientist.com> | 2009-01-31 22:57:30 (GMT) |
commit | de1a8b720a8cc5a6dab5e293d322a43d7ecb5c69 (patch) | |
tree | de48d40fe9b7261a43d44005f0eda3512268db37 /Misc | |
parent | a528dc507caab7b549ec7b6a8f84c2a76dd6c1c7 (diff) | |
download | cpython-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/NEWS | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -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 ----------- |