diff options
author | R David Murray <rdmurray@bitdance.com> | 2011-04-30 20:35:29 (GMT) |
---|---|---|
committer | R David Murray <rdmurray@bitdance.com> | 2011-04-30 20:35:29 (GMT) |
commit | 9beb34ee0db236839236af6719aa223a753de896 (patch) | |
tree | b58ddc168545ef5c3349828c952903be56e9b03f /Doc/library/sys.rst | |
parent | 4c020885d9614e6c974835ca898e2f56a88ba6c3 (diff) | |
download | cpython-9beb34ee0db236839236af6719aa223a753de896.zip cpython-9beb34ee0db236839236af6719aa223a753de896.tar.gz cpython-9beb34ee0db236839236af6719aa223a753de896.tar.bz2 |
#11901: post-commit review fixes per Georg Brandl
Diffstat (limited to 'Doc/library/sys.rst')
-rw-r--r-- | Doc/library/sys.rst | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/Doc/library/sys.rst b/Doc/library/sys.rst index c61fedb..bb9f920 100644 --- a/Doc/library/sys.rst +++ b/Doc/library/sys.rst @@ -450,10 +450,10 @@ always available. struct sequence :data:`sys.version_info` may be used for a more human-friendly encoding of the same information. - The ``hexversion`` is a 32-bit number with the following layout + The ``hexversion`` is a 32-bit number with the following layout: +-------------------------+------------------------------------------------+ - | bits (big endian order) | meaning | + | Bits (big endian order) | Meaning | +=========================+================================================+ | :const:`1-8` | ``PY_MAJOR_VERSION`` (the ``2`` in | | | ``2.1.0a3``) | @@ -465,14 +465,14 @@ always available. | | ``2.1.0a3``) | +-------------------------+------------------------------------------------+ | :const:`25-28` | ``PY_RELEASE_LEVEL`` (``0xA`` for alpha, | - | | ``0xB`` for beta, ``0xC`` for gamma and | - | | ``0xF`` for final) | + | | ``0xB`` for beta, ``0xC`` for release | + | | candidate and ``0xF`` for final) | +-------------------------+------------------------------------------------+ | :const:`29-32` | ``PY_RELEASE_SERIAL`` (the ``3`` in | - | | ``2.1.0a3``) | + | | ``2.1.0a3``, zero for final releases) | +-------------------------+------------------------------------------------+ - thus ``2.1.0a3`` is hexversion ``0x020100a3`` + Thus ``2.1.0a3`` is hexversion ``0x020100a3``. .. data:: int_info @@ -480,7 +480,7 @@ always available. internal representation of integers. The attributes are read only. +-------------------------+----------------------------------------------+ - | attribute | explanation | + | Attribute | Explanation | +=========================+==============================================+ | :const:`bits_per_digit` | number of bits held in each digit. Python | | | integers are stored internally in base | |