summaryrefslogtreecommitdiffstats
path: root/Lib/os.py
diff options
context:
space:
mode:
authorAndrew M. Kuchling <amk@amk.ca>2004-08-31 11:38:12 (GMT)
committerAndrew M. Kuchling <amk@amk.ca>2004-08-31 11:38:12 (GMT)
commit33ad28b68dd6caadc1e6cb8f917665d6270e7b25 (patch)
treea190b6c2a5ba3cf6f8585fc00b1e0e0725c440c5 /Lib/os.py
parent3294e9d2e73b19a28a450ca7a7f47ece30272a46 (diff)
downloadcpython-33ad28b68dd6caadc1e6cb8f917665d6270e7b25.zip
cpython-33ad28b68dd6caadc1e6cb8f917665d6270e7b25.tar.gz
cpython-33ad28b68dd6caadc1e6cb8f917665d6270e7b25.tar.bz2
Use multi-line import
Diffstat (limited to 'Lib/os.py')
-rw-r--r--Lib/os.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/os.py b/Lib/os.py
index 22f25a3..6af4841 100644
--- a/Lib/os.py
+++ b/Lib/os.py
@@ -130,8 +130,8 @@ else:
raise ImportError, 'no os specific module found'
sys.modules['os.path'] = path
-from os.path import curdir, pardir, sep, pathsep, defpath, extsep, altsep, \
- devnull
+from os.path import (curdir, pardir, sep, pathsep, defpath, extsep, altsep,
+ devnull)
del _names