From 0c95e86cf328a443cbe8559c175f022fd93ce212 Mon Sep 17 00:00:00 2001 From: Jason Gerard DeRose Date: Wed, 21 Jan 2009 13:22:22 -0700 Subject: Removed doctest +ELLIPSIS directive from some examples in ipauuid.py that didn't need it --- ipalib/ipauuid.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'ipalib/ipauuid.py') 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}') -- cgit