(s)
| 31 | |
| 32 | # Case insensitive sort by name |
| 33 | def sortkey(s): return s[0].lower() |
| 34 | |
| 35 | for name, func in sorted(magics['line'].items(), key=sortkey): |
| 36 | if isinstance(func, Alias) or isinstance(func, MagicAlias): |
nothing calls this directly
no outgoing calls
no test coverage detected