[Python-checkins] CVS: python/dist/src/Doc/lib libsys.tex,1.37,1.38

Fred L. Drake python-dev@python.org
Mon, 14 Aug 2000 08:47:32 -0700


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

Modified Files:
	libsys.tex 
Log Message:

Document the byte_order value in the sys module.


Index: libsys.tex
===================================================================
RCS file: /cvsroot/python/python/dist/src/Doc/lib/libsys.tex,v
retrieving revision 1.37
retrieving revision 1.38
diff -C2 -r1.37 -r1.38
*** libsys.tex	2000/06/30 16:06:19	1.37
--- libsys.tex	2000/08/14 15:47:30	1.38
***************
*** 21,24 ****
--- 21,32 ----
  \end{datadesc}
  
+ \begin{datadesc}{byte_order}
+   An indicator of the native byte order.  This will have the value
+   \code{'big'} on big-endian (most-signigicant byte first) platforms,
+   and \code{'little'} on little-endian (least-significant byte first)
+   platforms.
+   \versionadded{2.0}
+ \end{datadesc}
+ 
  \begin{datadesc}{builtin_module_names}
    A tuple of strings giving the names of all modules that are compiled