mirror of https://github.com/python/cpython
gh-101100: Fix sphinx warnings in `uuid.rst` (#108805)
* gh-101100: Fix sphinx warnings in `uuid.rst` * Use anchors
This commit is contained in:
parent
f3ba0a74cd
commit
21da4980f5
|
@ -22,7 +22,7 @@ random UUID.
|
||||||
Depending on support from the underlying platform, :func:`uuid1` may or may
|
Depending on support from the underlying platform, :func:`uuid1` may or may
|
||||||
not return a "safe" UUID. A safe UUID is one which is generated using
|
not return a "safe" UUID. A safe UUID is one which is generated using
|
||||||
synchronization methods that ensure no two processes can obtain the same
|
synchronization methods that ensure no two processes can obtain the same
|
||||||
UUID. All instances of :class:`UUID` have an :attr:`is_safe` attribute
|
UUID. All instances of :class:`UUID` have an :attr:`~UUID.is_safe` attribute
|
||||||
which relays any information about the UUID's safety, using this enumeration:
|
which relays any information about the UUID's safety, using this enumeration:
|
||||||
|
|
||||||
.. class:: SafeUUID
|
.. class:: SafeUUID
|
||||||
|
@ -95,25 +95,34 @@ which relays any information about the UUID's safety, using this enumeration:
|
||||||
A tuple of the six integer fields of the UUID, which are also available as six
|
A tuple of the six integer fields of the UUID, which are also available as six
|
||||||
individual attributes and two derived attributes:
|
individual attributes and two derived attributes:
|
||||||
|
|
||||||
+------------------------------+-------------------------------+
|
.. list-table::
|
||||||
| Field | Meaning |
|
|
||||||
+==============================+===============================+
|
* - Field
|
||||||
| :attr:`time_low` | the first 32 bits of the UUID |
|
- Meaning
|
||||||
+------------------------------+-------------------------------+
|
|
||||||
| :attr:`time_mid` | the next 16 bits of the UUID |
|
* - .. attribute:: UUID.time_low
|
||||||
+------------------------------+-------------------------------+
|
- The next 32 bits of the UUID.
|
||||||
| :attr:`time_hi_version` | the next 16 bits of the UUID |
|
|
||||||
+------------------------------+-------------------------------+
|
* - .. attribute:: UUID.time_mid
|
||||||
| :attr:`clock_seq_hi_variant` | the next 8 bits of the UUID |
|
- The next 16 bits of the UUID.
|
||||||
+------------------------------+-------------------------------+
|
|
||||||
| :attr:`clock_seq_low` | the next 8 bits of the UUID |
|
* - .. attribute:: UUID.time_hi_version
|
||||||
+------------------------------+-------------------------------+
|
- The next 16 bits of the UUID.
|
||||||
| :attr:`node` | the last 48 bits of the UUID |
|
|
||||||
+------------------------------+-------------------------------+
|
* - .. attribute:: UUID.clock_seq_hi_variant
|
||||||
| :attr:`time` | the 60-bit timestamp |
|
- The next 8 bits of the UUID.
|
||||||
+------------------------------+-------------------------------+
|
|
||||||
| :attr:`clock_seq` | the 14-bit sequence number |
|
* - .. attribute:: UUID.clock_seq_low
|
||||||
+------------------------------+-------------------------------+
|
- The next 8 bits of the UUID.
|
||||||
|
|
||||||
|
* - .. attribute:: UUID.node
|
||||||
|
- The last 48 bits of the UUID.
|
||||||
|
|
||||||
|
* - .. attribute:: UUID.time
|
||||||
|
- The the 60-bit timestamp.
|
||||||
|
|
||||||
|
* - .. attribute:: UUID.clock_seq
|
||||||
|
- The 14-bit sequence number.
|
||||||
|
|
||||||
|
|
||||||
.. attribute:: UUID.hex
|
.. attribute:: UUID.hex
|
||||||
|
@ -233,7 +242,7 @@ The :mod:`uuid` module defines the following namespace identifiers for use with
|
||||||
text output format.
|
text output format.
|
||||||
|
|
||||||
The :mod:`uuid` module defines the following constants for the possible values
|
The :mod:`uuid` module defines the following constants for the possible values
|
||||||
of the :attr:`variant` attribute:
|
of the :attr:`~UUID.variant` attribute:
|
||||||
|
|
||||||
|
|
||||||
.. data:: RESERVED_NCS
|
.. data:: RESERVED_NCS
|
||||||
|
|
|
@ -136,7 +136,6 @@ Doc/library/unittest.mock.rst
|
||||||
Doc/library/unittest.rst
|
Doc/library/unittest.rst
|
||||||
Doc/library/urllib.parse.rst
|
Doc/library/urllib.parse.rst
|
||||||
Doc/library/urllib.request.rst
|
Doc/library/urllib.request.rst
|
||||||
Doc/library/uuid.rst
|
|
||||||
Doc/library/weakref.rst
|
Doc/library/weakref.rst
|
||||||
Doc/library/wsgiref.rst
|
Doc/library/wsgiref.rst
|
||||||
Doc/library/xml.dom.minidom.rst
|
Doc/library/xml.dom.minidom.rst
|
||||||
|
|
Loading…
Reference in New Issue