From 56440a58f7a9e4aff1877c86772c846093ea5fd3 Mon Sep 17 00:00:00 2001 From: Guido van Rossum Date: Wed, 7 Oct 1998 14:06:03 +0000 Subject: [PATCH] Fix two bugs in the fstat() line, reported by Fredruk Lundh. --- Lib/py_compile.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Lib/py_compile.py b/Lib/py_compile.py index a6d03d7b3e..e1d0d70bab 100644 --- a/Lib/py_compile.py +++ b/Lib/py_compile.py @@ -44,7 +44,7 @@ def compile(file, cfile=None, dfile=None): import os, marshal, __builtin__ f = open(file) try: - timestamp = os.fstat(file.fileno()) + timestamp = long(os.fstat(f.fileno())[8]) except AttributeError: timestamp = long(os.stat(file)[8]) codestring = f.read() -- 2.50.1