This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

classification
Title: Duplicate C object description of vectorcallfunc
Type: compile error Stage: resolved
Components: Documentation Versions: Python 3.9, Python 3.8
process
Status: closed Resolution: works for me
Dependencies: Superseder:
Assigned To: docs@python Nosy List: docs@python, epicfaace, jdemeyer, petr.viktorin, serhiy.storchaka
Priority: high Keywords:

Created on 2020-03-07 08:48 by serhiy.storchaka, last changed 2022-04-11 14:59 by admin. This issue is now closed.

Messages (3)
msg363584 - (view) Author: Serhiy Storchaka (serhiy.storchaka) * (Python committer) Date: 2020-03-07 08:48
$ make html
...
Warning, treated as error:
/home/serhiy/py/cpython/Doc/c-api/call.rst:71:duplicate C object description of vectorcallfunc, other instance in /home/serhiy/py/cpython/Doc/c-api/typeobj.rst
msg364197 - (view) Author: Ashwin Ramaswami (epicfaace) * Date: 2020-03-14 21:13
I can no longer reproduce this issue. Has it been fixed?

$ make html
mkdir -p build
Building NEWS from Misc/NEWS.d with blurb
PATH=./venv/bin:$PATH sphinx-build -b html -d build/doctrees   -W . build/html 
Running Sphinx v2.2.0
making output directory... done
building [mo]: targets for 0 po files that are out of date
building [html]: targets for 486 source files that are out of date
updating environment: [new config] 486 added, 0 changed, 0 removed
/home/epicfaace/cpython/Doc/venv/lib/python3.6/site-packages/sphinx/util/nodes.py:151: FutureWarning:              
   The iterable returned by Node.traverse()
   will become an iterator instead of a list in Docutils > 0.16.
  for classifier in reversed(node.parent.traverse(nodes.classifier)):
reading sources... [100%] whatsnew/index                                                                           
looking for now-outdated files... none found
pickling environment... done
checking consistency... done
preparing documents... done
writing output... [100%] whatsnew/index                                                                            
generating indices...  genindex py-modindexdone
writing additional pages...  download index search opensearchdone
copying images... [100%] using/win_installer.png                                                                   
copying downloadable files... [100%] includes/tzinfo_examples.py                                                   
copying static files... ... done
copying extra files... done
dumping search index in English (code: en)... done
dumping object inventory... done
build succeeded.

The HTML pages are in build/html.

Build finished. The HTML pages are in build/html.
msg364199 - (view) Author: Serhiy Storchaka (serhiy.storchaka) * (Python committer) Date: 2020-03-14 21:51
I cannot reproduce it anymore after cleaning and building from zero. Perhaps it was a build artefact, vectorcallfunc was defined in Doc/c-api/typeobj.rst before 9a13a388f202268dd7b771638adbec132449b98b.

Thank you for checking it Ashwin.
History
Date User Action Args
2022-04-11 14:59:27adminsetgithub: 84068
2020-03-14 21:51:18serhiy.storchakasetstatus: open -> closed
resolution: works for me
messages: + msg364199

stage: resolved
2020-03-14 21:13:01epicfaacesetnosy: + epicfaace
messages: + msg364197
2020-03-07 08:49:00serhiy.storchakacreate