update_path->load_manifest

This commit is contained in:
Ken Conley 2009-10-21 20:53:37 +00:00
parent 69e64aeb77
commit 5c06fd4488
5 changed files with 6 additions and 6 deletions
core/roslib/src/roslib
test
rostest/nodes
test_rospy/test
tools
rosdoc
rostopic/bin

View File

@ -58,8 +58,8 @@ _bootstrapped = []
def load_manifest(package_name, bootstrap_version="0.7"): def load_manifest(package_name, bootstrap_version="0.7"):
""" """
Update the Python sys.path with package dependencies Update the Python sys.path with package's dependencies
@param package_name: name of the package that update_path is being called from. @param package_name: name of the package that load_manifest() is being called from.
@type package_name: str @type package_name: str
@param bootstrap_version: (keyword argument) do not use. Soon to be deprecated @param bootstrap_version: (keyword argument) do not use. Soon to be deprecated
@type bootstrap_version: str @type bootstrap_version: str

View File

@ -42,7 +42,7 @@
## * ~/test_duration: time (in secs) to run test ## * ~/test_duration: time (in secs) to run test
## ##
import roslib; roslib.update_path('rostest') import roslib; roslib.load_manifest('rostest')
import sys import sys
import threading import threading

View File

@ -37,7 +37,7 @@
PKG = 'test_rospy' PKG = 'test_rospy'
NAME = 'talker' NAME = 'talker'
import roslib; roslib.update_path(PKG) import roslib; roslib.load_manifest(PKG)
import sys import sys
import rospy import rospy

View File

@ -33,6 +33,6 @@
# #
# Revision $Id$ # Revision $Id$
import roslib; roslib.update_path('rosdoc') import roslib; roslib.load_manifest('rosdoc')
import rosdoc import rosdoc
rosdoc.main() rosdoc.main()

View File

@ -1,4 +1,4 @@
#!/usr/bin/env python #!/usr/bin/env python
import roslib; roslib.update_path('rostopic') import roslib; roslib.load_manifest('rostopic')
import rostopic import rostopic
rostopic.rostopicmain() rostopic.rostopicmain()