msl.loadlib package

Load a shared library.

The following constants are provided in the MSL-LoadLib package.

msl.loadlib.version_info = version_info(major=0, minor=10, micro=0, releaselevel='final')

Contains the version information as a (major, minor, micro, releaselevel) tuple.

Type:

namedtuple

msl.loadlib.IS_WINDOWS = False

Whether the operating system is Windows.

Type:

bool

msl.loadlib.IS_LINUX = True

Whether the operating system is Linux.

Type:

bool

msl.loadlib.IS_MAC = False

Whether the operating system is macOS.

Type:

bool

msl.loadlib.IS_PYTHON_64BIT = True

Whether the Python interpreter is 64-bits.

Type:

bool

msl.loadlib.IS_PYTHON2 = False

Whether Python 2.x is being used.

Type:

bool

msl.loadlib.IS_PYTHON3 = True

Whether Python 3.x is being used.

Type:

bool