Searched refs:lastdot (Results 1 – 3 of 3) sorted by relevance
25 char *lastdot, *shortname, *packagecontext, *oldcontext; in _PyImport_LoadDynamicModule() local32 lastdot = strrchr(name, '.'); in _PyImport_LoadDynamicModule()33 if (lastdot == NULL) { in _PyImport_LoadDynamicModule()39 shortname = lastdot+1; in _PyImport_LoadDynamicModule()
2414 char *lastdot = strrchr(start, '.'); in get_parent() local2417 if (lastdot == NULL && level > 0) { in get_parent()2422 if (lastdot == NULL) { in get_parent()2431 len = lastdot - start; in get_parent()
529 lastdot = classname.rfind(".") variable530 mod = __import__(classname[:lastdot], globals(), locals(), [""])531 classname = classname[lastdot+1:]