Sun, 13 May 2018 12:57:00 +0200
URL handling: redirected the URL handling for 'http' and 'https' URLs to the main user interface and the man web browser interface (for standalone web browsers).
# -*- coding: utf-8 -*- # Copyright (c) 2015 - 2018 Detlev Offenbach <detlev@die-offenbachs.de> # """ Package implementing the various pip dialogs and data. """ from __future__ import unicode_literals DefaultPyPiUrl = "https://pypi.org" DefaultIndexUrlXml = DefaultPyPiUrl + "/pypi" DefaultIndexUrlPip = DefaultPyPiUrl + "/simple"