diff options
author | Erlend Egeberg Aasland <erlend.aasland@innova.no> | 2021-06-23 12:56:40 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-06-23 12:56:40 (GMT) |
commit | a50e28377bcf37121b55c2de70d95a5386c478f8 (patch) | |
tree | 10bd9512e7501dc798630a89770254be220d0905 /Tools/c-analyzer | |
parent | 489699ca05bed5cfd10e847d8580840812b476cd (diff) | |
download | cpython-a50e28377bcf37121b55c2de70d95a5386c478f8.zip cpython-a50e28377bcf37121b55c2de70d95a5386c478f8.tar.gz cpython-a50e28377bcf37121b55c2de70d95a5386c478f8.tar.bz2 |
bpo-42064: Move `sqlite3` exceptions to global state, part 1 of 2 (GH-26745)
Also adds a test to verify the (borrowed) exceptions in `sqlite3.Connection`.
Diffstat (limited to 'Tools/c-analyzer')
-rw-r--r-- | Tools/c-analyzer/cpython/ignored.tsv | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/Tools/c-analyzer/cpython/ignored.tsv b/Tools/c-analyzer/cpython/ignored.tsv index d8407ed..b002703 100644 --- a/Tools/c-analyzer/cpython/ignored.tsv +++ b/Tools/c-analyzer/cpython/ignored.tsv @@ -49,11 +49,6 @@ Modules/_io/_iomodule.h - _PyIO_str_write - Modules/_io/_iomodule.h - _PyIO_empty_str - Modules/_io/_iomodule.h - _PyIO_empty_bytes - Modules/_multiprocessing/multiprocessing.h - _PyMp_SemLockType - -Modules/_sqlite/module.c - pysqlite_Error - -Modules/_sqlite/module.c - pysqlite_Warning - -Modules/_sqlite/module.c - pysqlite_InterfaceError - -Modules/_sqlite/module.c - pysqlite_DatabaseError - -Modules/_sqlite/module.c - pysqlite_InternalError - Modules/_sqlite/module.c - pysqlite_OperationalError - Modules/_sqlite/module.c - pysqlite_ProgrammingError - Modules/_sqlite/module.c - pysqlite_IntegrityError - @@ -2371,11 +2366,6 @@ Modules/_ctypes/_ctypes.c - PyExc_ArgError - Modules/_cursesmodule.c - PyCursesError - Modules/_decimal/_decimal.c - DecimalException - Modules/_queuemodule.c - EmptyError - -Modules/_sqlite/module.h - pysqlite_Error - -Modules/_sqlite/module.h - pysqlite_Warning - -Modules/_sqlite/module.h - pysqlite_InterfaceError - -Modules/_sqlite/module.h - pysqlite_DatabaseError - -Modules/_sqlite/module.h - pysqlite_InternalError - Modules/_sqlite/module.h - pysqlite_OperationalError - Modules/_sqlite/module.h - pysqlite_ProgrammingError - Modules/_sqlite/module.h - pysqlite_IntegrityError - |