[issue41762] Documentation job fails on CIs: duplicate token description of format_spec

2020-10-05 Thread Łukasz Langa
Łukasz Langa added the comment: New changeset e5cc5fd89cc8855ad644ce4ba5e7de766313e418 by Łukasz Langa (Miss Islington (bot)) in branch '3.9': bpo-41762: Fix usage of productionlist markup in the doc (GH-22281) https://github.com/python/cpython/commit/e5cc5fd89cc8855ad644ce4ba5e7de766313e418

[issue41762] Documentation job fails on CIs: duplicate token description of format_spec

2020-09-18 Thread STINNER Victor
STINNER Victor added the comment: I fixed the issue. See bpo-35293 for deprecation warnings. -- resolution: -> fixed stage: patch review -> resolved status: open -> closed versions: +Python 3.8, Python 3.9 ___ Python tracker

[issue41762] Documentation job fails on CIs: duplicate token description of format_spec

2020-09-18 Thread STINNER Victor
STINNER Victor added the comment: New changeset c5cddc17b5c046bb22072c1cf58b898c7ab92e07 by Miss Islington (bot) in branch '3.8': bpo-41762: Fix usage of productionlist markup in the doc (GH-22281) (GH-22300) https://github.com/python/cpython/commit/c5cddc17b5c046bb22072c1cf58b898c7ab92e07

[issue41762] Documentation job fails on CIs: duplicate token description of format_spec

2020-09-18 Thread miss-islington
miss-islington added the comment: New changeset c053402927d36f9f26160ded24999bf5109ea5eb by Miss Islington (bot) in branch '3.9': bpo-41762: Fix usage of productionlist markup in the doc (GH-22281) https://github.com/python/cpython/commit/c053402927d36f9f26160ded24999bf5109ea5eb --

[issue41762] Documentation job fails on CIs: duplicate token description of format_spec

2020-09-18 Thread miss-islington
Change by miss-islington : -- pull_requests: +21350 pull_request: https://github.com/python/cpython/pull/22301 ___ Python tracker ___

[issue41762] Documentation job fails on CIs: duplicate token description of format_spec

2020-09-18 Thread STINNER Victor
STINNER Victor added the comment: New changeset 8af239eacfcf52e4e0e2b0223e7cea4672309483 by Victor Stinner in branch 'master': bpo-41762: Fix usage of productionlist markup in the doc (GH-22281) https://github.com/python/cpython/commit/8af239eacfcf52e4e0e2b0223e7cea4672309483 --

[issue41762] Documentation job fails on CIs: duplicate token description of format_spec

2020-09-18 Thread miss-islington
Change by miss-islington : -- nosy: +miss-islington nosy_count: 7.0 -> 8.0 pull_requests: +21349 pull_request: https://github.com/python/cpython/pull/22300 ___ Python tracker

[issue41762] Documentation job fails on CIs: duplicate token description of format_spec

2020-09-16 Thread STINNER Victor
Change by STINNER Victor : -- pull_requests: +21333 pull_request: https://github.com/python/cpython/pull/22281 ___ Python tracker ___

[issue41762] Documentation job fails on CIs: duplicate token description of format_spec

2020-09-16 Thread STINNER Victor
STINNER Victor added the comment: ".. productionlist::" markup is related to "Grammar production displays": https://www.sphinx-doc.org/en/master/usage/restructuredtext/directives.html#grammar-production-displays We can try to pass a different unique name to each ".. productionlist::" markup:

[issue41762] Documentation job fails on CIs: duplicate token description of format_spec

2020-09-15 Thread Cameron Simpson
Change by Cameron Simpson : -- nosy: +cameron ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue41762] Documentation job fails on CIs: duplicate token description of format_spec

2020-09-12 Thread STINNER Victor
STINNER Victor added the comment: > I closed bpo-41760 as a duplicate of this issue. The error message was different but similar: Warning, treated as error: /<>/Doc/library/string.rst:311:duplicate token description of sign, other instance in library/functions --

[issue41762] Documentation job fails on CIs: duplicate token description of format_spec

2020-09-12 Thread STINNER Victor
STINNER Victor added the comment: I closed bpo-41760 as a duplicate of this issue. -- ___ Python tracker ___ ___ Python-bugs-list

[issue41762] Documentation job fails on CIs: duplicate token description of format_spec

2020-09-11 Thread Terry J. Reedy
Terry J. Reedy added the comment: Two issues about Sphinx 3.2.1 failing with "duplicate token description" (posted on both) #41760 'sign', multiple people nosy, failed where? #41762 'format_spec', on Travis, PR by Victor Stinner (2.2.0 okay) -- nosy: +terry.reedy

[issue41762] Documentation job fails on CIs: duplicate token description of format_spec

2020-09-11 Thread Dong-hee Na
Dong-hee Na added the comment: >>> sphinx.__version__ '3.2.1 I can reproduce this issue consistantly on my local machine with this environment. -- nosy: +corona10 ___ Python tracker

[issue41762] Documentation job fails on CIs: duplicate token description of format_spec

2020-09-11 Thread STINNER Victor
STINNER Victor added the comment: Oh. It seems like the warning only occurs randomly!? It is gone on one of my PR. -- ___ Python tracker ___

[issue41762] Documentation job fails on CIs: duplicate token description of format_spec

2020-09-11 Thread STINNER Victor
Change by STINNER Victor : -- keywords: +patch pull_requests: +21258 stage: -> patch review pull_request: https://github.com/python/cpython/pull/22199 ___ Python tracker ___

[issue41762] Documentation job fails on CIs: duplicate token description of format_spec

2020-09-11 Thread STINNER Victor
STINNER Victor added the comment: I failed to reproduce the issue locally. I tried: cd Doc make clean make venv PYTHON=../python ./venv/bin/python -m pip install sphinx==2.2.0 blurb python-docs-theme make check suspicious html SPHINXOPTS="-q -W -j4" --

[issue41762] Documentation job fails on CIs: duplicate token description of format_spec

2020-09-11 Thread STINNER Victor
STINNER Victor added the comment: There are two format_spec definitions: "format_spec ::= [[fill]align][sign][#][0][width][grouping_option][.precision][type]" https://docs.python.org/dev/library/string.html#format-specification-mini-language "format_spec ::= (literal_char | NULL

[issue41762] Documentation job fails on CIs: duplicate token description of format_spec

2020-09-11 Thread STINNER Victor
New submission from STINNER Victor : https://travis-ci.com/github/python/cpython/jobs/383579366 Warning, treated as error: /home/travis/build/python/cpython/Doc/library/string.rst:311:duplicate token description of format_spec, other instance in reference/lexical_analysis --