From 0237909e420db2897034a371087963be4a312552 Mon Sep 17 00:00:00 2001 From: Fred Drake Date: Tue, 19 Jan 1999 16:05:13 +0000 Subject: [PATCH] Enable os.path as a mostly-normal submodule, including "from os.path import isfile" and "import os.path". --- Lib/os.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Lib/os.py b/Lib/os.py index 28ed3cfff1..15230c1654 100644 --- a/Lib/os.py +++ b/Lib/os.py @@ -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) -- 2.50.0