Staging
v0.5.1
https://github.com/python/cpython
Revision 79c7e57c46a9e5ae2b99a821e152f334b775df2d authored by Miss Islington (bot) on 05 June 2018, 14:18:20 UTC, committed by Yury Selivanov on 05 June 2018, 14:18:20 UTC
In addition to that, mark SSLTransport as "closed" in its "abort()" method to prevent bogus warnings.
(cherry picked from commit 415bc46a78e785f357c8960ae70f18a6b6cccbb6)

Co-authored-by: Yury Selivanov <yury@magic.io>
1 parent ffd72ac
Raw File
Tip revision: 79c7e57c46a9e5ae2b99a821e152f334b775df2d authored by Miss Islington (bot) on 05 June 2018, 14:18:20 UTC
bpo-33769: start_tls: Fix error message; cancel callbacks on error (GH-7403) (GH-7428)
Tip revision: 79c7e57
docs-release.yml
# Current docs for the syntax of this file are at:
#  https://github.com/Microsoft/vsts-agent/blob/master/docs/preview/yamlgettingstarted.md

name: $(BuildDefinitionName)_$(Date:yyyyMMdd)$(Rev:.rr)

queue:
  name: Hosted Linux Preview

#variables:

steps:
- checkout: self
  clean: true
  fetchDepth: 5

- script: sudo apt-get update && sudo apt-get install -qy --force-yes texlive-full 
  displayName: 'Install LaTeX'

- task: UsePythonVersion@0
  displayName: 'Use Python 3.6 or later'
  inputs:
    versionSpec: '>=3.6'

- script: python -m pip install sphinx blurb python-docs-theme
  displayName: 'Install build dependencies'

- script: make dist PYTHON=python SPHINXBUILD='python -m sphinx' BLURB='python -m blurb'
  workingDirectory: '$(build.sourcesDirectory)/Doc'
  displayName: 'Build documentation'

- task: PublishBuildArtifacts@1
  displayName: 'Publish build'
  inputs:
    PathToPublish: '$(build.sourcesDirectory)/Doc/build'
    ArtifactName: build
    publishLocation: Container

- task: PublishBuildArtifacts@1
  displayName: 'Publish dist'
  inputs:
    PathToPublish: '$(build.sourcesDirectory)/Doc/dist'
    ArtifactName: dist
    publishLocation: Container
back to top