diff options
author | Mark Spruiell <mes@zeroc.com> | 2011-05-04 17:51:35 -0700 |
---|---|---|
committer | Mark Spruiell <mes@zeroc.com> | 2011-05-04 17:51:35 -0700 |
commit | 9afd50c19bceeb2be64bf0c7c6d7a0c2c126dde8 (patch) | |
tree | 44786ffd2f2bf17f6872f97ea109cb09243d9cf9 /py/python/Ice.py | |
parent | minor doc fixes for RHEL (diff) | |
download | ice-9afd50c19bceeb2be64bf0c7c6d7a0c2c126dde8.tar.bz2 ice-9afd50c19bceeb2be64bf0c7c6d7a0c2c126dde8.tar.xz ice-9afd50c19bceeb2be64bf0c7c6d7a0c2c126dde8.zip |
bug 4976 - inconsistent operation mode for pseudo ops
Diffstat (limited to 'py/python/Ice.py')
-rw-r--r-- | py/python/Ice.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/py/python/Ice.py b/py/python/Ice.py index b60dbba31e6..bfe2b58a988 100644 --- a/py/python/Ice.py +++ b/py/python/Ice.py @@ -81,7 +81,7 @@ Arguments: Returns: True if the target object supports the interface, or false otherwise. ''' - return id in self.ice_ids() + return id in self.ice_ids(current) def ice_ping(self, current=None): '''A reachability test for the target object.''' @@ -93,7 +93,7 @@ that are supported by the target object. Returns: A list of type ids. ''' - return [ self.ice_id() ] + return [ self.ice_id(current) ] def ice_id(self, current=None): '''Obtains the type id corresponding to the most-derived Slice |