summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMark Hammond <mhammond@skippinet.com.au>2000-10-05 22:10:33 (GMT)
committerMark Hammond <mhammond@skippinet.com.au>2000-10-05 22:10:33 (GMT)
commit4779a0a6fd444d594f1cbb992c636d66f59a5d1d (patch)
tree1ff8222080cf058fb48cfb028dde8cc9b8429f9e
parent034c2a9f7ab8c6d1887d258385a13d271bc20d32 (diff)
downloadcpython-4779a0a6fd444d594f1cbb992c636d66f59a5d1d.zip
cpython-4779a0a6fd444d594f1cbb992c636d66f59a5d1d.tar.gz
cpython-4779a0a6fd444d594f1cbb992c636d66f59a5d1d.tar.bz2
Remove some debugging messages - although this code is a complete hack, we dont need to announce it to the world every time they use freeze!
-rw-r--r--PC/frozen_dllmain.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/PC/frozen_dllmain.c b/PC/frozen_dllmain.c
index 0873d8f..fbb4713 100644
--- a/PC/frozen_dllmain.c
+++ b/PC/frozen_dllmain.c
@@ -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);
}
}