Staging
v0.5.1
https://github.com/python/cpython
Revision f5c108959532898f855ed8f0d4f21ade3aa46393 authored by Miss Islington (bot) on 19 May 2020, 12:34:55 UTC, committed by GitHub on 19 May 2020, 12:34:55 UTC
(cherry picked from commit 19e3e0026417caa92ffe21a67157363b45da9aa2)

Co-authored-by: Julien Palard <julien@palard.fr>

Co-authored-by: Julien Palard <julien@palard.fr>
1 parent 69cdeeb
Raw File
Tip revision: f5c108959532898f855ed8f0d4f21ade3aa46393 authored by Miss Islington (bot) on 19 May 2020, 12:34:55 UTC
Doc: Python 3.10 in sidebar and version switcher. (GH-20209) (GH-20224)
Tip revision: f5c1089
prepare_ssl.bat
@echo off
if not defined HOST_PYTHON (
  if "%1" EQU "Debug" (
    shift
    set HOST_PYTHON=python_d.exe
    if not exist python36_d.dll exit 1
  ) ELSE (
    set HOST_PYTHON=python.exe
    if not exist python36.dll exit 1
  )
)
%HOST_PYTHON% "%~dp0prepare_ssl.py" %1
back to top