Короче, посмотрел сорцы. Реально тупо вызывают командлайн соответствующих браузеров
Tishka17
И если что, юзает xdg-open
Tishka17
if sys.platform[:3] == "win":
class WindowsDefault(BaseBrowser):
def open(self, url, new=0, autoraise=True):
try:
os.startfile(url)
except OSError:
# [Error 22] No application is associated with the specified
# file for this operation: '<URL>'
return False
else:
return True