Staging
v0.8.1
Revision ccac023d654f8a84c5657a891067dd38b3cabc33 authored by Berker Peksag on 02 March 2015, 04:54:27 UTC, committed by Berker Peksag on 02 March 2015, 04:54:27 UTC
The test checks that the environ argument contains correct headers,
querystring and path information.

Patch by Alex Shkop.
2 parent s 6897e56 + 659f631
Raw File
prepare_ssl.bat
@echo off
if not defined HOST_PYTHON (
  if %1 EQU Debug (
    shift
    set HOST_PYTHON=python_d.exe
    if not exist python35_d.dll exit 1
  ) ELSE (
    set HOST_PYTHON=python.exe
    if not exist python35.dll exit 1
  )
)
%HOST_PYTHON% prepare_ssl.py %1
back to top