summaryrefslogtreecommitdiff
path: root/Lib/os.py
diff options
context:
space:
mode:
authorAndrew M. Kuchling <amk@amk.ca>2004-08-31 11:38:12 +0000
committerAndrew M. Kuchling <amk@amk.ca>2004-08-31 11:38:12 +0000
commit9a7f30e71529dce95d41c28587cab6efc3af91ad (patch)
tree51a4b8d0bff782b575febe14e1f531d1e67a4c76 /Lib/os.py
parentb635c9a9b5d5e9606c3b0cb90558cfb31d6ffc95 (diff)
downloadcpython-9a7f30e71529dce95d41c28587cab6efc3af91ad.tar.gz
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 22f25a3cb4..6af4841414 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