summaryrefslogtreecommitdiffstats
path: root/ipalib
diff options
context:
space:
mode:
authorRob Crittenden <rcritten@redhat.com>2009-01-19 10:39:08 -0500
committerRob Crittenden <rcritten@redhat.com>2009-01-19 10:40:12 -0500
commitaba16941ee6826b0d65d11e73efb8a62f4a35da1 (patch)
treebe9a20b129ee26c6105e91c03ceb8b0586ea3caf /ipalib
parent98ab09fafc7e24fb32b44e691eb6d6c9464197d5 (diff)
downloadfreeipa-aba16941ee6826b0d65d11e73efb8a62f4a35da1.tar.gz
freeipa-aba16941ee6826b0d65d11e73efb8a62f4a35da1.tar.xz
freeipa-aba16941ee6826b0d65d11e73efb8a62f4a35da1.zip
Skip doc testing of the uuid module since by nature it changes every time
Diffstat (limited to 'ipalib')
-rw-r--r--ipalib/ipauuid.py16
1 files changed, 8 insertions, 8 deletions
diff --git a/ipalib/ipauuid.py b/ipalib/ipauuid.py
index ae3da25ca..457639d83 100644
--- a/ipalib/ipauuid.py
+++ b/ipalib/ipauuid.py
@@ -13,34 +13,34 @@ Typical usage:
>>> import uuid
# make a UUID based on the host ID and current time
- >>> uuid.uuid1()
+ >>> uuid.uuid1() #doctest: +SKIP
UUID('a8098c1a-f86e-11da-bd1a-00112444be1e')
# make a UUID using an MD5 hash of a namespace UUID and a name
- >>> uuid.uuid3(uuid.NAMESPACE_DNS, 'python.org')
+ >>> uuid.uuid3(uuid.NAMESPACE_DNS, 'python.org') #doctest: +SKIP
UUID('6fa459ea-ee8a-3ca4-894e-db77e160355e')
# make a random UUID
- >>> uuid.uuid4()
+ >>> uuid.uuid4() #doctest: +SKIP
UUID('16fd2706-8baf-433b-82eb-8c7fada847da')
# make a UUID using a SHA-1 hash of a namespace UUID and a name
- >>> uuid.uuid5(uuid.NAMESPACE_DNS, 'python.org')
+ >>> uuid.uuid5(uuid.NAMESPACE_DNS, 'python.org') #doctest: +SKIP
UUID('886313e1-3b8a-5372-9b90-0c9aee199e5d')
# make a UUID from a string of hex digits (braces and hyphens ignored)
- >>> x = uuid.UUID('{00010203-0405-0607-0809-0a0b0c0d0e0f}')
+ >>> x = uuid.UUID('{00010203-0405-0607-0809-0a0b0c0d0e0f}') #doctest: +SKIP
# convert a UUID to a string of hex digits in standard form
- >>> str(x)
+ >>> str(x) #doctest: +SKIP
'00010203-0405-0607-0809-0a0b0c0d0e0f'
# get the raw 16 bytes of the UUID
- >>> x.bytes
+ >>> x.bytes #doctest: +SKIP
'\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)
+ >>> uuid.UUID(bytes=x.bytes) #doctest: +SKIP
UUID('00010203-0405-0607-0809-0a0b0c0d0e0f')
"""