https://github.com/python/cpython
Revision c4de6b1d52304a0a9cdfafc1dad5098993710404 authored by Brian Skinn on 07 February 2023, 05:25:42 UTC, committed by GitHub on 07 February 2023, 05:25:42 UTC
Co-authored-by: C.A.M. Gerlach <CAM.Gerlach@Gerlach.CAM>
Co-authored-by: Terry Jan Reedy <tjreedy@udel.edu>
1 parent 694e346
Raw File
Tip revision: c4de6b1d52304a0a9cdfafc1dad5098993710404 authored by Brian Skinn on 07 February 2023, 05:25:42 UTC
gh-85747: Active voice & suggested edits, 'running/stopping loop' & 'callbacks' subsections of asyncio-eventloop.rst (#100270)
Tip revision: c4de6b1
netlify.toml
[build]
    base = "Doc/"
    command = "make html"
    publish = "build/html"
    # Do not trigger netlify builds if docs were not changed.
    # Changed files should be in sync with `.github/workflows/doc.yml`
    ignore = "git diff --quiet $CACHED_COMMIT_REF $COMMIT_REF . ../netlify.toml"

[build.environment]
  PYTHON_VERSION = "3.8"
  IS_DEPLOYMENT_PREVIEW = "true"
back to top