]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Added example DL for SGI IRIX.
authorGuido van Rossum <guido@python.org>
Fri, 20 Dec 1996 03:13:36 +0000 (03:13 +0000)
committerGuido van Rossum <guido@python.org>
Fri, 20 Dec 1996 03:13:36 +0000 (03:13 +0000)
Lib/test/test_dl.py

index dcc3ec289f93f382d33e547e41e2a76eb7b65241..37ff9c64023d16e1a03f2cc4a30702043bb71a00 100755 (executable)
@@ -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: