This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author mlorant
Recipients mlorant, orsenthil
Date 2014-04-28.12:55:24
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1398689725.23.0.532137440879.issue21373@psf.upfronthosting.co.za>
In-reply-to
Content
For the moment, RobotFileParser (on both Python 2.x and 3.x) has a method modified, but it is never called in the class itself, hence the last_checked attribute is always at 0 if the user doesn't call modified() explicitly. 

I would suggest to add a call to modified() at the end of the read() method. It makes more sense to have a last_checked value (returns in mtime()) updated by the class itself. Especially when the doc says: "Returns the time the ``robots.txt`` file was last fetched.". Currently this sentence isn't true, since the value has to be updated by the user.
History
Date User Action Args
2014-04-28 12:55:25mlorantsetrecipients: + mlorant, orsenthil
2014-04-28 12:55:25mlorantsetmessageid: <1398689725.23.0.532137440879.issue21373@psf.upfronthosting.co.za>
2014-04-28 12:55:25mlorantlinkissue21373 messages
2014-04-28 12:55:24mlorantcreate