summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorMartin v. Löwis <martin@v.loewis.de>2004-01-31 12:34:17 (GMT)
committerMartin v. Löwis <martin@v.loewis.de>2004-01-31 12:34:17 (GMT)
commit12af0485f858c8eca9a8c9ed9894a8a60f975b4c (patch)
tree3126f0ddfe46bfc9d855254230ebaea2723451d2 /Misc
parent4d205e366cc48535f70c1fe939ce726658e46d98 (diff)
downloadcpython-12af0485f858c8eca9a8c9ed9894a8a60f975b4c.zip
cpython-12af0485f858c8eca9a8c9ed9894a8a60f975b4c.tar.gz
cpython-12af0485f858c8eca9a8c9ed9894a8a60f975b4c.tar.bz2
Patch #874083: Bluetooth support for socket module.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/ACKS1
-rw-r--r--Misc/NEWS3
2 files changed, 4 insertions, 0 deletions
diff --git a/Misc/ACKS b/Misc/ACKS
index eea665a..77c7980 100644
--- a/Misc/ACKS
+++ b/Misc/ACKS
@@ -177,6 +177,7 @@ Sebastian Fernandez
Vincent Fiack
Russell Finn
Nils Fischbeck
+Frederik Fix
Hernán Martínez Foffani
Doug Fort
Martin Franklin
diff --git a/Misc/NEWS b/Misc/NEWS
index 71a549e..e4332d8 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -121,6 +121,9 @@ Core and builtins
Extension modules
-----------------
+- The socket module now supports Bluetooth sockets, if the
+ system has <bluetooth/bluetooth.h>
+
- Added a collections module containing a new datatype, deque(),
offering high-performance, thread-safe, memory friendly appends
and pops on either side of the deque.