diff options
| author | R David Murray <rdmurray@bitdance.com> | 2013-07-25 16:12:01 -0400 |
|---|---|---|
| committer | R David Murray <rdmurray@bitdance.com> | 2013-07-25 16:12:01 -0400 |
| commit | 4d35e75ca069b51ffdac7b34dad4ffb77e72a598 (patch) | |
| tree | 0b5cbaf639fc047ed4fd464371fcef2f8ccdcf13 /Doc/library/aifc.rst | |
| parent | 840c310a2577459dd9f6ac9f5f9b136d7f4829f8 (diff) | |
| download | cpython-git-4d35e75ca069b51ffdac7b34dad4ffb77e72a598.tar.gz | |
#17818: aifc.getparams now returns a namedtuple.
Patch by Claudiu Popa.
Diffstat (limited to 'Doc/library/aifc.rst')
| -rw-r--r-- | Doc/library/aifc.rst | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/Doc/library/aifc.rst b/Doc/library/aifc.rst index f8a6ab7ef8..c1cd215c3f 100644 --- a/Doc/library/aifc.rst +++ b/Doc/library/aifc.rst @@ -96,7 +96,9 @@ following methods: .. method:: aifc.getparams() - Return a tuple consisting of all of the above values in the above order. + Returns a :func:`~collections.namedtuple` ``(nchannels, sampwidth, + framerate, nframes, comptype, compname)``, equivalent to output of the + :meth:`get\*` methods. .. method:: aifc.getmarkers() |
