Issue #21572: Change license command to fallback to generic license URL.

This commit is contained in:
Ned Deily 2014-05-30 23:46:19 -07:00
parent 0edb5c1668
commit 5f8784b7cc

View file

@ -373,7 +373,7 @@ def setcopyright():
dirs.extend([os.path.join(here, os.pardir), here, os.curdir]) dirs.extend([os.path.join(here, os.pardir), here, os.curdir])
builtins.license = _sitebuiltins._Printer( builtins.license = _sitebuiltins._Printer(
"license", "license",
"See http://www.python.org/download/releases/%.5s/license" % sys.version, "See http://www.python.org/psf/license/",
files, dirs) files, dirs)