Package platformids ::
Package dist ::
Module solaris_enum_labels
1
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 *
17 from platformids.dist import *
18
19 from platformids.dist.solaris import *
20
21
22 num2enumstr.update(
23 {
24 RTE_SOLARIS10: "RTE_SOLARIS10",
25 RTE_SOLARIS11: "RTE_SOLARIS11",
26 }
27 )
28