This file is indexed.

/usr/games/gnome-sudoku is in gnome-sudoku 1:3.4.2-3.

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

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
23
#! /usr/bin/python
# -*- coding: utf-8 -*-

# GNOME Sudoku is a simple sudoku generator and player. Sudoku is a
# japanese logic puzzle.
#
# Copyright (c) 2005 Tom Hinkle You may use and distribute this
# software under the terms of the GNU General Public License, version
# 2 or later.

try:
    import bugbuddy
    bugbuddy.install('gnome-sudoku')
except:
    pass

try:
    # Import gnome-sudoku module from source distribution.
    from lib.gnome_sudoku import start_game
except ImportError:
    from gnome_sudoku.gnome_sudoku import start_game

start_game()