diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2023-09-14 06:12:17 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-09-14 06:12:17 (GMT) |
commit | 1f885df2a580360c5de69cc41191f3c6bfaaeb35 (patch) | |
tree | 8ac79a07687449051fd4a4a916d005d7ff9cf4ac /Tools | |
parent | a806e920c41d64a442708871fba260831fedc472 (diff) | |
download | cpython-1f885df2a580360c5de69cc41191f3c6bfaaeb35.zip cpython-1f885df2a580360c5de69cc41191f3c6bfaaeb35.tar.gz cpython-1f885df2a580360c5de69cc41191f3c6bfaaeb35.tar.bz2 |
gh-107782: Use _testcapi to test non-representable signatures (GH-109325)
Builtin functions and methods that have non-representable signatures today
will have representable signatures yesterday, and they will become unusable
for testing this feature.
So we need to add special functions and methods to the _testcapi module
that always have non-representable signatures.
Diffstat (limited to 'Tools')
-rw-r--r-- | Tools/c-analyzer/cpython/ignored.tsv | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Tools/c-analyzer/cpython/ignored.tsv b/Tools/c-analyzer/cpython/ignored.tsv index d1ac041..8c2be44 100644 --- a/Tools/c-analyzer/cpython/ignored.tsv +++ b/Tools/c-analyzer/cpython/ignored.tsv @@ -420,6 +420,7 @@ Modules/_testcapi/buffer.c - testBufType - Modules/_testcapi/code.c get_code_extra_index key - Modules/_testcapi/datetime.c - test_run_counter - Modules/_testcapi/docstring.c - DocStringNoSignatureTest - +Modules/_testcapi/docstring.c - DocStringUnrepresentableSignatureTest - Modules/_testcapi/exceptions.c - PyRecursingInfinitelyError_Type - Modules/_testcapi/heaptype.c - _testcapimodule - Modules/_testcapi/mem.c - FmData - |