mirror of
https://github.com/python/cpython.git
synced 2025-11-20 02:50:14 +00:00
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!
This commit is contained in:
parent
034c2a9f7a
commit
4779a0a6fd
1 changed files with 2 additions and 2 deletions
|
|
@ -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);
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue