LCOV - code coverage report
Current view: top level - Modules - _testimportmultiple.c (source / functions) Hit Total Coverage
Test: CPython 3.12 LCOV report [commit acb105a7c1f] Lines: 6 6 100.0 %
Date: 2022-07-20 13:12:14 Functions: 3 3 100.0 %
Branches: 0 0 -

           Branch data     Line data    Source code
       1                 :            : /*
       2                 :            :  * C extensions module to test importing multiple modules from one compiled
       3                 :            :  * file (issue16421). This file defines 3 modules (_testimportmodule,
       4                 :            :  * foo, bar), only the first one is called the same as the compiled file.
       5                 :            :  */
       6                 :            : #include<Python.h>
       7                 :            : 
       8                 :            : static struct PyModuleDef _testimportmultiple = {
       9                 :            :     PyModuleDef_HEAD_INIT,
      10                 :            :     "_testimportmultiple",
      11                 :            :     "_testimportmultiple doc",
      12                 :            :     -1,
      13                 :            :     NULL,
      14                 :            :     NULL,
      15                 :            :     NULL,
      16                 :            :     NULL,
      17                 :            :     NULL
      18                 :            : };
      19                 :            : 
      20                 :          2 : PyMODINIT_FUNC PyInit__testimportmultiple(void)
      21                 :            : {
      22                 :          2 :     return PyModule_Create(&_testimportmultiple);
      23                 :            : }
      24                 :            : 
      25                 :            : static struct PyModuleDef _foomodule = {
      26                 :            :     PyModuleDef_HEAD_INIT,
      27                 :            :     "_testimportmultiple_foo",
      28                 :            :     "_testimportmultiple_foo doc",
      29                 :            :     -1,
      30                 :            :     NULL,
      31                 :            :     NULL,
      32                 :            :     NULL,
      33                 :            :     NULL,
      34                 :            :     NULL
      35                 :            : };
      36                 :            : 
      37                 :          1 : PyMODINIT_FUNC PyInit__testimportmultiple_foo(void)
      38                 :            : {
      39                 :          1 :     return PyModule_Create(&_foomodule);
      40                 :            : }
      41                 :            : 
      42                 :            : static struct PyModuleDef _barmodule = {
      43                 :            :     PyModuleDef_HEAD_INIT,
      44                 :            :     "_testimportmultiple_bar",
      45                 :            :     "_testimportmultiple_bar doc",
      46                 :            :     -1,
      47                 :            :     NULL,
      48                 :            :     NULL,
      49                 :            :     NULL,
      50                 :            :     NULL,
      51                 :            :     NULL
      52                 :            : };
      53                 :            : 
      54                 :          1 : PyMODINIT_FUNC PyInit__testimportmultiple_bar(void){
      55                 :          1 :     return PyModule_Create(&_barmodule);
      56                 :            : }
      57                 :            : 

Generated by: LCOV version 1.14