diff options
author | Fred Drake <fdrake@acm.org> | 2000-08-14 15:47:30 (GMT) |
---|---|---|
committer | Fred Drake <fdrake@acm.org> | 2000-08-14 15:47:30 (GMT) |
commit | 68e2915fc707ca17df088447bfcb8c5811de0944 (patch) | |
tree | 2eab2ef4aae840faf7409cc8fdde0ed3eaa7d1e6 /Doc | |
parent | 099325e01b9c244bdaf96e072829195243caced9 (diff) | |
download | cpython-68e2915fc707ca17df088447bfcb8c5811de0944.zip cpython-68e2915fc707ca17df088447bfcb8c5811de0944.tar.gz cpython-68e2915fc707ca17df088447bfcb8c5811de0944.tar.bz2 |
Document the byte_order value in the sys module.
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/lib/libsys.tex | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/Doc/lib/libsys.tex b/Doc/lib/libsys.tex index 54f9493..5cc833d 100644 --- a/Doc/lib/libsys.tex +++ b/Doc/lib/libsys.tex @@ -20,6 +20,14 @@ It is always available. \code{argv} has zero length. \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 into this Python interpreter. (This information is not available in |