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

           Branch data     Line data    Source code
       1                 :            : /* Minimal main program -- everything is loaded from the library */
       2                 :            : 
       3                 :            : #include "Python.h"
       4                 :            : 
       5                 :            : #ifdef MS_WINDOWS
       6                 :            : int
       7                 :            : wmain(int argc, wchar_t **argv)
       8                 :            : {
       9                 :            :     return Py_Main(argc, argv);
      10                 :            : }
      11                 :            : #else
      12                 :            : int
      13                 :       2865 : main(int argc, char **argv)
      14                 :            : {
      15                 :       2865 :     return Py_BytesMain(argc, argv);
      16                 :            : }
      17                 :            : #endif

Generated by: LCOV version 1.14