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 nagle
Recipients
Date 2007-04-22.21:12:05
SpamBayes Score
Marked as misclassified
Message-id
In-reply-to
Content
I tried the patch by doing this:

import robotparser   
def prompt_user_passwd(self, host, realm):
    return None, None
robotparser.URLopener.prompt_user_passwd = prompt_user_passwd    # temp patch


This dealt with the problem effectively; robots.txt files are being processed normally, and if reading one causes an authentication request, it's handled as if no password was input, without any interaction.  

So this could probably go in.
History
Date User Action Args
2007-08-23 14:17:16adminlinkissue813986 messages
2007-08-23 14:17:16admincreate