mercurial/commands.py
changeset 30611 cbc61b1b52ea
parent 30529 bd5c4320b5a8
child 30613 1112ff99d965
equal deleted inserted replaced
30610:66cffa87d2f2 30611:cbc61b1b52ea
  1890 
  1890 
  1891     # Python
  1891     # Python
  1892     fm.write('pythonexe', _("checking Python executable (%s)\n"),
  1892     fm.write('pythonexe', _("checking Python executable (%s)\n"),
  1893              sys.executable)
  1893              sys.executable)
  1894     fm.write('pythonver', _("checking Python version (%s)\n"),
  1894     fm.write('pythonver', _("checking Python version (%s)\n"),
  1895              ("%s.%s.%s" % sys.version_info[:3]))
  1895              ("%d.%d.%d" % sys.version_info[:3]))
  1896     fm.write('pythonlib', _("checking Python lib (%s)...\n"),
  1896     fm.write('pythonlib', _("checking Python lib (%s)...\n"),
  1897              os.path.dirname(os.__file__))
  1897              os.path.dirname(os.__file__))
  1898 
  1898 
  1899     security = set(sslutil.supportedprotocols)
  1899     security = set(sslutil.supportedprotocols)
  1900     if sslutil.hassni:
  1900     if sslutil.hassni: