Staging
v0.5.1
https://github.com/python/cpython
Revision 3f7d0b69f2175ff74157673148b2e45b7a2498b6 authored by Miss Islington (bot) on 09 March 2018, 20:11:30 UTC, committed by GitHub on 09 March 2018, 20:11:30 UTC

Replace example result of "5 through 9" with complete list: "5, 6, 7, 8, 9".
This format is more consistent with the surrounding examples.
(cherry picked from commit 83d7062d2dc5eacfef578e072bca4747c346fdae)

Co-authored-by: Steven M. Vascellaro <S.Vascellaro@gmail.com>
1 parent 12f74d8
Raw File
Tip revision: 3f7d0b69f2175ff74157673148b2e45b7a2498b6 authored by Miss Islington (bot) on 09 March 2018, 20:11:30 UTC
controlflow: Use full example for "5 through 9" (GH-5907)
Tip revision: 3f7d0b6
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