[edit by @encukou , May 2024] The coverage report and checklist are outdated. Run coverage locally before contributing.
This bug is going to be used to track work in a other bugs to improve the C-level coverage of the CPython test suite.
There is a set of baseline coverage results on main [edit: outdated, see above] that can be used to find coverage gaps.
The plan, discussed on discuss.python.org is as follows:
Read through the coverage report and record any notable gaps in the checklist below. The goal is not 100% coverage, and each area of improvement will probably require some judgement calls. For example, covering all cases where memory exhaustion can occur is probably not worth the effort. On the other hand, detailed coverage in the eval loop may be worth the effort.
When someone has "read through" a particular source file and added created subitems for any interesting gaps, they should check it off on the list below and add links to any issues created.
Related work:
There is related work to publish coverage results from CPython on a regular basis , but this issue is concerned with using those results to actually reduce our gaps in coverage.
List of source files:
Include/internal/pycore_asdl.h
Include/internal/pycore_bitutils.h
Include/internal/pycore_call.h
Include/internal/pycore_code.h
Include/internal/pycore_frame.h
Include/internal/pycore_moduleobject.h
Include/internal/pycore_object.h
Include/internal/pycore_pymath.h
Include/internal/pycore_pymem.h
Include/internal/pycore_pystate.h
Include/object.h
Include/pydtrace.h
Objects/abstract.c
Buffer related functions: PyBuffer_FromContiguous, PyObject_CopyData, PyBuffer_FillContiguousStrides
PyNumber_Check doesn't test complex
PySequence_Repeat and PySequence_InPlaceRepeat have no coverage
PySequence_SetItem with a negative index is untested
PySequence_SetSlice and PySequence_DelSlice are untested
PyMapping_HasKey and PyMapping_HasKeyString are untested
Objects/accu.c
Objects/boolobject.c
Objects/bytearrayobject.c
Objects/bytes_methods.c
Objects/bytesobject.c
Objects/call.c
PyEval_CallObjectWithKeywords has no coverage
_PyObject_CallMethodId_SizeT has no coverage
Objects/capsule.c
Objects/cellobject.c
Objects/classobject.c
Objects/codeobject.c
Objects/complexobject.c
Objects/descrobject.c
Objects/dictobject.c
Objects/enumobject.c
Objects/exceptions.c
Objects/fileobject.c
PyFile_FromFd has no coverage
PyFile_GetLine over bytes input has no coverage
Objects/floatobject.c
Objects/frameobject.c
Objects/funcobject.c
A bunch of API is untested: PyFunction_GetCode, PyFunction_GetGlobals, PyFunction_GetModule, PyFunction_GetDefaults, PyFunction_SetDefaults, PyFunction_GetKwDefaults, PyFunction_SetKwDefaults, PyFunction_GetClosure, PyFunction_SetClosure, PyFunction_GetAnnotations, PyFunction_SetAnnotations \
gh-94808: cover PyFunction_GetDefaults and PyFunction_SetDefaults #98449
[3.11] gh-94808: Cover PyFunction_GetCode, PyFunction_GetGlobals,… #98317
Objects/genericaliasobject.c
Objects/genobject.c
gen_new_with_qualname and API PyGen_NewWithQualName and PyGen_New have no coverage.
PyCoro_New has no coverage
PyAsyncGen_New has no coverage
async_gen_athrow_send has poor coverage
Objects/interpreteridobject.c
Objects/iterobject.c
Objects/listobject.c
Objects/longobject.c
_PyLong_Sing_t_Converter has no coverage
long_format_binary doesn't test outputting to UCS2 or UCS4
int_bit_length_impl and int_bit_count_impl doesn't cover the case where expression overflows
Objects/memoryobject.c
Objects/methodobject.c
Objects/moduleobject.c
PyModule_GetFilename has no coverage
Objects/namespaceobject.c
Objects/object.c
PyObject_Print has no coverage
PyObject_Bytes does not test the case where there is a __bytes__
gh-94808: Add test coverage for PyObject_HasAttrString #96627
PyObject_SetAttrString doesn't test when object has a tp_setattr
PyObject_GetAttrString doesn't test when object has a tp_getattr
_PyObject_LookupAttr doesn't test when object has a tp_getattr
Objects/obmalloc.c
Objects/odictobject.c
Objects/picklebufobject.c
PyPickleBuffer_FromObject, PyPickleBuffer_Release has no coverage
Objects/rangeobject.c
Objects/setobject.c
Objects/sliceobject.c
PySlice_GetIndices/PySlice_GetIndicesEx has no coverage
Objects/stringlib/codecs.h
Objects/stringlib/count.h
Objects/stringlib/ctype.h
Objects/stringlib/eq.h
Objects/stringlib/fastsearch.h
Objects/stringlib/find.h
Objects/stringlib/find_max_char.h
Objects/stringlib/join.h
Objects/stringlib/localeutil.h
Objects/stringlib/partition.h
Objects/stringlib/replace.h
Objects/stringlib/split.h
Objects/stringlib/transmogrify.h
Objects/stringlib/undef.h
Objects/stringlib/unicode_format.h
Objects/structseq.c
Objects/tupleobject.c
Objects/typeobject.c
wrap_sq_setitem has no coverage
Objects/unicodectype.c
Objects/unicodeobject.c
xmlcharrefreplace doesn't test for codepoints < 100 (This seems almost impossible to occur).
resize_inplace has no coverage
unicode_kind_name when !PyUnicode_IS_COMPACT isn't covered -- low priority used by consistency check only
unicode_write_cstr doesn't test writing into UCS2 or UCS4
gh-94808: Cover %p in PyUnicode_FromFormat #96677
PyUnicode_AsDecodedObject, PyUnicode_AsDecodedUnicode, PyUnicode_AsEncodedObject, PyUnicode_AsEncodedUnicode has no coverage
_Py_DecodeUTF8Ex and _Py_EncodeUTF8Ex has no coverage for error == surrogateescape
PyUnicode_BuildEncodingMap doesn't handle the need_dict case
ucs1lib_find_slice and ucs1lib_rfind_slice aren't covered.
PyUnicode_Count has no coverage
gh-94808: Cover str.rsplit for UCS1, UCS2 or UCS4 #98228
PyUnicode_CompareWithASCIIString has no coverage for comparing with UCS2 or UCS4
_PyUnicode_EqualToASCIIId has no coverage
Objects/unicodetype_db.h
Objects/unionobject.c
Objects/weakrefobject.c
Parser/action_helpers.c
_PyPegen_set_expr_context doesn't cover "starred kind"
_PyPegen_get_expr_name switch statement coverage is non-exhaustive
Parser/myreadline.c (N/A Windows-only)
Parser/parser.c
Parser/peg_api.c
Parser/pegen.c
Parser/pegen.h
Parser/pegen_errors.c
Parser/string_parser.c
Parser/tokenizer.c
Python/Python-ast.c Generated code
Python/Python-tokenize.c
Python/_warnings.c
show_warning doesn't cover the case where there is a sourceline.
PyErr_WarnExplicit has no coverage
Python/asdl.c
Python/ast.c
ensure_literal_* functions aren't covered
validate_pattern_match_value doesn't cover all elements of switch
Python/ast_opt.c
check_complexity doesn't cover the frozenset case
ast_foldbody isn't covered
Python/ast_unparse.c
Python/bltinmodule.c
Python/bootstrap_hash.c
Python/ceval.c
Python/ceval_gil.h
Python/codecs.c
Python/compile.c
write_instr is not handling the case where ilen > 2. It might be that those are never seen in practice...? If so, feel free to close this bug.
check_ann_subscr doesn't have any coverage for slice or tuple kinds.
optimize_basic_block has some opcodes that aren't covered in the JUMP_IF_FALSE_OR_POP and the JUMP_IF_TRUE_OR_POP cases.
Python/condvar.h
Python/context.c
PyContext_Copy, PyContext_Enter, PyContext_Exit have no coverage
Python/deepfreeze/deepfreeze.c
Python/dtoa.c
Python/dup2.c
Python/dynamic_annotations.c
Python/errors.c
Python/fileutils.c
is_valid_wide_char doesn't test error branches
encode_ascii/decode_ascii has no coverage (probably very low priority -- comment says only for platforms with a broken mbstowcs (FreeBSD, OpenIndiana)
_Py_stat has no coverage
Python/formatter_unicode.c
Python/frame.c
Python/frozenmain.c
Python/future.c
Python/getargs.c
Python/getopt.c
Python/hamt.c
Python/hashtable.c
Python/import.c
Python/importdl.c
Python/initconfig.c
Python/marshal.c
Python/modsupport.c
Python/mysnprintf.c
Python/mystrtoul.c
Python/pathconfig.c
Python/preconfig.c
Python/pyarena.c
Python/pyfpe.c
Python/pyhash.c
Python/pylifecycle.c
Python/pystate.c
Python/pystrcmp.c
Python/pystrhex.c
Python/pystrtod.c
Python/pythonrun.c
Python/pytime.c
Python/specialize.c
Python/structmember.c
Python/suggestions.c
Python/symtable.c
Python/sysmodule.c
Python/thread.c
Python/traceback.c
tracebacks with angle-bracketed filenames [coverage ] Missing test for tracebacks with angle bracketed filename #95259
tb_printinternal with depth > limit
_PyTraceBack_Print_Indented with overflowing tracebacklimit
No coverage for _Py_DumpDecimal, _Py_DumpHexadecimal, _Py_DumpASCII, dump_frame, dump_traceback, _Py_DumpTraceback, write_thread_id, _Py_DumpTracebackThreads -- possibly they have tests which are disabled under some circumstances.
[edit by @encukou, May 2024] The coverage report and checklist are outdated. Run coverage locally before contributing.
This bug is going to be used to track work in a other bugs to improve the C-level coverage of the CPython test suite.
There is a set of
baseline coverage results on main[edit: outdated, see above] that can be used to find coverage gaps.The plan, discussed on discuss.python.org is as follows:
Related work:
There is related work to publish coverage results from CPython on a regular basis, but this issue is concerned with using those results to actually reduce our gaps in coverage.
List of source files:
Include/internal/pycore_asdl.hInclude/internal/pycore_bitutils.hInclude/internal/pycore_call.hInclude/internal/pycore_code.hInclude/internal/pycore_frame.hInclude/internal/pycore_moduleobject.hInclude/internal/pycore_object.hInclude/internal/pycore_pymath.hInclude/internal/pycore_pymem.hInclude/internal/pycore_pystate.hInclude/object.hInclude/pydtrace.hObjects/abstract.cPyBuffer_FromContiguous,PyObject_CopyData,PyBuffer_FillContiguousStridesPyNumber_Checkdoesn't testcomplexPySequence_RepeatandPySequence_InPlaceRepeathave no coveragePySequence_SetItemwith a negative index is untestedPySequence_SetSliceandPySequence_DelSliceare untestedPyMapping_HasKeyandPyMapping_HasKeyStringare untestedObjects/accu.cObjects/boolobject.cObjects/bytearrayobject.cObjects/bytes_methods.cObjects/bytesobject.cInIt's only the case where the underlying libc is broken that isn't tested.PyBytes_FromFormatV, the special handling of%pisn't tested.Objects/call.cPyEval_CallObjectWithKeywordshas no coverage_PyObject_CallMethodId_SizeThas no coverageObjects/capsule.cObjects/cellobject.cObjects/classobject.cObjects/codeobject.c_PyLineTable_StartsLinewas not used #96609Objects/complexobject.cObjects/descrobject.cObjects/dictobject.cdictresizeconvert split table into new combined table" is uncovered._PyDict_GetItemHinthas no coverageObjects/enumobject.cObjects/exceptions.cObjects/fileobject.cPyFile_FromFdhas no coveragePyFile_GetLineoverbytesinput has no coverageObjects/floatobject.cObjects/frameobject.cObjects/funcobject.cPyFunction_GetCode,PyFunction_GetGlobals,PyFunction_GetModule,PyFunction_GetDefaults,PyFunction_SetDefaults,PyFunction_GetKwDefaults,PyFunction_SetKwDefaults,PyFunction_GetClosure,PyFunction_SetClosure,PyFunction_GetAnnotations,PyFunction_SetAnnotations\PyFunction_GetDefaultsandPyFunction_SetDefaults#98449PyFunction_GetCode,PyFunction_GetGlobals,… #98317Objects/genericaliasobject.cObjects/genobject.cgen_new_with_qualnameand APIPyGen_NewWithQualNameandPyGen_Newhave no coverage.PyCoro_Newhas no coveragePyAsyncGen_Newhas no coverageasync_gen_athrow_sendhas poor coverageObjects/interpreteridobject.cObjects/iterobject.cObjects/listobject.cObjects/longobject.c_PyLong_Sing_t_Converterhas no coveragelong_format_binarydoesn't test outputting to UCS2 or UCS4int_bit_length_implandint_bit_count_impldoesn't cover the case where expression overflowsObjects/memoryobject.cinit_sliceis not well-coveredObjects/methodobject.cObjects/moduleobject.cPyModule_GetFilenamehas no coverageObjects/namespaceobject.cObjects/object.cPyObject_Printhas no coveragePyObject_Bytesdoes not test the case where there is a__bytes__PyObject_SetAttrStringdoesn't test when object has atp_setattrPyObject_GetAttrStringdoesn't test when object has atp_getattr_PyObject_LookupAttrdoesn't test when object has atp_getattrObjects/obmalloc.cObjects/odictobject.cObjects/picklebufobject.cPyPickleBuffer_FromObject,PyPickleBuffer_Releasehas no coverageObjects/rangeobject.cObjects/setobject.cObjects/sliceobject.cPySlice_GetIndices/PySlice_GetIndicesExhas no coverageObjects/stringlib/codecs.hObjects/stringlib/count.hObjects/stringlib/ctype.hObjects/stringlib/eq.hObjects/stringlib/fastsearch.hObjects/stringlib/find.hObjects/stringlib/find_max_char.hObjects/stringlib/join.hObjects/stringlib/localeutil.hObjects/stringlib/partition.hObjects/stringlib/replace.hObjects/stringlib/split.hObjects/stringlib/transmogrify.hObjects/stringlib/undef.hObjects/stringlib/unicode_format.hObjects/structseq.cObjects/tupleobject.cObjects/typeobject.cwrap_sq_setitemhas no coverageObjects/unicodectype.cObjects/unicodeobject.cxmlcharrefreplacedoesn't test for codepoints < 100 (This seems almost impossible to occur).resize_inplacehas no coverageunicode_kind_namewhen!PyUnicode_IS_COMPACTisn't covered -- low priority used by consistency check onlyunicode_write_cstrdoesn't test writing into UCS2 or UCS4%pinPyUnicode_FromFormat#96677PyUnicode_AsDecodedObject,PyUnicode_AsDecodedUnicode,PyUnicode_AsEncodedObject,PyUnicode_AsEncodedUnicodehas no coverage_Py_DecodeUTF8Exand_Py_EncodeUTF8Exhas no coverage forerror == surrogateescapePyUnicode_BuildEncodingMapdoesn't handle theneed_dictcaseucs1lib_find_sliceanducs1lib_rfind_slicearen't covered.PyUnicode_Counthas no coveragestr.rsplitfor UCS1, UCS2 or UCS4 #98228PyUnicode_CompareWithASCIIStringhas no coverage for comparing with UCS2 or UCS4_PyUnicode_EqualToASCIIIdhas no coverageObjects/unicodetype_db.hObjects/unionobject.cObjects/weakrefobject.cParser/action_helpers.c_PyPegen_set_expr_contextdoesn't cover "starred kind"_PyPegen_get_expr_nameswitch statement coverage is non-exhaustiveParser/myreadline.c(N/A Windows-only)Parser/parser.cParser/peg_api.cParser/pegen.cParser/pegen.hParser/pegen_errors.cmock.Mock()._is_coroutine = Falseworkarounds #94926Parser/string_parser.cParser/tokenizer.cGenerated codePython/Python-ast.cPython/Python-tokenize.cPython/_warnings.cshow_warningdoesn't cover the case where there is asourceline.PyErr_WarnExplicithas no coveragePython/asdl.cPython/ast.censure_literal_*functions aren't coveredvalidate_pattern_match_valuedoesn't cover all elements of switchPython/ast_opt.ccheck_complexitydoesn't cover thefrozensetcaseast_foldbodyisn't coveredPython/ast_unparse.cPython/bltinmodule.cPython/bootstrap_hash.cPython/ceval.cPyEval_AquireLockandPyEval_ReleaseLockare uncoveredSTORE_ATTR_WITH_HINTdoesn't cover the case where the dictionary doesn't have Unicode keysCALL_FUNCTION_EXdoesn't cover the case where kwargs is not an exact dictPyEval_EvalCodeExdoesn't cover the case where kwargs are passed inPyEval_GetFramehas no coveragePyEval_GetFuncDescfunction #98300Python/ceval_gil.hPython/codecs.cPython/compile.cPython/condvar.hPython/context.cPyContext_Copy,PyContext_Enter,PyContext_Exithave no coveragePython/deepfreeze/deepfreeze.cPython/dtoa.cPython/dup2.cPython/dynamic_annotations.cPython/errors.cPython/fileutils.cis_valid_wide_chardoesn't test error branchesencode_ascii/decode_asciihas no coverage (probably very low priority -- comment says only for platforms with a broken mbstowcs (FreeBSD, OpenIndiana)_Py_stathas no coveragePython/formatter_unicode.cPython/frame.cPython/frozenmain.cPython/future.cPython/getargs.cPython/getopt.cPython/hamt.cPython/hashtable.cPython/import.cPython/importdl.cPython/initconfig.cPython/marshal.cPython/modsupport.cPython/mysnprintf.cPython/mystrtoul.cPython/pathconfig.cPython/preconfig.cPython/pyarena.cPython/pyfpe.cPython/pyhash.cPython/pylifecycle.cPython/pystate.cPython/pystrcmp.cPython/pystrhex.cPython/pystrtod.cPython/pythonrun.cPython/pytime.cPython/specialize.cPython/structmember.cPython/suggestions.cPython/symtable.cPython/sysmodule.cPython/thread.cPython/traceback.cdepth > limit_PyTraceBack_Print_Indentedwith overflowingtracebacklimit_Py_DumpDecimal,_Py_DumpHexadecimal,_Py_DumpASCII,dump_frame,dump_traceback,_Py_DumpTraceback,write_thread_id,_Py_DumpTracebackThreads-- possibly they have tests which are disabled under some circumstances.LOAD_GLOBALfor custom dict subtypes #96767LOAD_GLOBALfor custom dict subtypes (GH-96767) #99091PySequence_{Set,Del}Slice#99123PyEval_GetFuncDescfunction #98300PyFunction_GetKwDefaultsandPyFunction_SetKwDefaults#98809PyEval_GetFuncDescfunction (GH-98300) #99126PySequence_{Set,Del}Slice(GH-99123) #99133PySequence_[InPlace_]Repeat#99196PySequence_[InPlace]Concat#99319PyFunction_{Get,Set}Closure#99429PyOS_mystrnicmpandPyOS_mystricmp#102469