Trees | Indices | Help |
|
---|
|
|
|||
GlobalIdentifier | |||
GUIDManager | |||
BrainGlobalIdentifier |
|
|||
|
|
|||
__doc__ = """g
|
|||
known_uuid_types = {1: uuid1, 3: uuid3, 4: uuid4, 5: uuid5,}
|
|||
GUID_ATTR_NAME = '_guid'
|
|||
GUID_TABLE_PATH = '/zport/dmd/guid_table'
|
|
Generate an Universally Unique ID (UUID), according to RFC 4122. If an unknown uuid_type is provided, uses the UUID4 algorithm. >>> guids = [ generate() for x in range(100000) ] >>> guid_set = set( guids ) >>> len(guids) == len(guid_set) True >>> len( str( generate() ) ) == 36 True
|
|
__doc__
|
Trees | Indices | Help |
|
---|
Generated by Epydoc 3.0.1.1812 on Tue Oct 11 12:51:17 2011 | http://epydoc.sourceforge.net |