Primo commit Completo
This commit is contained in:
38
devel/lib/python2.7/dist-packages/ur_kinematics/__init__.py
Normal file
38
devel/lib/python2.7/dist-packages/ur_kinematics/__init__.py
Normal file
@@ -0,0 +1,38 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
# generated from catkin/cmake/template/__init__.py.in
|
||||
# keep symbol table as clean as possible by deleting all unnecessary symbols
|
||||
|
||||
from os import path as os_path
|
||||
from sys import path as sys_path
|
||||
|
||||
from pkgutil import extend_path
|
||||
|
||||
__extended_path = "/home/emanuele/Documents/GestioneMacchine/Robot_Incollaggio/Software/roboglue_ros_ws/src/universal_robot/ur_kinematics/src".split(";")
|
||||
for p in reversed(__extended_path):
|
||||
sys_path.insert(0, p)
|
||||
del p
|
||||
del sys_path
|
||||
|
||||
__path__ = extend_path(__path__, __name__)
|
||||
del extend_path
|
||||
|
||||
__execfiles = []
|
||||
for p in __extended_path:
|
||||
src_init_file = os_path.join(p, __name__ + '.py')
|
||||
if os_path.isfile(src_init_file):
|
||||
__execfiles.append(src_init_file)
|
||||
else:
|
||||
src_init_file = os_path.join(p, __name__, '__init__.py')
|
||||
if os_path.isfile(src_init_file):
|
||||
__execfiles.append(src_init_file)
|
||||
del src_init_file
|
||||
del p
|
||||
del os_path
|
||||
del __extended_path
|
||||
|
||||
for __execfile in __execfiles:
|
||||
with open(__execfile, 'r') as __fh:
|
||||
exec(__fh.read())
|
||||
del __fh
|
||||
del __execfile
|
||||
del __execfiles
|
||||
Reference in New Issue
Block a user