diff options
author | R David Murray <rdmurray@bitdance.com> | 2013-12-31 18:45:38 (GMT) |
---|---|---|
committer | R David Murray <rdmurray@bitdance.com> | 2013-12-31 18:45:38 (GMT) |
commit | d592bb2dc45a11809a0a05a817e79894b2f6b1d8 (patch) | |
tree | 967ca16defcd4e8dbc4924e3a675575b38f804ff /Doc/library/aifc.rst | |
parent | 1cb4f607d1b397e678dc9f3d6b535d36c9d48d3c (diff) | |
download | cpython-d592bb2dc45a11809a0a05a817e79894b2f6b1d8.zip cpython-d592bb2dc45a11809a0a05a817e79894b2f6b1d8.tar.gz cpython-d592bb2dc45a11809a0a05a817e79894b2f6b1d8.tar.bz2 |
whatsnew: afic.open supports 'with'.
Diffstat (limited to 'Doc/library/aifc.rst')
-rw-r--r-- | Doc/library/aifc.rst | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/library/aifc.rst b/Doc/library/aifc.rst index 9ffb5a3..caecfbc 100644 --- a/Doc/library/aifc.rst +++ b/Doc/library/aifc.rst @@ -54,8 +54,8 @@ Module :mod:`aifc` defines the following function: 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. + .. versionchanged:: 3.4 + Support for the :keyword:`with` statement was added. Objects returned by :func:`.open` when a file is opened for reading have the following methods: |