msl.loadlib.start_server32 module

This module is built in to a 32-bit executable by running freeze_server32.

The executable is used to host a 32-bit library, Server32, so that a module running in a 64-bit Python interpreter, Client64, can communicate with the library. This client-server exchange of information is a form of inter-process communication.

msl.loadlib.start_server32.main()[source]

Starts a 32-bit server (which is a subclass of Server32).

Parses the command-line arguments to run a Python module on a 32-bit server to host a 32-bit library. To see the list of command-line arguments that are allowed, run the executable with the --help flag (or click here to view the source code of the argparse.ArgumentParser implementation).