Replaced obsolete stat module constants with equivalent attributes
diff --git a/Lib/compileall.py b/Lib/compileall.py
index 2fbc2bc..8397c96 100644
--- a/Lib/compileall.py
+++ b/Lib/compileall.py
@@ -13,7 +13,6 @@
 """
 
 import os
-import stat
 import sys
 import py_compile
 
@@ -56,8 +55,8 @@
             head, tail = name[:-3], name[-3:]
             if tail == '.py':
                 cfile = fullname + (__debug__ and 'c' or 'o')
-                ftime = os.stat(fullname)[stat.ST_MTIME]
-                try: ctime = os.stat(cfile)[stat.ST_MTIME]
+                ftime = os.stat(fullname).st_mtime
+                try: ctime = os.stat(cfile).st_mtime
                 except os.error: ctime = 0
                 if (ctime > ftime) and not force: continue
                 if not quiet: