]> granicus.if.org Git - python/commitdiff
#11901: post-commit review fixes per Georg Brandl
authorR David Murray <rdmurray@bitdance.com>
Sat, 30 Apr 2011 20:34:35 +0000 (16:34 -0400)
committerR David Murray <rdmurray@bitdance.com>
Sat, 30 Apr 2011 20:34:35 +0000 (16:34 -0400)
Doc/library/sys.rst

index 1598d96b628b5fe97445c4d4d5a00c4c8421227b..305d477fbf27214c2bb7f06c68e62dbde22983e8 100644 (file)
@@ -562,10 +562,10 @@ always available.
    ``version_info`` value 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``)                                  |
@@ -577,14 +577,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``.
 
    .. versionadded:: 1.5.2
 
@@ -595,7 +595,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       |