Showing content from http://svn.python.org/projects/python/branches/r22rc1-branch/Mac/Unsupported/mkfrozenresources.py below:
# # Given a module-list generated by findmodulefiles # generate the resource file with all needed modules # import macfs import py_resource from Carbon import Res import sys def main(): fss, ok = macfs.PromptGetFile('Module sources listing:', 'TEXT') if not ok: sys.exit(0) ofss, ok = macfs.StandardPutFile('PYC resource output file:') if not ok: sys.exit(0) mfss, ok = macfs.PromptGetFile('Source for __main__ (or cancel):') if ok: mainfile = mfss.as_pathname() else: mainfile = None fp = open(fss.as_pathname()) data = fp.read() modules = eval(data) fsid = py_resource.create(ofss.as_pathname(), creator='RSED') if mainfile: id, name = py_resource.frompyfile(mainfile, '__main__') for module, source in modules: if source: id, name = py_resource.frompyfile(source) print 'Wrote %d %s: %s'%(id, name, source) Res.CloseResFile(fsid) if __name__ == '__main__': main() sys.exit(1)
RetroSearch is an open source project built by @garambo
| Open a GitHub Issue
Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo
HTML:
3.2
| Encoding:
UTF-8
| Version:
0.7.4