Remove debug output, fix assert (hopefully) and exercise signedness issues a bit more.
diff --git a/Python/import.c b/Python/import.c
index f9f3cdb..2cac9b5 100644
--- a/Python/import.c
+++ b/Python/import.c
@@ -905,14 +905,9 @@
(void) unlink(cpathname);
return;
}
- /* Now write the true mtime */
+ /* Now write the true mtime (as a 32-bit field) */
fseek(fp, 4L, 0);
- if (mtime >= LONG_MAX) {
- fprintf(stderr, "** sizes=(%ld, %ld), mtime=%I64d >= %ld\n", sizeof(time_t), sizeof(srcstat->st_mtime), mtime, LONG_MAX);
- assert(0);
- /* can't get here */
- }
- assert(mtime < LONG_MAX);
+ assert(mtime <= 0xFFFFFFFF);
PyMarshal_WriteLongToFile((long)mtime, fp, Py_MARSHAL_VERSION);
fflush(fp);
fclose(fp);