From d0cd95ce7febd97683d6e113e1b486b93bcf88eb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Martin=20v=2E=20L=C3=B6wis?= Date: Thu, 19 Jul 2001 10:06:39 +0000 Subject: Replace __import__ with import as. --- Lib/dumbdbm.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 -- cgit v0.12