summaryrefslogtreecommitdiffstats
path: root/Doc
diff options
context:
space:
mode:
authorEzio Melotti <ezio.melotti@gmail.com>2011-12-02 17:29:10 (GMT)
committerEzio Melotti <ezio.melotti@gmail.com>2011-12-02 17:29:10 (GMT)
commita9a2ddf7be0d3940b581e9781818fc9c3e97299a (patch)
tree87f1f8d39881467def9168dbee05cde7f0a17fc9 /Doc
parentb3d188f7792d037ee8b10d81bc26f9aeadbf8bbd (diff)
parentb1b3fd23b79c3c50f25c4a6948795c0c1299ee32 (diff)
downloadcpython-a9a2ddf7be0d3940b581e9781818fc9c3e97299a.zip
cpython-a9a2ddf7be0d3940b581e9781818fc9c3e97299a.tar.gz
cpython-a9a2ddf7be0d3940b581e9781818fc9c3e97299a.tar.bz2
#13499: merge with 3.2.
Diffstat (limited to 'Doc')
-rw-r--r--Doc/library/uuid.rst16
1 files changed, 8 insertions, 8 deletions
diff --git a/Doc/library/uuid.rst b/Doc/library/uuid.rst
index 8351946..7dc46ac 100644
--- a/Doc/library/uuid.rst
+++ b/Doc/library/uuid.rst
@@ -222,34 +222,34 @@ Here are some examples of typical usage of the :mod:`uuid` module::
>>> import uuid
- # make a UUID based on the host ID and current time
+ >>> # make a UUID based on the host ID and current time
>>> uuid.uuid1()
UUID('a8098c1a-f86e-11da-bd1a-00112444be1e')
- # make a UUID using an MD5 hash of a namespace UUID and a name
+ >>> # make a UUID using an MD5 hash of a namespace UUID and a name
>>> uuid.uuid3(uuid.NAMESPACE_DNS, 'python.org')
UUID('6fa459ea-ee8a-3ca4-894e-db77e160355e')
- # make a random UUID
+ >>> # make a random UUID
>>> uuid.uuid4()
UUID('16fd2706-8baf-433b-82eb-8c7fada847da')
- # make a UUID using a SHA-1 hash of a namespace UUID and a name
+ >>> # make a UUID using a SHA-1 hash of a namespace UUID and a name
>>> uuid.uuid5(uuid.NAMESPACE_DNS, 'python.org')
UUID('886313e1-3b8a-5372-9b90-0c9aee199e5d')
- # make a UUID from a string of hex digits (braces and hyphens ignored)
+ >>> # make a UUID from a string of hex digits (braces and hyphens ignored)
>>> x = uuid.UUID('{00010203-0405-0607-0809-0a0b0c0d0e0f}')
- # convert a UUID to a string of hex digits in standard form
+ >>> # convert a UUID to a string of hex digits in standard form
>>> str(x)
'00010203-0405-0607-0809-0a0b0c0d0e0f'
- # get the raw 16 bytes of the UUID
+ >>> # get the raw 16 bytes of the UUID
>>> x.bytes
b'\x00\x01\x02\x03\x04\x05\x06\x07\x08\t\n\x0b\x0c\r\x0e\x0f'
- # make a UUID from a 16-byte string
+ >>> # make a UUID from a 16-byte string
>>> uuid.UUID(bytes=x.bytes)
UUID('00010203-0405-0607-0809-0a0b0c0d0e0f')