diff options
author | Georg Brandl <georg@python.org> | 2009-07-26 14:19:57 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2009-07-26 14:19:57 (GMT) |
commit | 9fa61bb37d68225c827aa7809382ea701c264db5 (patch) | |
tree | 7a086015c9e4ecbb02ad38895cf7dcc4cb7be605 /Doc/library/aifc.rst | |
parent | 74f8fc0b1bccc971a3055b2e364c4a2db5123d50 (diff) | |
download | cpython-9fa61bb37d68225c827aa7809382ea701c264db5.zip cpython-9fa61bb37d68225c827aa7809382ea701c264db5.tar.gz cpython-9fa61bb37d68225c827aa7809382ea701c264db5.tar.bz2 |
#6577: fix (hopefully) all links to builtin instead of module/class-specific objects.
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 062f1f2..0bb1635 100644 --- a/Doc/library/aifc.rst +++ b/Doc/library/aifc.rst @@ -48,7 +48,7 @@ Module :mod:`aifc` defines the following function: time how many samples you are going to write in total and use :meth:`writeframesraw` and :meth:`setnframes`. -Objects returned by :func:`open` when a file is opened for reading have the +Objects returned by :func:`.open` when a file is opened for reading have the following methods: @@ -131,7 +131,7 @@ following methods: Close the AIFF file. After calling this method, the object can no longer be used. -Objects returned by :func:`open` when a file is opened for writing have all the +Objects returned by :func:`.open` when a file is opened for writing have all the above methods, except for :meth:`readframes` and :meth:`setpos`. In addition the following methods exist. The :meth:`get\*` methods can only be called after the corresponding :meth:`set\*` methods have been called. Before the first |