77import os
88import gensuitemodule
99
10+ verbose = sys .stdout
11+
1012DSTDIR = "/Users/jack/src/python/Lib/plat-mac/lib-scriptpackages"
1113OS9DISK = "/Volumes/Moes"
1214
2224gensuitemodule .processfile_fromresource (APPLESCRIPT ,
2325 output = os .path .join (DSTDIR , 'StdSuites' ),
2426 basepkgname = '_builtinSuites' ,
25- edit_modnames = [])
27+ edit_modnames = [], verbose = verbose )
2628gensuitemodule .processfile (SYSTEMEVENTS ,
2729 output = os .path .join (DSTDIR , 'SystemEvents' ),
2830 basepkgname = 'StdSuites' ,
29- edit_modnames = [])
31+ edit_modnames = [], verbose = verbose )
3032gensuitemodule .processfile (CODEWARRIOR ,
3133 output = os .path .join (DSTDIR , 'CodeWarrior' ),
3234 basepkgname = 'StdSuites' ,
33- edit_modnames = [])
35+ edit_modnames = [], verbose = verbose )
3436gensuitemodule .processfile (EXPLORER ,
3537 output = os .path .join (DSTDIR , 'Explorer' ),
3638 basepkgname = 'StdSuites' ,
37- edit_modnames = [])
39+ edit_modnames = [], verbose = verbose )
3840gensuitemodule .processfile (FINDER ,
3941 output = os .path .join (DSTDIR , 'Finder' ),
4042 basepkgname = 'StdSuites' ,
41- edit_modnames = [])
43+ edit_modnames = [], verbose = verbose )
4244gensuitemodule .processfile (NETSCAPE ,
4345 output = os .path .join (DSTDIR , 'Netscape' ),
4446 basepkgname = 'StdSuites' ,
45- edit_modnames = [('WorldWideWeb_suite_2c__as_d' , 'WorldWideWeb_suite' )])
47+ edit_modnames = [('WorldWideWeb_suite_2c__as_d' , 'WorldWideWeb_suite' )], verbose = verbose )
4648gensuitemodule .processfile (TERMINAL ,
4749 output = os .path .join (DSTDIR , 'Terminal' ),
4850 basepkgname = 'StdSuites' ,
49- edit_modnames = [])
51+ edit_modnames = [], verbose = verbose )
5052
0 commit comments