diff options
author | Andrew M. Kuchling <amk@amk.ca> | 2004-08-31 11:38:12 +0000 |
---|---|---|
committer | Andrew M. Kuchling <amk@amk.ca> | 2004-08-31 11:38:12 +0000 |
commit | 9a7f30e71529dce95d41c28587cab6efc3af91ad (patch) | |
tree | 51a4b8d0bff782b575febe14e1f531d1e67a4c76 /Lib/os.py | |
parent | b635c9a9b5d5e9606c3b0cb90558cfb31d6ffc95 (diff) | |
download | cpython-9a7f30e71529dce95d41c28587cab6efc3af91ad.tar.gz |
Use multi-line import
Diffstat (limited to 'Lib/os.py')
-rw-r--r-- | Lib/os.py | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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 |