@@ -450,10 +450,10 @@ always available.
450450 struct sequence :data: `sys.version_info ` may be used for a more human-friendly
451451 encoding of the same information.
452452
453- The ``hexversion `` is a 32-bit number with the following layout
453+ The ``hexversion `` is a 32-bit number with the following layout:
454454
455455 +-------------------------+------------------------------------------------+
456- | bits (big endian order) | meaning |
456+ | Bits (big endian order) | Meaning |
457457 +=========================+================================================+
458458 | :const: `1-8 ` | ``PY_MAJOR_VERSION `` (the ``2 `` in |
459459 | | ``2.1.0a3 ``) |
@@ -465,22 +465,22 @@ always available.
465465 | | ``2.1.0a3 ``) |
466466 +-------------------------+------------------------------------------------+
467467 | :const: `25-28 ` | ``PY_RELEASE_LEVEL `` (``0xA `` for alpha, |
468- | | ``0xB `` for beta, ``0xC `` for gamma and |
469- | | ``0xF `` for final) |
468+ | | ``0xB `` for beta, ``0xC `` for release |
469+ | | candidate and ``0xF `` for final) |
470470 +-------------------------+------------------------------------------------+
471471 | :const: `29-32 ` | ``PY_RELEASE_SERIAL `` (the ``3 `` in |
472- | | ``2.1.0a3 ``) |
472+ | | ``2.1.0a3 ``, zero for final releases) |
473473 +-------------------------+------------------------------------------------+
474474
475- thus ``2.1.0a3 `` is hexversion ``0x020100a3 ``
475+ Thus ``2.1.0a3 `` is hexversion ``0x020100a3 ``.
476476
477477.. data :: int_info
478478
479479 A struct sequence that holds information about Python's
480480 internal representation of integers. The attributes are read only.
481481
482482 +-------------------------+----------------------------------------------+
483- | attribute | explanation |
483+ | Attribute | Explanation |
484484 +=========================+==============================================+
485485 | :const: `bits_per_digit ` | number of bits held in each digit. Python |
486486 | | integers are stored internally in base |
0 commit comments