]> granicus.if.org Git - python/commitdiff
Remove some debugging messages - although this code is a complete hack, we dont need...
authorMark Hammond <mhammond@skippinet.com.au>
Thu, 5 Oct 2000 22:10:33 +0000 (22:10 +0000)
committerMark Hammond <mhammond@skippinet.com.au>
Thu, 5 Oct 2000 22:10:33 +0000 (22:10 +0000)
PC/frozen_dllmain.c

index 0873d8f57377a49a37dd2d3b86aa2e8ca9c9a1f6..fbb47138790848fe9cf02fc635cb25e5820a1017 100644 (file)
@@ -64,7 +64,7 @@ void PyWinFreeze_ExeInit(void)
 {
        char **modName;
        for (modName = possibleModules;*modName;*modName++) {
-               printf("Initialising '%s'\n", *modName);
+/*             printf("Initialising '%s'\n", *modName); */
                CallModuleDllMain(*modName, DLL_PROCESS_ATTACH);
        }
 }
@@ -80,7 +80,7 @@ void PyWinFreeze_ExeTerm(void)
        for (modName = possibleModules+(sizeof(possibleModules) / sizeof(char *))-2;
             modName >= possibleModules;
             *modName--) {
-               printf("Terminating '%s'\n", *modName);
+/*             printf("Terminating '%s'\n", *modName);*/
                CallModuleDllMain(*modName, DLL_PROCESS_DETACH);
        }
 }