https://github.com/python/cpython
Revision b07661d88984c9d5f682de351b58f9e4a4fc0a8e authored by Miss Islington (bot) on 29 September 2023, 13:47:24 UTC, committed by GitHub on 29 September 2023, 13:47:24 UTC
gh-109592: test_eintr tolerates 20 ms when comparing timings (GH-110102)
(cherry picked from commit 9c73a9acec095c05a178e7dff638f7d9769318f3)

Co-authored-by: Victor Stinner <vstinner@python.org>
1 parent 4b97c72
Raw File
Tip revision: b07661d88984c9d5f682de351b58f9e4a4fc0a8e authored by Miss Islington (bot) on 29 September 2023, 13:47:24 UTC
[3.11] gh-109592: test_eintr tolerates 20 ms when comparing timings (GH-110102) (#110107)
Tip revision: b07661d
.readthedocs.yml
# Read the Docs configuration file
# See https://docs.readthedocs.io/en/stable/config-file/v2.html for details
# Project page: https://readthedocs.org/projects/cpython-previews/

version: 2

sphinx:
   configuration: Doc/conf.py

build:
  os: ubuntu-22.04
  tools:
    python: "3"

  commands:
    - make -C Doc venv html
    - mkdir _readthedocs
    - mv Doc/build/html _readthedocs/html
back to top