From 49ef0b76bc31a26749c56f5ba051100a42077e7e Mon Sep 17 00:00:00 2001 From: Just van Rossum Date: Sat, 30 Jan 1999 22:32:40 +0000 Subject: [PATCH] changed chars in source > chr(127) to ASCII: CVS corrupted them -- jvr --- Mac/Tools/macfreeze/macgen_bin.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Mac/Tools/macfreeze/macgen_bin.py b/Mac/Tools/macfreeze/macgen_bin.py index e293b63f892..b71b4c788e6 100644 --- a/Mac/Tools/macfreeze/macgen_bin.py +++ b/Mac/Tools/macfreeze/macgen_bin.py @@ -29,7 +29,7 @@ def generate(input, output, module_dict = None, architecture = 'fat', debug=0): dynamicmodules, dynamicfiles, extraresfiles = findfragments(module_dict, architecture) - print "Adding ³__main__²" + print 'Adding "__main__"' buildtools.process(applettemplatepath, input, output, 0) outputref = Res.OpenResFile(output) @@ -40,7 +40,7 @@ def generate(input, output, module_dict = None, architecture = 'fat', debug=0): addpythonmodules(module_dict) print "Adding PythonCore resources" - copyres(corepath, outputref, ['cfrg', 'Popt', 'GU…I'], 1) + copyres(corepath, outputref, ['cfrg', 'Popt', 'GU\267I'], 1) print "Adding resources from shared libraries" for ppcpath, cfm68kpath in extraresfiles: @@ -144,7 +144,7 @@ def addpythonmodules(module_dict): print '*** skipping', location continue - print 'Adding module ³%s²' % name + print 'Adding module "%s"' % name id, name = py_resource.frompyfile(location, name, preload=0, ispackage=mtype=='package')