summaryrefslogtreecommitdiffstats
path: root/ipalib/ipauuid.py
diff options
context:
space:
mode:
authorJason Gerard DeRose <jderose@redhat.com>2009-01-21 13:22:22 -0700
committerJason Gerard DeRose <jderose@redhat.com>2009-01-21 13:22:22 -0700
commit0c95e86cf328a443cbe8559c175f022fd93ce212 (patch)
treef9861fda5d22302c9deeade867fd3ac8aab4af2f /ipalib/ipauuid.py
parentc4702f3a1e2e8f225ed3a53288adaf9167169772 (diff)
downloadfreeipa-0c95e86cf328a443cbe8559c175f022fd93ce212.tar.gz
freeipa-0c95e86cf328a443cbe8559c175f022fd93ce212.tar.xz
freeipa-0c95e86cf328a443cbe8559c175f022fd93ce212.zip
Removed doctest +ELLIPSIS directive from some examples in ipauuid.py that didn't need it
Diffstat (limited to 'ipalib/ipauuid.py')
-rw-r--r--ipalib/ipauuid.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/ipalib/ipauuid.py b/ipalib/ipauuid.py
index 0c364e76..dde7f8ae 100644
--- a/ipalib/ipauuid.py
+++ b/ipalib/ipauuid.py
@@ -17,16 +17,16 @@ Typical usage:
UUID('...')
# make a UUID using an MD5 hash of a namespace UUID and a name
- >>> uuid.uuid3(uuid.NAMESPACE_DNS, 'python.org') #doctest: +ELLIPSIS
- UUID('...')
+ >>> uuid.uuid3(uuid.NAMESPACE_DNS, 'python.org')
+ UUID('6fa459ea-ee8a-3ca4-894e-db77e160355e')
# make a random UUID
>>> uuid.uuid4() #doctest: +ELLIPSIS
UUID('...')
# make a UUID using a SHA-1 hash of a namespace UUID and a name
- >>> uuid.uuid5(uuid.NAMESPACE_DNS, 'python.org') #doctest: +ELLIPSIS
- UUID('...')
+ >>> 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)
>>> x = uuid.UUID('{00010203-0405-0607-0809-0a0b0c0d0e0f}')