This file is indexed.

/usr/share/svn-workbench/wb_shell_commands.py is in svn-workbench 1.6.8-2.

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
'''
 ====================================================================
 Copyright (c) 2003-2010 Barry A Scott.  All rights reserved.

 This software is licensed as described in the file LICENSE.txt,
 which you should have received as part of this distribution.

 ====================================================================

    wb_shell_commands.py

'''
import sys

if sys.platform == 'win32':
    from wb_shell_win32_commands import *
elif sys.platform == 'darwin':
    from wb_shell_macosx_commands import *
else:
    from wb_shell_unix_commands import *