def bus_factory(): if address: return DBusAddress(x2char_star(address)) elif machine: return DBusMachine(x2char_star(machine)) else: return DBus(user_mode=user_mode)
def bus_factory(): if machine: return DBusMachine(x2char_star(machine)) else: return DBus(user_mode=user_mode)
def bus_factory(): if machine: return DBusMachine(machine) else: return DBus(user_mode=user_mode)