[openrtm-commit:02399] r793 - trunk/OpenRTM-aist-Python/OpenRTM_aist

openrtm @ openrtm.org openrtm @ openrtm.org
2017年 2月 7日 (火) 15:31:30 JST


Author: miyamoto
Date: 2017-02-07 15:31:30 +0900 (Tue, 07 Feb 2017)
New Revision: 793

Modified:
   trunk/OpenRTM-aist-Python/OpenRTM_aist/ExecutionContextProfile.py
   trunk/OpenRTM-aist-Python/OpenRTM_aist/Manager.py
   trunk/OpenRTM-aist-Python/OpenRTM_aist/NumberingPolicyBase.py
   trunk/OpenRTM-aist-Python/OpenRTM_aist/SharedMemory.py
Log:
[compat,bugfix,->RELENG_1_2] fixed bug.

Modified: trunk/OpenRTM-aist-Python/OpenRTM_aist/ExecutionContextProfile.py
===================================================================
--- trunk/OpenRTM-aist-Python/OpenRTM_aist/ExecutionContextProfile.py	2017-02-07 06:19:13 UTC (rev 792)
+++ trunk/OpenRTM-aist-Python/OpenRTM_aist/ExecutionContextProfile.py	2017-02-07 06:31:30 UTC (rev 793)
@@ -18,7 +18,7 @@
 #
 
 import threading
-from omniORB import CORBA, PortableServer
+from omniORB import CORBA
 
 import OpenRTM_aist
 import RTC

Modified: trunk/OpenRTM-aist-Python/OpenRTM_aist/Manager.py
===================================================================
--- trunk/OpenRTM-aist-Python/OpenRTM_aist/Manager.py	2017-02-07 06:19:13 UTC (rev 792)
+++ trunk/OpenRTM-aist-Python/OpenRTM_aist/Manager.py	2017-02-07 06:31:30 UTC (rev 793)
@@ -1729,7 +1729,7 @@
         self._poa.destroy(False, True)
         self._poa = PortableServer.POA._nil
         self._rtcout.RTC_DEBUG("POA was destroyed.")
-      except CORBA.SystemException, ex:
+      except CORBA.SystemException:
         self._rtcout.RTC_ERROR("Caught SystemException during root POA destruction")
         self._rtcout.RTC_ERROR(OpenRTM_aist.Logger.print_exception())
       except:

Modified: trunk/OpenRTM-aist-Python/OpenRTM_aist/NumberingPolicyBase.py
===================================================================
--- trunk/OpenRTM-aist-Python/OpenRTM_aist/NumberingPolicyBase.py	2017-02-07 06:19:13 UTC (rev 792)
+++ trunk/OpenRTM-aist-Python/OpenRTM_aist/NumberingPolicyBase.py	2017-02-07 06:31:30 UTC (rev 793)
@@ -9,7 +9,7 @@
 #
 
 
-import string
+
 import OpenRTM_aist
 
 

Modified: trunk/OpenRTM-aist-Python/OpenRTM_aist/SharedMemory.py
===================================================================
--- trunk/OpenRTM-aist-Python/OpenRTM_aist/SharedMemory.py	2017-02-07 06:19:13 UTC (rev 792)
+++ trunk/OpenRTM-aist-Python/OpenRTM_aist/SharedMemory.py	2017-02-07 06:31:30 UTC (rev 793)
@@ -73,7 +73,7 @@
     if platform.system() == "Windows":
       pass
     else:
-      from ctypes.util import find_library
+      #from ctypes.util import find_library
       #librt = find_library("librt")
       #if librt is None:
       #  raise



More information about the openrtm-commit mailing list