← Back
Editing: http.cpython-311.pyc
� %�c� � �@ � d Z ddlZddlmZmZmZ G d� d� � ZdS )a� urllib2.HTTPPasswordMgr object using the keyring, for use with the urllib2.HTTPBasicAuthHandler. usage: import urllib2 handlers = [urllib2.HTTPBasicAuthHandler(PasswordMgr())] urllib2.install_opener(handlers) urllib2.urlopen(...) This will prompt for a password if one is required and isn't already in the keyring. Then, it adds it to the keyring for subsequent use. � N� )�get_password�delete_password�set_passwordc �&