summaryrefslogtreecommitdiffstats
path: root/Lib/os.py
diff options
context:
space:
mode:
authorAndrew MacIntyre <andymac@bullseye.apana.org.au>2003-12-02 12:33:01 (GMT)
committerAndrew MacIntyre <andymac@bullseye.apana.org.au>2003-12-02 12:33:01 (GMT)
commit89f9865b9124134fb8fbb87baed57b59498e469e (patch)
tree40e6bb274d0a2d9794678640590dd8c13c737d12 /Lib/os.py
parenteb477f05cffebba58299f0d2b32400c35f94d645 (diff)
downloadcpython-89f9865b9124134fb8fbb87baed57b59498e469e.zip
cpython-89f9865b9124134fb8fbb87baed57b59498e469e.tar.gz
cpython-89f9865b9124134fb8fbb87baed57b59498e469e.tar.bz2
OS/2+EMX: make the link() emulation available as os.link()
Diffstat (limited to 'Lib/os.py')
-rw-r--r--Lib/os.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/Lib/os.py b/Lib/os.py
index 488d3e4..128351e 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))