(x)
| 2918 | |
| 2919 | def unmangle_symbols_from_cmdline(symbols): |
| 2920 | def unmangle(x): |
| 2921 | return x.replace('.', ' ').replace('#', '&').replace('?', ',') |
| 2922 | |
| 2923 | if type(symbols) is list: |
| 2924 | return [unmangle(x) for x in symbols] |
no outgoing calls
no test coverage detected