Add useless 'return 1' to prtrace() to shut up VC++.

This commit is contained in:
Guido van Rossum 2000-05-04 00:55:17 +00:00
parent 4951782178
commit cc229ea76f
1 changed files with 1 additions and 0 deletions

View File

@ -2176,6 +2176,7 @@ prtrace(v, str)
if (PyObject_Print(v, stdout, 0) != 0)
PyErr_Clear(); /* Don't know what else to do */
printf("\n");
return 1;
}
#endif