diff options
author | Guido van Rossum <guido@python.org> | 1996-12-20 03:13:36 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1996-12-20 03:13:36 (GMT) |
commit | 4f30aff58526771945d4b02722a65ff3acdcdf46 (patch) | |
tree | 61e9732981294793af3efafaa09b99164a5e6362 /Lib/test/test_dl.py | |
parent | 4fdb744f53c88d8a147d10b5852b5ab360aba0f8 (diff) | |
download | cpython-4f30aff58526771945d4b02722a65ff3acdcdf46.zip cpython-4f30aff58526771945d4b02722a65ff3acdcdf46.tar.gz cpython-4f30aff58526771945d4b02722a65ff3acdcdf46.tar.bz2 |
Added example DL for SGI IRIX.
Diffstat (limited to 'Lib/test/test_dl.py')
-rwxr-xr-x | Lib/test/test_dl.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Lib/test/test_dl.py b/Lib/test/test_dl.py index dcc3ec2..37ff9c6 100755 --- a/Lib/test/test_dl.py +++ b/Lib/test/test_dl.py @@ -11,6 +11,8 @@ import dl sharedlibs = [ # SunOS/Solaris ('/usr/lib/libresolv.so', 'gethostent'), + # SGI IRIX + ('/usr/lib/libm.so', 'sin'), ] for s, func in sharedlibs: |