[Python-checkins] Fix some false positives of documentation syntax problems

pablogsal webhook-mailer at python.org
Wed Dec 8 18:42:12 EST 2021


https://github.com/python/cpython/commit/3ea574f35b69235e17b7eb603bc5f1b026cf7d31
commit: 3ea574f35b69235e17b7eb603bc5f1b026cf7d31
branch: main
author: Pablo Galindo <pablogsal at gmail.com>
committer: pablogsal <Pablogsal at gmail.com>
date: 2021-12-08T22:22:55Z
summary:

Fix some false positives of documentation syntax problems

files:
M Doc/reference/datamodel.rst
M Doc/tools/susp-ignored.csv
M Doc/using/configure.rst

diff --git a/Doc/reference/datamodel.rst b/Doc/reference/datamodel.rst
index 81dad77fab97a..aa0d91ad1c97d 100644
--- a/Doc/reference/datamodel.rst
+++ b/Doc/reference/datamodel.rst
@@ -2331,7 +2331,7 @@ called::
    from inspect import isclass
 
    def subscribe(obj, x):
-       """Return the result of the expression `obj[x]`"""
+       """Return the result of the expression 'obj[x]'"""
 
        class_of_obj = type(obj)
 
diff --git a/Doc/tools/susp-ignored.csv b/Doc/tools/susp-ignored.csv
index 280e9a63cdcc3..cbc3ac0bbab34 100644
--- a/Doc/tools/susp-ignored.csv
+++ b/Doc/tools/susp-ignored.csv
@@ -369,7 +369,6 @@ whatsnew/changelog,,::,default::DeprecationWarning
 library/importlib.metadata,,:main,"EntryPoint(name='wheel', value='wheel.cli:main', group='console_scripts')"
 library/importlib.metadata,,`,loading the metadata for packages for the indicated ``context``.
 library/re,,`,"`"
-using/configure,84,:db2,=db1:db2:...
 library/typing,,`,# Type of ``val`` is narrowed to ``str``
 library/typing,,`,"# Else, type of ``val`` is narrowed to ``float``."
 library/typing,,`,# Type of ``val`` is narrowed to ``list[str]``.
@@ -380,4 +379,5 @@ library/tkinter,,::,"grid [ttk::button .frm.btn -text ""Quit"" -command ""destro
 library/tkinter,,::,ttk::frame
 library/tkinter,,::,ttk::button
 library/tkinter,,::,ttk::widget
-reference/datamodel,2285,`,"""""""Return the result of the expression `obj[x]`"""""""
+whatsnew/changelog,305,::,Lib/email/mime/nonmultipart.py::MIMENonMultipart
+whatsnew/changelog,308,::,Lib/ctypes/test/test_functions.py::test_mro
diff --git a/Doc/using/configure.rst b/Doc/using/configure.rst
index 5720f015eca06..7802a7c810b29 100644
--- a/Doc/using/configure.rst
+++ b/Doc/using/configure.rst
@@ -80,7 +80,7 @@ General Options
 
    .. versionadded:: 3.9
 
-.. cmdoption:: --with-dbmliborder=db1:db2:...
+.. cmdoption:: --with-dbmliborder=<list of backend names>
 
    Override order to check db backends for the :mod:`dbm` module
 



More information about the Python-checkins mailing list