Author libber
Recipients
Date 2004-10-16.08:22:23
SpamBayes Score
Marked as misclassified
Message-id
In-reply-to
Content
http://www.python.org/doc/2.3.4/lib/module-stat.html

You no longer do this:
        mode = os.stat(file)[ST_MODE]
You instead do:
        mode = os.stat(file).st_mode

I would happily update this doc, just tell me the
correct procedure. Python has been a joy to use.

libber@gmail.com
Collin Greene
History
Date User Action Args
2007-08-23 14:26:43adminlinkissue1048234 messages
2007-08-23 14:26:43admincreate