summaryrefslogtreecommitdiff
path: root/doc/python/helpers.txt
blob: 6a11e405ec4ba49f7a52b86c297a172829f64060 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
helpers

----

This document describes the 'helpers' module. The 'helpers' module provides
methods to make writing python scripts easier.

----

Methods

----

execute(path)

Forks and executes a process.

	path: The executable to execute. The $PATH is searched so the full
	      path to the executable is not generally needed.

Example:
	execute("xterm")

----