# File lib/cucumber/py_support/py_language.rb, line 35 def begin_scenario @python_path = [] add_to_python_path(File.dirname(__FILE__)) @step_def_files.each{|f| add_to_python_path(File.dirname(f))} RubyPython.start @delegate = import(File.dirname(__FILE__) + '/py_language.py') @step_def_files.each{|f| import(f)} end