Package platformids :: Package dist :: Module debian_enum_labels

Source Code for Module platformids.dist.debian_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.28' 
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.debian import *  # @UnusedWildImport 
19   
20  from platformids.dist.debian import *  # @UnusedWildImport 
21   
22  #: mapping of the numeric value to it's symbolic representation 
23  num2enumstr.update( 
24      { 
25          RTE_DEBIAN7: "RTE_DEBIAN7", 
26          RTE_DEBIAN8: "RTE_DEBIAN8", 
27          RTE_DEBIAN9: "RTE_DEBIAN9", 
28          RTE_DEBIAN10: "RTE_DEBIAN10", 
29          RTE_DEBIAN11: "RTE_DEBIAN11", 
30          RTE_DEBIAN12: "RTE_DEBIAN12", 
31      } 
32  ) 
33