Kaydet (Commit) c55a7ea2 authored tarafından R David Murray's avatar R David Murray

Merge #11901: post-commit review fixes per Georg Brandl

...@@ -543,10 +543,10 @@ always available. ...@@ -543,10 +543,10 @@ always available.
:term:`struct sequence` :data:`sys.version_info` may be used for a more :term:`struct sequence` :data:`sys.version_info` may be used for a more
human-friendly encoding of the same information. 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 | | :const:`1-8` | ``PY_MAJOR_VERSION`` (the ``2`` in |
| | ``2.1.0a3``) | | | ``2.1.0a3``) |
...@@ -558,14 +558,14 @@ always available. ...@@ -558,14 +558,14 @@ always available.
| | ``2.1.0a3``) | | | ``2.1.0a3``) |
+-------------------------+------------------------------------------------+ +-------------------------+------------------------------------------------+
| :const:`25-28` | ``PY_RELEASE_LEVEL`` (``0xA`` for alpha, | | :const:`25-28` | ``PY_RELEASE_LEVEL`` (``0xA`` for alpha, |
| | ``0xB`` for beta, ``0xC`` for gamma and | | | ``0xB`` for beta, ``0xC`` for release |
| | ``0xF`` for final) | | | candidate and ``0xF`` for final) |
+-------------------------+------------------------------------------------+ +-------------------------+------------------------------------------------+
| :const:`29-32` | ``PY_RELEASE_SERIAL`` (the ``3`` in | | :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 .. data:: int_info
...@@ -573,7 +573,7 @@ always available. ...@@ -573,7 +573,7 @@ always available.
representation of integers. The attributes are read only. representation of integers. The attributes are read only.
+-------------------------+----------------------------------------------+ +-------------------------+----------------------------------------------+
| attribute | explanation | | Attribute | Explanation |
+=========================+==============================================+ +=========================+==============================================+
| :const:`bits_per_digit` | number of bits held in each digit. Python | | :const:`bits_per_digit` | number of bits held in each digit. Python |
| | integers are stored internally in base | | | integers are stored internally in base |
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment