@@ -167,7 +167,6 @@ which relays any information about the UUID's safety, using this enumeration:
167167The :mod: `uuid ` module defines the following functions:
168168
169169
170- .. index :: single: getnode
171170.. function :: getnode()
172171
173172 Get the hardware address as a 48-bit positive integer. The first time this
@@ -186,7 +185,6 @@ The :mod:`uuid` module defines the following functions:
186185 globally unique, while the latter are not.
187186
188187
189- .. index :: single: uuid1
190188.. function :: uuid1(node=None, clock_seq=None)
191189
192190 Generate a UUID from a host ID, sequence number, and the current time. If *node *
@@ -195,29 +193,25 @@ The :mod:`uuid` module defines the following functions:
195193 14-bit sequence number is chosen.
196194
197195
198- .. index :: single: uuid3
199196.. function :: uuid3(namespace, name)
200197
201198 Generate a UUID based on the MD5 hash of a namespace identifier (which is a
202199 UUID) and a name (which is a :class: `bytes ` object or a string
203200 that will be encoded using UTF-8).
204201
205202
206- .. index :: single: uuid4
207203.. function :: uuid4()
208204
209205 Generate a random UUID.
210206
211207
212- .. index :: single: uuid5
213208.. function :: uuid5(namespace, name)
214209
215210 Generate a UUID based on the SHA-1 hash of a namespace identifier (which is a
216211 UUID) and a name (which is a :class: `bytes ` object or a string
217212 that will be encoded using UTF-8).
218213
219214
220- .. index :: single: uuid8
221215.. function :: uuid8(a=None, b=None, c=None)
222216
223217 Generate a pseudo-random UUID according to
0 commit comments