Cast mtime gotten from stat() to long int -- else it won't work
on the Mac.

Jack!  Please fix this in the Mac distributions!
diff --git a/Lib/py_compile.py b/Lib/py_compile.py
index 2e68ba8..fba7b1d 100644
--- a/Lib/py_compile.py
+++ b/Lib/py_compile.py
@@ -16,7 +16,7 @@
 	f = open(file)
 	codestring = f.read()
 	f.close()
-	timestamp = os.stat(file)[8]
+	timestamp = long(os.stat(file)[8])
 	codeobject = __builtin__.compile(codestring, file, 'exec')
 	if not cfile:
 		cfile = file + 'c'