summaryrefslogtreecommitdiffstats
path: root/Lib/dumbdbm.py
diff options
context:
space:
mode:
authorMartin v. Löwis <martin@v.loewis.de>2001-07-19 10:06:39 (GMT)
committerMartin v. Löwis <martin@v.loewis.de>2001-07-19 10:06:39 (GMT)
commitd0cd95ce7febd97683d6e113e1b486b93bcf88eb (patch)
tree0efad1cfc5beef6d360faec92eb047ad3d18b4ba /Lib/dumbdbm.py
parentee6a4a28ceb8ccf11b60f7d4afdf783d8a4d5b2d (diff)
downloadcpython-d0cd95ce7febd97683d6e113e1b486b93bcf88eb.zip
cpython-d0cd95ce7febd97683d6e113e1b486b93bcf88eb.tar.gz
cpython-d0cd95ce7febd97683d6e113e1b486b93bcf88eb.tar.bz2
Replace __import__ with import as.
Diffstat (limited to 'Lib/dumbdbm.py')
-rw-r--r--Lib/dumbdbm.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/dumbdbm.py b/Lib/dumbdbm.py
index 30ec114..e508349 100644
--- a/Lib/dumbdbm.py
+++ b/Lib/dumbdbm.py
@@ -21,7 +21,7 @@ is read when the database is opened, and some updates rewrite the whole index)
"""
-_os = __import__('os')
+import os as _os
import __builtin__
_open = __builtin__.open