# try to import stdlib modules not used by the subproc proxy itself; # for source-code proxies (dirtro or custom py), these should be in lib;; # for frozen apps and exes, these are forcibly included at freeze time # these should work normally import sys, os print(sys) print(os) # mods not used by subprocprocy.py itself import cgi, shelve, re, cmath print(cgi) print(shelve) print(re) print(cmath) # more fun stuff import distutils, urllib, email, json, html.parser, tkinter print(distutils) print(urllib) print(email) print(json) print(html.parser) print(tkinter) # expected output (on Mac app)------------------------------------------------- """ """ # expected output (on Windows exe)--------------------------------------------- """ )> )> )> )> )> )> )> )> )> """