1
1
Fork 0
mirror of https://github.com/pypa/pip synced 2023-12-13 21:30:23 +01:00

Merge pull request #7056 from chrahunt/docs/networking-auth-docstring

Add documentation string to pip._internal.network.auth
This commit is contained in:
Christopher Hunt 2019-09-21 04:22:36 -04:00 committed by GitHub
commit 43864b86bb
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 8 additions and 0 deletions

View file

@ -0,0 +1,2 @@
"""Contains purely network-related utilities.
"""

View file

@ -1,3 +1,9 @@
"""Network Authentication Helpers
Contains interface (MultiDomainBasicAuth) and associated glue code for
providing credentials in the context of network requests.
"""
import logging
from pip._vendor.requests.auth import AuthBase, HTTPBasicAuth