]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
changed chars in source > chr(127) to ASCII: CVS corrupted them -- jvr
authorJust van Rossum <just@lettererror.com>
Sat, 30 Jan 1999 22:32:40 +0000 (22:32 +0000)
committerJust van Rossum <just@lettererror.com>
Sat, 30 Jan 1999 22:32:40 +0000 (22:32 +0000)
Mac/Tools/macfreeze/macgen_bin.py

index e293b63f892e87e13723f75218d34656a48f642c..b71b4c788e602036f133c9bcce40b4b56a45a962 100644 (file)
@@ -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\85I'], 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')