Package platformids :: Package dist :: Module centos_enum_labels

Source Code for Module platformids.dist.centos_enum_labels

 1  # -*- coding: utf-8 -*- 
 2  """Mapping of numeric and symbolic enum strings, optional loaded  
 3  on 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.1' 
12  # __uuid__ = "7add5ded-c39b-4b6e-8c87-1b3a1c150ee9" 
13  #  
14  # __docformat__ = "restructuredtext en" 
15   
16  from platformids import num2enumstr  # @UnusedImport 
17  from platformids import *  # @UnusedWildImport 
18  from platformids.dist import *  # @UnusedWildImport 
19   
20  from platformids.dist.centos import *  # @UnusedWildImport 
21   
22  #: mapping of the numeric value to it's symbolic representation 
23  num2enumstr.update( 
24      { 
25          RTE_CENTOS5: "RTE_CENTOS5", 
26          RTE_CENTOS6: "RTE_CENTOS6", 
27          RTE_CENTOS7: "RTE_CENTOS7", 
28          RTE_CENTOS8: "RTE_CENTOS8", 
29          RTE_CENTOS9: "RTE_CENTOS9", 
30      } 
31  ) 
32