Staging
v0.5.1
https://github.com/python/cpython
Raw File
Tip revision: 6f3e109f2cad953efb467f0afbb7b61b89914f64 authored by cvs2svn on 22 May 2003, 19:13:35 UTC
This commit was manufactured by cvs2svn to create tag 'r223c1'.
Tip revision: 6f3e109
mkfrozenresources.py
#
# 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)
back to top