LCOV - code coverage report
Current view: top level - Programs - python.c (source / functions) Hit Total Coverage
Test: CPython lcov report Lines: 2 2 100.0 %
Date: 2022-07-07 18:19:46 Functions: 1 1 100.0 %

          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        2861 : main(int argc, char **argv)
      14             : {
      15        2861 :     return Py_BytesMain(argc, argv);
      16             : }
      17             : #endif

Generated by: LCOV version 1.14