File tree Expand file tree Collapse file tree 3 files changed +11
-8
lines changed Expand file tree Collapse file tree 3 files changed +11
-8
lines changed Original file line number Diff line number Diff line change @@ -288,23 +288,24 @@ of the :attr:`~UUID.variant` attribute:
288
288
289
289
Reserved for future definition.
290
290
291
+
291
292
The :mod: `uuid ` module defines the special Nil and Max UUID values:
292
293
293
294
294
- .. data :: NIL
295
+ .. const :: NIL
295
296
296
297
A special form of UUID that is specified to have all 128 bits set to zero
297
298
according to :rfc: `RFC 9562, §5.9 <9562#section-5.9 >`.
298
299
299
- .. versionadded :: 3.14
300
+ .. versionadded :: next
300
301
301
302
302
- .. data :: MAX
303
+ .. const :: MAX
303
304
304
305
A special form of UUID that is specified to have all 128 bits set to one
305
306
according to :rfc: `RFC 9562, §5.10 <9562#section-5.10 >`.
306
307
307
- .. versionadded :: 3.14
308
+ .. versionadded :: next
308
309
309
310
310
311
.. seealso ::
@@ -406,6 +407,7 @@ Here are some examples of typical usage of the :mod:`uuid` module::
406
407
>>> uuid.MAX
407
408
UUID('ffffffff-ffff-ffff-ffff-ffffffffffff')
408
409
410
+
409
411
.. _uuid-cli-example :
410
412
411
413
Command-Line Example
Original file line number Diff line number Diff line change @@ -665,9 +665,10 @@ uuid
665
665
in :rfc: `9562 `.
666
666
(Contributed by Bénédikt Tran in :gh: `89083 `.)
667
667
668
- * :data: `uuid.NIL ` and :data: `uuid.MAX ` are now available to represent the Nil
669
- and Max UUID formats as defined by :rfc: `9562 `. (Contributed by Nick Pope in
670
- :gh: `128427 `.)
668
+ * :const: `uuid.NIL ` and :const: `uuid.MAX ` are now available to represent the
669
+ Nil and Max UUID formats as defined by :rfc: `9562 `.
670
+ (Contributed by Nick Pope in :gh: `128427 `.)
671
+
671
672
672
673
zipinfo
673
674
-------
Original file line number Diff line number Diff line change 1
- :data : `uuid.NIL ` and :data : `uuid.MAX ` are now available to represent the Nil
1
+ :const : `uuid.NIL ` and :const : `uuid.MAX ` are now available to represent the Nil
2
2
and Max UUID formats as defined by :rfc: `9562 `.
You can’t perform that action at this time.
0 commit comments