From: Andrew MacIntyre Date: Tue, 2 Dec 2003 12:33:01 +0000 (+0000) Subject: OS/2+EMX: make the link() emulation available as os.link() X-Git-Tag: v2.4a1~1171 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=89f9865b9124134fb8fbb87baed57b59498e469e;p=thirdparty%2FPython%2Fcpython.git OS/2+EMX: make the link() emulation available as os.link() --- diff --git a/Lib/os.py b/Lib/os.py index 488d3e4a2cf8..128351e290e3 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))