summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorGregory P. Smith <greg@mad-scientist.com>2008-09-06 21:34:51 (GMT)
committerGregory P. Smith <greg@mad-scientist.com>2008-09-06 21:34:51 (GMT)
commit0a608fdaac5b4422b9ade6ec7b44182902f2f9ce (patch)
tree80f50c009d21accfd42b8a736ce9761370169995 /Misc
parent7e958d1ceb0b92fa7bace7040ce042474d3ea510 (diff)
downloadcpython-0a608fdaac5b4422b9ade6ec7b44182902f2f9ce.zip
cpython-0a608fdaac5b4422b9ade6ec7b44182902f2f9ce.tar.gz
cpython-0a608fdaac5b4422b9ade6ec7b44182902f2f9ce.tar.bz2
fixes deferred/release blocker issue #3797: Fixed the dbm, marshal, mmap,
ossaudiodev, & winreg modules to return bytes objects instead of bytearray objects.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index a914ebe..ef860a4 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -144,6 +144,9 @@ Extension Modules
- Issue #3492 and #3790: Fixed the zlib module and zipimport module uses of
mutable bytearray objects where they should have been using immutable bytes.
+- Issue #3797: Fixed the dbm, marshal, mmap, ossaudiodev, & winreg modules to
+ return bytes objects instead of bytearray objects.
+
Tools/Demos
-----------