[Python-checkins] CVS: python/dist/src/Doc/lib liblocale.tex,1.18,1.19 libsunau.tex,1.3,1.4

Fred L. Drake python-dev@python.org
Fri, 17 Nov 2000 11:05:14 -0800


Update of /cvsroot/python/python/dist/src/Doc/lib
In directory slayer.i.sourceforge.net:/tmp/cvs-serv31740/lib

Modified Files:
	liblocale.tex libsunau.tex 
Log Message:

Note that readframes() returns data in linear format, even if the original
is encoded in u-LAW format.  Based on suggestion from Anthony Baxter
<anthony_baxter@users.sourceforge.net>.

This closes bug #122273.


Index: liblocale.tex
===================================================================
RCS file: /cvsroot/python/python/dist/src/Doc/lib/liblocale.tex,v
retrieving revision 1.18
retrieving revision 1.19
diff -C2 -r1.18 -r1.19
*** liblocale.tex	2000/10/25 20:59:52	1.18
--- liblocale.tex	2000/11/17 19:05:11	1.19
***************
*** 62,65 ****
--- 62,99 ----
    This dictionary has the following strings as keys:
  
+   \begin{tableiii}{l|l|l}{code}{Key}{Category}{Meaning}
+     \lineiii{'decimal_point'}{\constant{LC_NUMERIC}}
+             {Decimal point character.}
+     \lineiii{'grouping'}{\constant{LC_NUMERIC}}
+             {Sequence of numbers specifying which relative positions
+              the \code{'thousands_sep'} is expected.  If the sequence is
+              terminated with \constant{CHAR_MAX}, no further grouping
+              is performed. If the sequence terminates with a \code{0}, 
+              the last group size is repeatedly used.}
+     \lineiii{'thousands_sep'}{\constant{LC_NUMERIC}}
+             {Character used between groups.}\hline
+     \lineiii{'int_curr_symbol'}{\constant{LC_MONETARY}}
+             {International currency symbol.}
+     \lineiii{'currency_symbol'}{\constant{LC_MONETARY}}
+             {Local currency symbol.}
+     \lineiii{'mon_decimal_point'}{\constant{LC_MONETARY}}
+             {Decimal point used for monetary values.}
+     \lineiii{'mon_thousands_sep'}{\constant{LC_MONETARY}}
+             {Group separator used for monetary values.}
+     \lineiii{'mon_grouping'}{\constant{LC_MONETARY}}
+             {Equivalent to \code{'grouping'}, used for monetary
+              values.}
+     \lineiii{'positive_sign'}{\constant{LC_MONETARY}}
+             {Symbol used to annotate a positive monetary value.}
+     \lineiii{'negative_sign'}{\constant{LC_MONETARY}}
+             {Symbol used to annotate a nnegative monetary value.}
+     \lineiii{'frac_digits'}{\constant{LC_MONETARY}}
+             {Number of fractional digits used in local formatting
+              of monetary values.}
+     \lineiii{'int_frac_digits'}{\constant{LC_MONETARY}}
+             {Number of fractional digits used in international
+              formatting of monetary values.}
+   \end{tableiii}
+ 
    \begin{itemize}
      \item

Index: libsunau.tex
===================================================================
RCS file: /cvsroot/python/python/dist/src/Doc/lib/libsunau.tex,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -r1.3 -r1.4
*** libsunau.tex	2000/10/06 21:07:14	1.3
--- libsunau.tex	2000/11/17 19:05:11	1.4
***************
*** 128,132 ****
  
  \begin{methoddesc}[AU_read]{readframes}{n}
! Reads and returns at most \var{n} frames of audio, as a string of bytes.
  \end{methoddesc}
  
--- 128,134 ----
  
  \begin{methoddesc}[AU_read]{readframes}{n}
! Reads and returns at most \var{n} frames of audio, as a string of
! bytes.  The data will be returned in linear format.  If the original
! data is in u-LAW format, it will be converted.
  \end{methoddesc}