| 672 | | * The ``token.split_contents()`` method separates the arguments on spaces, |
|---|
| 673 | | whilst keeping quoted strings together. The more straightforward |
|---|
| 674 | | ``token.contents.split()`` would be as robust. |
|---|
| | 672 | * The ``token.split_contents()`` method separates the arguments on spaces |
|---|
| | 673 | while keeping quoted strings together. The more straightforward |
|---|
| | 674 | ``token.contents.split()`` wouldn't be as robust, as it would naively |
|---|
| | 675 | split on *all* spaces, including those within quoted strings. It's a good |
|---|
| | 676 | idea to always use ``token.split_contents()``. |
|---|