Package saga :: Module _engine :: Class uuid
[frames] | no frames]

Class uuid

 object --+    
          |    
??.instance --+
              |
             uuid

saga::uuid type

Instance Methods
 
__cmp__(...)
__cmp__( (uuid)arg1, (uuid)arg2) -> bool : compares two saga::uuid instances
 
__init__(...)
__init__( (object)arg1) -> None :
 
__reduce__(...)
helper for pickle
 
__str__(...)
__str__( (uuid)arg1) -> str : returns the string representation of this instance

Inherited from unreachable.instance: __new__

Inherited from object: __delattr__, __format__, __getattribute__, __hash__, __reduce_ex__, __repr__, __setattr__, __sizeof__, __subclasshook__

Class Variables
  __instance_size__ = 32
Properties
  string
returns the string representation of this instance

Inherited from object: __class__

Method Details

__cmp__(...)
(Comparison operator)

 

__cmp__( (uuid)arg1, (uuid)arg2) -> bool :
    compares two saga::uuid instances

    C++ signature :
        bool __cmp__(saga::uuid,saga::uuid)

__init__(...)
(Constructor)

 

__init__( (object)arg1) -> None :

    C++ signature :
        void __init__(_object*)

__init__( (object)arg1, (str)arg2) -> None :

    C++ signature :
        void __init__(_object*,char const*)

Overrides: object.__init__

__reduce__(...)

 

helper for pickle

Overrides: object.__reduce__
(inherited documentation)

__str__(...)
(Informal representation operator)

 

__str__( (uuid)arg1) -> str :
    returns the string representation of this instance

    C++ signature :
        std::string __str__(saga::uuid {lvalue})

Overrides: object.__str__

Property Details

string

returns the string representation of this instance

Get Method:
unreachable(...)