summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2010-03-23 00:28:26 (GMT)
committerAntoine Pitrou <solipsis@pitrou.net>2010-03-23 00:28:26 (GMT)
commit9004eddf41cfe9ed8109f0d4097f13ef05f459d1 (patch)
tree7410b50ab8b5d340472b5b01af8d92c7680ca3c9 /Misc
parent9f274b1fab8b8ebd6d555dd99d75ebc9bb1f91bd (diff)
downloadcpython-9004eddf41cfe9ed8109f0d4097f13ef05f459d1.zip
cpython-9004eddf41cfe9ed8109f0d4097f13ef05f459d1.tar.gz
cpython-9004eddf41cfe9ed8109f0d4097f13ef05f459d1.tar.bz2
Merged revisions 79317 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k ........ r79317 | antoine.pitrou | 2010-03-23 01:25:54 +0100 (mar., 23 mars 2010) | 5 lines Issue #8139: ossaudiodev didn't initialize its types properly, therefore some methods (such as oss_mixer_device.fileno()) were not available. Initial patch by Bertrand Janin. ........
Diffstat (limited to 'Misc')
-rw-r--r--Misc/ACKS1
-rw-r--r--Misc/NEWS4
2 files changed, 5 insertions, 0 deletions
diff --git a/Misc/ACKS b/Misc/ACKS
index 2ea5ab9..e88db2a 100644
--- a/Misc/ACKS
+++ b/Misc/ACKS
@@ -359,6 +359,7 @@ Ben Jackson
David Jacobs
Kevin Jacobs
Kjetil Jacobsen
+Bertrand Janin
Geert Jansen
Jack Jansen
Bill Janssen
diff --git a/Misc/NEWS b/Misc/NEWS
index f82919b..a39a7c8 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -17,6 +17,10 @@ Core and Builtins
Library
-------
+- Issue #8139: ossaudiodev didn't initialize its types properly, therefore
+ some methods (such as oss_mixer_device.fileno()) were not available.
+ Initial patch by Bertrand Janin.
+
- Issue #7512: shutil.copystat() could raise an OSError when the filesystem
didn't support chflags() (for example ZFS under FreeBSD). The error is
now silenced.