(switch, separator)
| 218 | |
| 219 | |
| 220 | def __normalize_switch(switch, separator): |
| 221 | new = switch |
| 222 | if switch.startswith("/") or switch.startswith("-"): |
| 223 | new = switch[1:] |
| 224 | if new and separator: |
| 225 | new = new + separator |
| 226 | return new |
| 227 | |
| 228 | ########################################################################################### |
| 229 | # private xml functions |
no outgoing calls
no test coverage detected
searching dependent graphs…