Message6223

Author yanne
Recipients otmarhumbel, yanne
Date 2010-11-03.07:15:39
SpamBayes Score 1.0101417e-06
Marked as misclassified No
Message-id <1288768541.91.0.715738761017.issue1672@psf.upfronthosting.co.za>
In-reply-to
Content
Sorry, I was actually lazy when creating the report.

This code (from compileall.py) is the culprit:

 56             if tail == '.py': 
 57                 cfile = fullname + (__debug__ and 'c' or 'o') 
 58                 ftime = os.stat(fullname).st_mtime 
 59                 try: ctime = os.stat(cfile).st_mtime 
 60                 except os.error: ctime = 0 
 61                 if (ctime > ftime) and not force: continue 

It seems to me that this is copied from Python stdlib directly and it checks for existence of .pyc/.pyo files when determining whether to compile or not.
History
Date User Action Args
2010-11-03 07:15:41yannesetmessageid: <1288768541.91.0.715738761017.issue1672@psf.upfronthosting.co.za>
2010-11-03 07:15:41yannesetrecipients: + yanne, otmarhumbel
2010-11-03 07:15:41yannelinkissue1672 messages
2010-11-03 07:15:40yannecreate