Hello.
When I import Glacier2 module under python, all its objects can be accessed:
But when I import IceGrid module before Glacier2, I can not access some objects any more:Code:$ python >>> import Glacier2 >>> Glacier2.RouterPrx <class 'Glacier2.RouterPrx'>
Tested on Ice 3.3.1 under linuxCode:$ python >>> import IceGrid, Glacier2 >>> Glacier2.RouterPrx Traceback (most recent call last): File "<stdin>", line 1, in <module> AttributeError: 'module' object has no attribute 'RouterPrx'

Reply With Quote