summaryrefslogtreecommitdiffstats
path: root/Doc/whatsnew
diff options
context:
space:
mode:
authorZachary Ware <zachary.ware@gmail.com>2016-09-06 21:32:43 (GMT)
committerZachary Ware <zachary.ware@gmail.com>2016-09-06 21:32:43 (GMT)
commitc401881d689b2ca89211a6ff2cd5ac96150d237d (patch)
tree49045f3371cd68e0542ea1d57d1b4eba70de3d98 /Doc/whatsnew
parentef537db68813ebaae11f54b780f21ad7dac05845 (diff)
downloadcpython-c401881d689b2ca89211a6ff2cd5ac96150d237d.zip
cpython-c401881d689b2ca89211a6ff2cd5ac96150d237d.tar.gz
cpython-c401881d689b2ca89211a6ff2cd5ac96150d237d.tar.bz2
Closes #27982: Allow keyword arguments to winsound functions
Diffstat (limited to 'Doc/whatsnew')
-rw-r--r--Doc/whatsnew/3.6.rst8
1 files changed, 8 insertions, 0 deletions
diff --git a/Doc/whatsnew/3.6.rst b/Doc/whatsnew/3.6.rst
index 7abfac9..13d7b7c 100644
--- a/Doc/whatsnew/3.6.rst
+++ b/Doc/whatsnew/3.6.rst
@@ -692,6 +692,14 @@ Added the 64-bit integer type :data:`REG_QWORD <winreg.REG_QWORD>`.
(Contributed by Clement Rouault in :issue:`23026`.)
+winsound
+--------
+
+Allowed keyword arguments to be passed to :func:`Beep <winsound.Beep>`,
+:func:`MessageBeep <winsound.MessageBeep>`, and :func:`PlaySound
+<winsound.PlaySound>` (:issue:`27982`).
+
+
zipfile
-------