From 89f9865b9124134fb8fbb87baed57b59498e469e Mon Sep 17 00:00:00 2001 From: Andrew MacIntyre Date: Tue, 2 Dec 2003 12:33:01 +0000 Subject: [PATCH] OS/2+EMX: make the link() emulation available as os.link() --- Lib/os.py | 1 + 1 file changed, 1 insertion(+) diff --git a/Lib/os.py b/Lib/os.py index 488d3e4a2cf..128351e290e 100644 --- a/Lib/os.py +++ b/Lib/os.py @@ -76,6 +76,7 @@ elif 'os2' in _names: import ntpath as path else: import os2emxpath as path + from _emx_link import link import os2 __all__.extend(_get_exports_list(os2))