Shared Objects ============== We will want several instances of the typesetting daemon, each with their own set of macros and fonts loaded. It is easy to link shared objects to Python scripts by using the ctypes module. But they are still shared objects, and so they share state. .. literalinclude:: /../../toyproblem/tp_count_so.c :language: c .. literalinclude:: /../../toyproblem/test_count_so.py :language: python