[Python-checkins] cpython: Issue #24878: Fix typos and line wrap
raymond.hettinger
python-checkins at python.org
Sun Aug 23 20:28:07 CEST 2015
https://hg.python.org/cpython/rev/4432c441b639
changeset: 97464:4432c441b639
user: Raymond Hettinger <python at rcn.com>
date: Sun Aug 23 11:28:01 2015 -0700
summary:
Issue #24878: Fix typos and line wrap
files:
Lib/aifc.py | 7 ++++---
1 files changed, 4 insertions(+), 3 deletions(-)
diff --git a/Lib/aifc.py b/Lib/aifc.py
--- a/Lib/aifc.py
+++ b/Lib/aifc.py
@@ -258,12 +258,13 @@
'nchannels sampwidth framerate nframes comptype compname')
_aifc_params.nchannels.__doc__ = 'Number of audio channels (1 for mono, 2 for stereo)'
-_aifc_params.sampwidth.__doc__ = 'Ample width in bytes'
+_aifc_params.sampwidth.__doc__ = 'Sample width in bytes'
_aifc_params.framerate.__doc__ = 'Sampling frequency'
_aifc_params.nframes.__doc__ = 'Number of audio frames'
_aifc_params.comptype.__doc__ = 'Compression type ("NONE" for AIFF files)'
-_aifc_params.compname.__doc__ = ("""A human-readable version ofcompression type
-('not compressed' for AIFF files)'""")
+_aifc_params.compname.__doc__ = ("""\
+A human-readable version of the compression type
+('not compressed' for AIFF files)""")
class Aifc_read:
--
Repository URL: https://hg.python.org/cpython
More information about the Python-checkins
mailing list