This file is indexed.

/usr/include/python2.7/pygame_sdl2/pygame_sdl2.h is in python-pygame-sdl2 6.99.8-3.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
#ifndef PYGAME_SDL2_H
#define PYGAME_SDL2_H

#include "pygame_sdl2/pygame_sdl2.rwobject_api.h"
#include "pygame_sdl2/pygame_sdl2.surface_api.h"
#include "pygame_sdl2/pygame_sdl2.display_api.h"

/**
 * This imports the pygame_sdl2 C api. It returns 0 if the import succeeds, or
 * 1 if it fails.
 */
static int import_pygame_sdl2(void) {
	int rv = 0;

	rv |= import_pygame_sdl2__rwobject();
	rv |= import_pygame_sdl2__surface();
	rv |= import_pygame_sdl2__display();

	return rv;
}

#endif