diff options
Diffstat (limited to 'py/python/Ice.py')
-rw-r--r-- | py/python/Ice.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/py/python/Ice.py b/py/python/Ice.py index 887c222d3df..fb24d729a08 100644 --- a/py/python/Ice.py +++ b/py/python/Ice.py @@ -57,6 +57,10 @@ class Object(object): def ice_id(self, current=None): return '::Ice::Object' + def ice_staticId(): + return '::Ice::Object' + ice_staticId = staticmethod(ice_staticId) + # # Do not define these here. They will be invoked if defined by a subclass. # |