docs: python bindings howto
* Fixed the groups.py script so it really does what is described (the old code had the same result for groups, group_lines and group_lists). * Updated the corresponding example in the doc to match.
This commit is contained in:
parent
9038d30017
commit
48e946a96d
@ -1348,15 +1348,17 @@
|
||||
if lines[i].startswith("group") is True:
|
||||
line = lines[i]
|
||||
else:
|
||||
pass
|
||||
pass
|
||||
|
||||
groups = line.split(":")[-1].replace('"', '').split(',')
|
||||
|
||||
group_lines = groups
|
||||
for i in range(len(group_lines)):
|
||||
group_lines[i] = group_lines[i].split("=")
|
||||
group_lines = []
|
||||
group_lists = []
|
||||
|
||||
for i in range(len(groups)):
|
||||
group_lines.append(groups[i].split("="))
|
||||
group_lists.append(groups[i].split("="))
|
||||
|
||||
group_lists = group_lines
|
||||
for i in range(len(group_lists)):
|
||||
group_lists[i][1] = group_lists[i][1].split()
|
||||
#+end_src
|
||||
|
@ -41,10 +41,12 @@ for i in range(len(lines)):
|
||||
|
||||
groups = line.split(":")[-1].replace('"', '').split(',')
|
||||
|
||||
group_lines = groups
|
||||
for i in range(len(group_lines)):
|
||||
group_lines[i] = group_lines[i].split("=")
|
||||
group_lines = []
|
||||
group_lists = []
|
||||
|
||||
for i in range(len(groups)):
|
||||
group_lines.append(groups[i].split("="))
|
||||
group_lists.append(groups[i].split("="))
|
||||
|
||||
group_lists = group_lines
|
||||
for i in range(len(group_lists)):
|
||||
group_lists[i][1] = group_lists[i][1].split()
|
||||
|
Loading…
Reference in New Issue
Block a user