View Single Post
  #2  
Old 04-27-2005, 10:35 AM
farshizzo farshizzo is offline
WorldViz Team Member
 
Join Date: Mar 2003
Posts: 2,849
Hi,

Python doesn't have a built-in way of doing this. You pretty much have to use the import syntax. You could try the following:
Code:
execfile('graphModule.py')
However I would recommend just using the import syntax.
Reply With Quote