Staging
v0.5.1
https://github.com/python/cpython
Revision 92e7c7f99c51419e1b4aa5eaaa22b7aeb6154ffd authored by Yury Selivanov on 05 October 2016, 23:39:54 UTC, committed by Yury Selivanov on 05 October 2016, 23:39:54 UTC
Issue #23749: With this change it's possible to implement starttls
as a separate package on PyPI, or even by copying/pasting a small
snipped of code in your project.

It's expected that we'll figure out the API design for starttls
during 3.6, so that we can add it in 3.7.
1 parent 8dc3e43
Raw File
Tip revision: 92e7c7f99c51419e1b4aa5eaaa22b7aeb6154ffd authored by Yury Selivanov on 05 October 2016, 23:39:54 UTC
asyncio: Add "call_connection_made" arg to SSLProtocol.__init__
Tip revision: 92e7c7f
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% "%~dp0prepare_ssl.py" %1
back to top