Package platformids :: Package dist :: Module solaris_enum_labels

Source Code for Module platformids.dist.solaris_enum_labels

 1  # -*- coding: utf-8 -*- 
 2  """Mapping of numeric and symbolic enum strings, optional loaded on  
 3  demand for human display of debug info only. 
 4  """ 
 5  from __future__ import absolute_import 
 6   
 7  __author__ = 'Arno-Can Uestuensoez' 
 8  __license__ = "Artistic-License-2.0 + Forced-Fairplay-Constraints" 
 9  __copyright__ = "Copyright (C) 2010-2018 Arno-Can Uestuensoez" \ 
10                  " @Ingenieurbuero Arno-Can Uestuensoez" 
11  __version__ = '0.1.28' 
12  __uuid__ = "7add5ded-c39b-4b6e-8c87-1b3a1c150ee9" 
13   
14  __docformat__ = "restructuredtext en" 
15   
16  from platformids import *  # @UnusedWildImport 
17  from platformids.dist import *  # @UnusedWildImport 
18   
19  from platformids.dist.solaris import *  # @UnusedWildImport 
20   
21  #: mapping of the numeric value to it's symbolic representation 
22  num2enumstr.update( 
23      { 
24          RTE_SOLARIS10: "RTE_SOLARIS10", 
25          RTE_SOLARIS11: "RTE_SOLARIS11", 
26      } 
27  ) 
28