diff options
author | Nathan Olla <ollan@deshawresearch.com> | 2014-07-14 16:05:22 -0400 |
---|---|---|
committer | Nathan Olla <ollan@deshawresearch.com> | 2014-07-14 16:05:22 -0400 |
commit | a9fdf3d7e73c4aabc0b5e5710617c0788b9311c8 (patch) | |
tree | 78a18384047f4c9aa20ee9ecfb33c36809491b33 /doc/development | |
parent | c1e30f4bc8a03a9be535bf126e993ff45e8ab382 (diff) | |
download | bcfg2-a9fdf3d7e73c4aabc0b5e5710617c0788b9311c8.tar.gz bcfg2-a9fdf3d7e73c4aabc0b5e5710617c0788b9311c8.tar.bz2 bcfg2-a9fdf3d7e73c4aabc0b5e5710617c0788b9311c8.zip |
Add urlretrieve to Compat and document
Diffstat (limited to 'doc/development')
-rw-r--r-- | doc/development/compat.txt | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/doc/development/compat.txt b/doc/development/compat.txt index f90274ce5..8700c46d3 100644 --- a/doc/development/compat.txt +++ b/doc/development/compat.txt @@ -60,6 +60,8 @@ behavior (e.g., :func:`input`) do not cause unexpected side-effects. +---------------------------------+--------------------------------------------------+---------------------------------------------------------+ | urlparse | :func:`urlparse.urlparse` | :func:`urllib.parse.urlparse` | +---------------------------------+--------------------------------------------------+---------------------------------------------------------+ +| urlretrieve | :func:`urllib.urlretrieve` | :func:`urllib.request.urlretrieve` | ++---------------------------------+--------------------------------------------------+---------------------------------------------------------+ | HTTPBasicAuthHandler | :class:`urllib2.HTTPBasicAuthHandler` | :class:`urllib.request.HTTPBasicAuthHandler` | +---------------------------------+--------------------------------------------------+---------------------------------------------------------+ | HTTPPasswordMgrWithDefaultRealm | :class:`urllib2.HTTPPasswordMgrWithDefaultRealm` | :class:`urllib.request.HTTPPasswordMgrWithDefaultRealm` | |