summaryrefslogtreecommitdiff
path: root/Doc/library/aifc.rst
diff options
context:
space:
mode:
authorR David Murray <rdmurray@bitdance.com>2013-07-31 13:46:08 -0400
committerR David Murray <rdmurray@bitdance.com>2013-07-31 13:46:08 -0400
commitc91d5eea106d191e931f953bdbdb1db25e051767 (patch)
tree4ddd0a8c329fc2fb9cc8a78900704829b889a303 /Doc/library/aifc.rst
parent0ce642ebca5f4d0e1b6875b845ad0eb8cb76bbb4 (diff)
downloadcpython-git-c91d5eea106d191e931f953bdbdb1db25e051767.tar.gz
#17616: wave.open now supports the 'with' statement.
Feature and tests by ClClaudiu.Popa, I added the doc changes.
Diffstat (limited to 'Doc/library/aifc.rst')
-rw-r--r--Doc/library/aifc.rst3
1 files changed, 2 insertions, 1 deletions
diff --git a/Doc/library/aifc.rst b/Doc/library/aifc.rst
index c1cd215c3f..44a0a24ff5 100644
--- a/Doc/library/aifc.rst
+++ b/Doc/library/aifc.rst
@@ -51,7 +51,8 @@ Module :mod:`aifc` defines the following function:
used for writing, the file object should be seekable, unless you know ahead of
time how many samples you are going to write in total and use
:meth:`writeframesraw` and :meth:`setnframes`.
- Objects returned by :func:`.open` also supports the :keyword:`with` statement.
+ The :func:`.open` function may be used in a :keyword:`with` statement. When
+ the :keyword:`with` block completes, the :meth:`~aifc.close` method is called.
.. versionchanged:: 3.4
Support for the :keyword:`with` statement was added.