(text)
| 409 | |
| 410 | |
| 411 | def FilesystemPathSpec(text): |
| 412 | if not text: |
| 413 | raise ArgumentTypeError("Empty strings are not accepted as paths.") |
| 414 | return slashify(text) |
| 415 | |
| 416 | |
| 417 | def SortBySpec(text): |
nothing calls this directly
no test coverage detected