diff options
author | Fred Drake <fdrake@acm.org> | 1999-01-19 16:05:13 (GMT) |
---|---|---|
committer | Fred Drake <fdrake@acm.org> | 1999-01-19 16:05:13 (GMT) |
commit | 0237909e420db2897034a371087963be4a312552 (patch) | |
tree | 1cbadd5e77448e5f162da6e63699c41a32bc67a8 /Lib/os.py | |
parent | cb5540e72af8b11ac7bf55051fdda38de57b5dcf (diff) | |
download | cpython-0237909e420db2897034a371087963be4a312552.zip cpython-0237909e420db2897034a371087963be4a312552.tar.gz cpython-0237909e420db2897034a371087963be4a312552.tar.bz2 |
Enable os.path as a mostly-normal submodule, including "from os.path
import isfile" and "import os.path".
Diffstat (limited to 'Lib/os.py')
-rw-r--r-- | Lib/os.py | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -93,6 +93,8 @@ else: del _names +sys.modules['os.path'] = path + # Super directory utilities. # (Inspired by Eric Raymond; the doc strings are mostly his) |