Appends the value to the list.
(append_to, value)
| 458 | ########################################################################################### |
| 459 | # private list helpers |
| 460 | def __append_list(append_to, value): |
| 461 | """Appends the value to the list.""" |
| 462 | if value is not None: |
| 463 | if isinstance(value, list): |
| 464 | append_to.extend(value) |
| 465 | else: |
| 466 | append_to.append(value) |
| 467 | |
| 468 | ########################################################################################### |
| 469 | # main entry point |