Skip to content

Commit

Permalink
Add ndbm move. (#299)
Browse files Browse the repository at this point in the history
  • Loading branch information
benbariteau authored and benjaminp committed Nov 5, 2019
1 parent a997033 commit 1f2f571
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 0 deletions.
2 changes: 2 additions & 0 deletions documentation/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -586,6 +586,8 @@ Supported renames:
+------------------------------+-------------------------------------+---------------------------------------+
| ``dbm_gnu`` | :func:`py2:gdbm` | :class:`py3:dbm.gnu` |
+------------------------------+-------------------------------------+---------------------------------------+
| ``dbm_ndbm`` | :func:`py2:dbm` | :func:`py3:dbm.ndbm` |
+------------------------------+-------------------------------------+---------------------------------------+
| ``_dummy_thread`` | :mod:`py2:dummy_thread` | :mod:`py3:_dummy_thread` |
+------------------------------+-------------------------------------+---------------------------------------+
| ``email_mime_base`` | :mod:`py2:email.MIMEBase` | :mod:`py3:email.mime.base` |
Expand Down
1 change: 1 addition & 0 deletions six.py
Original file line number Diff line number Diff line change
Expand Up @@ -257,6 +257,7 @@ class _MovedItems(_LazyModule):
MovedModule("configparser", "ConfigParser"),
MovedModule("copyreg", "copy_reg"),
MovedModule("dbm_gnu", "gdbm", "dbm.gnu"),
MovedModule("dbm_ndbm", "dbm", "dbm.ndbm"),
MovedModule("_dummy_thread", "dummy_thread", "_dummy_thread"),
MovedModule("http_cookiejar", "cookielib", "http.cookiejar"),
MovedModule("http_cookies", "Cookie", "http.cookies"),
Expand Down

0 comments on commit 1f2f571

Please sign in to comment.