summaryrefslogtreecommitdiff
path: root/py/python/Ice.py
diff options
context:
space:
mode:
Diffstat (limited to 'py/python/Ice.py')
-rw-r--r--py/python/Ice.py14
1 files changed, 0 insertions, 14 deletions
diff --git a/py/python/Ice.py b/py/python/Ice.py
index 49a963636c6..864315974f1 100644
--- a/py/python/Ice.py
+++ b/py/python/Ice.py
@@ -13,20 +13,6 @@ Ice module
import sys, exceptions, string, imp, os, threading, warnings, datetime
-try:
- import dl
- #
- # This is necessary for proper operation of Ice plug-ins.
- # Without it, RTTI problems can occur.
- #
- sys.setdlopenflags(dl.RTLD_NOW|dl.RTLD_GLOBAL)
-except ImportError:
- # If the dl module is not available and we're running on a linux
- # platform, use the hard coded value of RTLD_NOW|RTLD_GLOBAL.
- if sys.platform.startswith("linux"):
- sys.setdlopenflags(258)
- pass
-
#
# Import the Python extension.
#