Flutter Engine
The Flutter Engine
Functions | Variables
tools.fix_pythonpath Namespace Reference

Functions

def add_to_pythonpath (path)
 

Variables

 CHECKOUT_ROOT
 

Function Documentation

◆ add_to_pythonpath()

def tools.fix_pythonpath.add_to_pythonpath (   path)
Add the given directory to PYTHONPATH.

Definition at line 18 of file fix_pythonpath.py.

18def add_to_pythonpath(path):
19 """Add the given directory to PYTHONPATH."""
20 sys.path.append(path)
21
22
def add_to_pythonpath(path)

Variable Documentation

◆ CHECKOUT_ROOT

tools.fix_pythonpath.CHECKOUT_ROOT
Initial value:
1= os.path.realpath(os.path.join(
2 os.path.dirname(os.path.abspath(__file__)), os.pardir))

Definition at line 14 of file fix_pythonpath.py.