diff options
author | Julien Palard <julien@palard.fr> | 2022-01-27 07:57:43 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-01-27 07:57:43 (GMT) |
commit | bcafab849e9063dd36a7fefb0162e0cf46b3c9b2 (patch) | |
tree | b7cc5385dbc1cba9808cc6b53420902f6b117697 /Doc/tools/susp-ignored.csv | |
parent | b50322d20337ca468f2070eedb051a16ee1eba94 (diff) | |
download | cpython-bcafab849e9063dd36a7fefb0162e0cf46b3c9b2.zip cpython-bcafab849e9063dd36a7fefb0162e0cf46b3c9b2.tar.gz cpython-bcafab849e9063dd36a7fefb0162e0cf46b3c9b2.tar.bz2 |
[doc]: Spotted errors while working on rstlint. (GH-30879)
Also ignored some `make suspicious` false positives while assuring
true positives were properly seen by rstlint.
Diffstat (limited to 'Doc/tools/susp-ignored.csv')
-rw-r--r-- | Doc/tools/susp-ignored.csv | 15 |
1 files changed, 12 insertions, 3 deletions
diff --git a/Doc/tools/susp-ignored.csv b/Doc/tools/susp-ignored.csv index cbc3ac0..43849a4 100644 --- a/Doc/tools/susp-ignored.csv +++ b/Doc/tools/susp-ignored.csv @@ -212,7 +212,10 @@ library/socket,,:can,"return (can_id, can_dlc, data[:can_dlc])" library/socket,,:len,fds.frombytes(cmsg_data[:len(cmsg_data) - (len(cmsg_data) % fds.itemsize)]) library/sqlite3,,:year,"cur.execute(""select * from lang where first_appeared=:year"", {""year"": 1972})" library/sqlite3,,:memory, -library/sqlite3,,:path,"db = sqlite3.connect('file:path/to/database?mode=ro', uri=True)" +library/sqlite3,,:template,"con = sqlite3.connect(""file:template.db?mode=ro"", uri=True)" +library/sqlite3,,:nosuchdb,"con = sqlite3.connect(""file:nosuchdb.db?mode=rw"", uri=True)" +library/sqlite3,,:mem1,"con1 = sqlite3.connect(""file:mem1?mode=memory&cache=shared"", uri=True)" +library/sqlite3,,:mem1,"con2 = sqlite3.connect(""file:mem1?mode=memory&cache=shared"", uri=True)" library/ssl,,:My,"Organizational Unit Name (eg, section) []:My Group" library/ssl,,:My,"Organization Name (eg, company) [Internet Widgits Pty Ltd]:My Organization, Inc." library/ssl,,:myserver,"Common Name (eg, YOUR name) []:myserver.mygroup.myorganization.com" @@ -379,5 +382,11 @@ library/tkinter,,::,"grid [ttk::button .frm.btn -text ""Quit"" -command ""destro library/tkinter,,::,ttk::frame library/tkinter,,::,ttk::button library/tkinter,,::,ttk::widget -whatsnew/changelog,305,::,Lib/email/mime/nonmultipart.py::MIMENonMultipart -whatsnew/changelog,308,::,Lib/ctypes/test/test_functions.py::test_mro +reference/compound_stmts,324,:exc,subclass of :exc:`BaseExceptionGroup`. It is not possible to mix except +reference/compound_stmts,324,`,subclass of :exc:`BaseExceptionGroup`. It is not possible to mix except +reference/compound_stmts,324,:keyword,"and except* in the same :keyword:`try`. :keyword:`break`," +reference/compound_stmts,324,`,"and except* in the same :keyword:`try`. :keyword:`break`," +reference/compound_stmts,324,:keyword,:keyword:`continue` and :keyword:`return` cannot appear in an except* +reference/compound_stmts,324,`,:keyword:`continue` and :keyword:`return` cannot appear in an except* +whatsnew/changelog,178,:CON,": os.path.abspath(“C:CON”) is now fixed to return “\.CON”, not" +whatsnew/changelog,922,::,Lib/email/mime/nonmultipart.py::MIMENonMultipart |