[issue42042] docs.python.org for 3.10 missing the new refererence record.

2020-10-17 Thread Dong-hee Na
Dong-hee Na added the comment: One more regression is that code background highlight is not applied after sphinx version3 See https://docs.python.org/3.10/c-api/dict.html#c.PyDict_Next https://docs.python.org/3.9/c-api/dict.html#c.PyDict_Next -- stage: patch review -> __

[issue42042] docs.python.org for 3.10 missing the new refererence record.

2020-10-17 Thread Dong-hee Na
Change by Dong-hee Na : -- nosy: +Mariatta ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.pytho

[issue42042] docs.python.org for 3.10 missing the new refererence record.

2020-10-17 Thread Dong-hee Na
Change by Dong-hee Na : -- keywords: +patch pull_requests: +21702 stage: -> patch review pull_request: https://github.com/python/cpython/pull/22739 ___ Python tracker ___

[issue42042] docs.python.org for 3.10 missing the new refererence record.

2020-10-17 Thread Dong-hee Na
Dong-hee Na added the comment: sphinx2 (Pdb) par[0].attributes {'ids': ['c._PyObject_New'], 'classes': [], 'names': ['c._PyObject_New'], 'dupnames': [], 'backrefs': [], 'first': False} sphinx3 (Pdb) par[0].attributes {'ids': ['c._PyObject_New'], 'classes': [], 'names': [], 'dupnames': [], 'b

[issue42042] docs.python.org for 3.10 missing the new refererence record.

2020-10-17 Thread Dong-hee Na
Dong-hee Na added the comment: This is the regression bug caused by sphinx==3.2.1 If we roll back the sphinx version(2.4.4), it is okay. I am investigating what causes this issue. -- ___ Python tracker _

[issue42042] docs.python.org for 3.10 missing the new refererence record.

2020-10-15 Thread Dong-hee Na
New submission from Dong-hee Na : For example https://docs.python.org/3.10/c-api/bool.html?highlight=pydict_new#c.PyDict_New should display `Return value: New reference.` but not, this looks like a regression bug. other version display `Return value: New reference.` very well. -- a