diff options
author | Matthew Newhook <matthew@zeroc.com> | 2007-01-04 21:10:15 +0000 |
---|---|---|
committer | Matthew Newhook <matthew@zeroc.com> | 2007-01-04 21:10:15 +0000 |
commit | 8a387a37676664a7ad3d5072bffe2ceb96521e0e (patch) | |
tree | 6f4e2e8e6ef0957c21d61d92f39b56083b9717ab /py/python/Ice.py | |
parent | Updating filename in install rule (diff) | |
download | ice-8a387a37676664a7ad3d5072bffe2ceb96521e0e.tar.bz2 ice-8a387a37676664a7ad3d5072bffe2ceb96521e0e.tar.xz ice-8a387a37676664a7ad3d5072bffe2ceb96521e0e.zip |
renamed userCallbackOnInterrupt to callbackOnInterrupt.
Diffstat (limited to 'py/python/Ice.py')
-rw-r--r-- | py/python/Ice.py | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/py/python/Ice.py b/py/python/Ice.py index babc154c7e5..54fc00a71bf 100644 --- a/py/python/Ice.py +++ b/py/python/Ice.py @@ -747,14 +747,14 @@ class Application(object): self._condVar.release() ignoreInterrupt = classmethod(ignoreInterrupt) - def userCallbackOnInterrupt(self): + def callbackOnInterrupt(self): self._condVar.acquire() if self._ctrlCHandler.getCallback() == self.holdInterruptCallback: self._released = True self._condVar.notify() - self._ctrlCHandler.setCallback(self.userCallbackOnInterruptCallback) + self._ctrlCHandler.setCallback(self.callbackOnInterruptCallback) self._condVar.release() - userCallbackOnInterrupt = classmethod(userCallbackOnInterrupt) + callbackOnInterrupt = classmethod(callbackOnInterrupt) def holdInterrupt(self): self._condVar.acquire() @@ -856,7 +856,7 @@ class Application(object): self._condVar.release() shutdownOnInterruptCallback = classmethod(shutdownOnInterruptCallback) - def userCallbackOnInterruptCallback(self, sig): + def callbackOnInterruptCallback(self, sig): self._condVar.acquire() if self._destroyed: # @@ -882,7 +882,7 @@ class Application(object): self._condVar.notify() self._condVar.release() - userCallbackOnInterruptCallback = classmethod(userCallbackOnInterruptCallback) + callbackOnInterruptCallback = classmethod(callbackOnInterruptCallback) _appName = None _communicator = None |