Module psfdata.psfbin_defs
Classes
class SectionType (*args, **kwds)
-
Expand source code
class SectionType(IntEnum): """These values are used to identify sections in the TOC.""" HEADER = 0 TYPE = 1 SWEEP = 2 TRACE = 3 VALUE = 4
These values are used to identify sections in the TOC.
Ancestors
- enum.IntEnum
- builtins.int
- enum.ReprEnum
- enum.Enum
Class variables
var HEADER
-
The type of the None singleton.
var SWEEP
-
The type of the None singleton.
var TRACE
-
The type of the None singleton.
var TYPE
-
The type of the None singleton.
var VALUE
-
The type of the None singleton.
class TypeId (*args, **kwds)
-
Expand source code
class TypeId(IntEnum): INT8 = 0x01 INT32 = 0x05 DOUBLE = 0x0B COMPLEXDOUBLE = 0x0C STRUCT = 0x10
Enum where members are also (and must be) ints
Ancestors
- enum.IntEnum
- builtins.int
- enum.ReprEnum
- enum.Enum
Class variables
var COMPLEXDOUBLE
-
The type of the None singleton.
var DOUBLE
-
The type of the None singleton.
var INT32
-
The type of the None singleton.
var INT8
-
The type of the None singleton.
var STRUCT
-
The type of the None singleton.