diff options
author | Andrew MacIntyre <andymac@bullseye.apana.org.au> | 2003-12-02 12:33:01 (GMT) |
---|---|---|
committer | Andrew MacIntyre <andymac@bullseye.apana.org.au> | 2003-12-02 12:33:01 (GMT) |
commit | 89f9865b9124134fb8fbb87baed57b59498e469e (patch) | |
tree | 40e6bb274d0a2d9794678640590dd8c13c737d12 /Lib/os.py | |
parent | eb477f05cffebba58299f0d2b32400c35f94d645 (diff) | |
download | cpython-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.py | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -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)) |