summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2010-02-04 20:23:24 (GMT)
committerAntoine Pitrou <solipsis@pitrou.net>2010-02-04 20:23:24 (GMT)
commitb6375f12664f32f9c997609adab6e73c58721c69 (patch)
treeb8e67d29a12236fa64e3c1f8f6afc9f4b55b2f9b /Misc
parent8f0b31ae4c32a32ee92e0464465172e4e2541b48 (diff)
downloadcpython-b6375f12664f32f9c997609adab6e73c58721c69.zip
cpython-b6375f12664f32f9c997609adab6e73c58721c69.tar.gz
cpython-b6375f12664f32f9c997609adab6e73c58721c69.tar.bz2
Merged revisions 77970 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk ........ r77970 | antoine.pitrou | 2010-02-04 21:20:18 +0100 (jeu., 04 févr. 2010) | 6 lines Issue #4772: Raise a ValueError when an unknown Bluetooth protocol is specified, rather than fall through to AF_PACKET (in the `socket` module). Also, raise ValueError rather than TypeError when an unknown TIPC address type is specified. Patch by Brian Curtin. ........
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS5
1 files changed, 5 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 7632762..3dd680a 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -242,6 +242,11 @@ C-API
Library
-------
+- Issue #4772: Raise a ValueError when an unknown Bluetooth protocol is
+ specified, rather than fall through to AF_PACKET (in the `socket` module).
+ Also, raise ValueError rather than TypeError when an unknown TIPC address
+ type is specified. Patch by Brian Curtin.
+
- Issue #6939: Fix file I/O objects in the `io` module to keep the original
file position when calling `truncate()`. It would previously change the
file position to the given argument, which goes against the tradition of