(name)
| 1467 | |
| 1468 | |
| 1469 | def isimportable(name): |
| 1470 | if name and (name[0].isalpha() or name[0] == "_"): |
| 1471 | name = name.replace("_", "") |
| 1472 | return not name or name.isalnum() |
| 1473 | |
| 1474 | |
| 1475 | local = LocalPath |
no outgoing calls
searching dependent graphs…