summaryrefslogtreecommitdiffstats
path: root/Doc/library/uuid.rst
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2009-12-19 18:23:28 (GMT)
committerGeorg Brandl <georg@python.org>2009-12-19 18:23:28 (GMT)
commit1d523e1ae18d5a021c11beaca4ba664e0a6786e9 (patch)
tree9912aa0d65437c9d746164c90b1cdc027220c501 /Doc/library/uuid.rst
parente231e39c2851e93254344626e05e81f1b543f88a (diff)
downloadcpython-1d523e1ae18d5a021c11beaca4ba664e0a6786e9.zip
cpython-1d523e1ae18d5a021c11beaca4ba664e0a6786e9.tar.gz
cpython-1d523e1ae18d5a021c11beaca4ba664e0a6786e9.tar.bz2
#7380: Fix some str/bytearray/bytes issues in uuid docs and implementation.
Diffstat (limited to 'Doc/library/uuid.rst')
-rw-r--r--Doc/library/uuid.rst8
1 files changed, 4 insertions, 4 deletions
diff --git a/Doc/library/uuid.rst b/Doc/library/uuid.rst
index 0ec2ed3..8351946 100644
--- a/Doc/library/uuid.rst
+++ b/Doc/library/uuid.rst
@@ -31,9 +31,9 @@ random UUID.
UUID('{12345678-1234-5678-1234-567812345678}')
UUID('12345678123456781234567812345678')
UUID('urn:uuid:12345678-1234-5678-1234-567812345678')
- UUID(bytes='\x12\x34\x56\x78'*4)
- UUID(bytes_le='\x78\x56\x34\x12\x34\x12\x78\x56' +
- '\x12\x34\x56\x78\x12\x34\x56\x78')
+ UUID(bytes=b'\x12\x34\x56\x78'*4)
+ UUID(bytes_le=b'\x78\x56\x34\x12\x34\x12\x78\x56' +
+ b'\x12\x34\x56\x78\x12\x34\x56\x78')
UUID(fields=(0x12345678, 0x1234, 0x5678, 0x12, 0x34, 0x567812345678))
UUID(int=0x12345678123456781234567812345678)
@@ -247,7 +247,7 @@ Here are some examples of typical usage of the :mod:`uuid` module::
# get the raw 16 bytes of the UUID
>>> x.bytes
- '\x00\x01\x02\x03\x04\x05\x06\x07\x08\t\n\x0b\x0c\r\x0e\x0f'
+ 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
>>> uuid.UUID(bytes=x.bytes)