usr/src/cmd/distro_const/execution_checkpoint.py
changeset 1680 902e7dbd8043
parent 1141 c1d4dae5faa8
equal deleted inserted replaced
1679:05cc741cc3d6 1680:902e7dbd8043
    19 #
    19 #
    20 # CDDL HEADER END
    20 # CDDL HEADER END
    21 #
    21 #
    22 
    22 
    23 #
    23 #
    24 # Copyright (c) 2010, 2011, Oracle and/or its affiliates. All rights reserved.
    24 # Copyright (c) 2010, 2012, Oracle and/or its affiliates. All rights reserved.
    25 #
    25 #
    26 
    26 
    27 """ execution_checkpoint
    27 """ execution_checkpoint
    28 
    28 
    29  Execution object class for handling the <execution> elements
    29  Execution object class for handling the <execution> elements
    33 """
    33 """
    34 import sys
    34 import sys
    35 
    35 
    36 from lxml import etree
    36 from lxml import etree
    37 
    37 
    38 from solaris_install.data_object import DataObject, ParsingError
       
    39 from solaris_install.data_object.cache import DataObjectCache
    38 from solaris_install.data_object.cache import DataObjectCache
    40 from solaris_install.data_object.simple import SimpleXmlHandlerBase
    39 from solaris_install.data_object.simple import SimpleXmlHandlerBase
    41 
    40 
    42 
    41 
    43 class Execution(SimpleXmlHandlerBase):
    42 class Execution(SimpleXmlHandlerBase):