Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit d0cd95c

Browse files
committed
Replace __import__ with import as.
1 parent ee6a4a2 commit d0cd95c

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Lib/dumbdbm.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
2222
"""
2323

24-
_os = __import__('os')
24+
import os as _os
2525
import __builtin__
2626

2727
_open = __builtin__.open

0 commit comments

Comments
 (0)