This file is indexed.

/usr/share/pype/configuration.py is in pype 2.9.4-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
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
'''
This software is licensed under the GPL (GNU General Public License) version 2
as it appears here: http://www.gnu.org/copyleft/gpl.html
It is also included with this archive as `gpl.txt <gpl.txt>`_.
'''

#----------------------------- configuration.py ------------------------------
#----------------------- Settings for configuring PyPE -----------------------

collapse_style = 0

#CTRL-T swaps two lines.  Setting the below to 1 disables this hotkey.
REM_SWAP = 1

import os
import sys
from wx.stc import STC_EOL_CRLF, STC_EOL_LF, STC_EOL_CR
import zlib

startup_path = os.getcwd()

fmt_mode = {"\r\n":STC_EOL_CRLF,
              "\n":STC_EOL_LF,
              "\r":STC_EOL_CR}
fmt_Rmode = {}
for i,j in fmt_mode.items():
    fmt_Rmode[j] = i

eol = os.linesep
eolmode = fmt_mode[eol]

def fp(path):
    if sys.platform=='win32':
        if ' ' in path:
            return '"%s"'%path
        return path
    return path.replace(' ', '\\ ')

def fixpath(path):
    return os.path.normpath(fp(path))

try:
    sorted
except NameError:
    def sorted(foo):
        a = list(foo)
        a.sort()
        return a

se = fixpath(sys.executable)
spawnargs = [se]

if sys.executable[-8:].lower() == 'pype.exe':
    runme = se
    runpath = se
else:
    runpath = os.path.dirname(os.path.normpath(os.path.abspath(__file__)))
    b = fixpath(os.path.join(runpath, sys.argv[0]))
    runme = "%s %s"%(se,b)
    spawnargs.append(b)
    runpath = __file__

#toss all the " marks in path names if necessary
runpath = runpath.replace('"', '')
runpath = os.path.dirname(os.path.normpath(os.path.abspath(runpath)))

nosocket = os.path.exists(os.path.join(runpath, 'nosocket'))

stylefile = os.path.join(runpath, 'stc-styles.rc.cfg')

#for open/save dialogs
wildcard = "All python files (*.py *.pyw)|*.py;*.pyw|"\
           "Pyrex files (*.pyi *.pyx)|*.pyi;*.pyx|"\
           "HTML/XML files (*.htm* *.shtm* *.xml)|*.htm*;*.shtm*;*.xml|"\
           "C/C++ files (*.c* *.h)|*.c*;*.h|"\
           "Text files (*.txt)|*.txt|"\
           "Latex files (*.tex *.bib)|*.tex;*.bib|"\
           "All Files (*.*)|*.*"

#for style mappings from extensions
extns = {'py' : 'python',
        'pyw' : 'python',
        'spt' : 'python', # spitfire templates look better as Python than as html :P
       'tmpl' : 'python', # ditto for cheetah templates
        'pyi' : 'pyrex',
        'pyx' : 'pyrex',
          'c' : 'cpp',
         'cc' : 'cpp',
        'cpp' : 'cpp',
        'c++' : 'cpp',
        'cxx' : 'cpp',
          'h' : 'cpp',
       'java' : 'cpp',
         'js' : 'cpp',
        'htm' : 'html',
       'html' : 'html',
       'shtm' : 'html',
      'shtml' : 'html',
        'xml' : 'xml',
        'tex' : 'tex',
        'bib' : 'tex',
        'ini' : 'text',
        'txt' : 'text'}

default_homedir = os.path.dirname(os.path.abspath(__file__))
if hasattr(sys, 'frozen'):
    default_homedir = os.path.split(default_homedir)[0]

sa = 0
try:
    sa = getattr(_pype, '_standalone', 0)
except:
    pass

if sa:
    homedir = os.path.join(default_homedir, ".pype")
else:
    try:
        #all user-based OSes
        thd = os.path.expanduser("~")
        if thd == "~": raise
        homedir = os.path.join(thd, ".pype")
    except:
        try:
            #windows NT,2k,XP,etc. fallback
            homedir = os.path.join(os.environ['USERPROFILE'], ".pype")
        except:
            try:
                #windows NT,2k,XP,etc. fallback #2
                homedir = os.path.join(os.environ['HOMEDRIVE'], os.environ['HOMEPATH'], ".pype")
            except:
                try:
                    #*nix fallback
                    homedir = os.path.join(os.environ['HOME'], ".pype")
                except:
                    #What os are people using?
                    homedir = os.path.join(default_homedir, ".pype")

try:
    # create the config directory if it
    # doesn't already exist
    def expandfull(var, rem=3):
        if not rem:
            return os.path.expandvars(var)
        a = os.path.expandvars(var)
        b = []
        d = [b.extend(i.split('\\')) for i in a.split('/')]
        c = []
        for i in b:
            if '%' in i:
                c.append(expandfull(i, rem-1))
            else:
                c.append(i)
        return '\\'.join(c)
    if eol == "\r\n" and '%' in homedir:
        homedir = expandfull(homedir)
    if not os.path.exists(homedir):
        os.mkdir(homedir)
except:
    raise Exception("Unable to create config directory: %r"%(homedir))

for fil in os.listdir(homedir):
    if fil.find('.tmp.') > -1:
        try: os.remove(os.path.join(homedir, fil))
        except: pass

def validate(value, orig):
    try:
        a = int(value)
    except:
        a = 0
    if a < 1:
        return orig
    return a

def getData():
    a = zlib.decompress(
'x\xda\x01\xf4\x04\x0b\xfb\x89PNG\r\n\x1a\n\x00\x00\x00\rIHDR\x00\x00\x00 \
\x00\x00\x00 \x08\x06\x00\x00\x00szz\xf4\x00\x00\x00\x04sBIT\x08\x08\x08\x08\
|\x08d\x88\x00\x00\x04\xabIDATx\x9c\xb5\x97\xcdk\x1bG\x18\xc6\x7f\x93f\x9d \
\xc5\xd2\xacI\x94\x14Y\x91\xe3B\x1a\xb0\x14(-!\x10\xd5\xd4\xa4\x1fid\x8a/=\
\xd4\xb9\xf4Tj\x9f\n=\xd4\xfe\x0b\xd2K\xae=\xe4n\xe5TP\x8b\x95@\xd3\x90b\xcb\
\xd4\x18\xd2\x84:\x854\x07G\xb6%bKP\xad\x94nh\xbd\x84\xe9a\xbd\xab]}Y\xf9\
\xe8\x03\x02\xed\xec\xec<\xcf\xfb\xcc;\xef\xcc\x08)%\x9d\x106\x0cU\x03\xc2@M\
J\xd1\xb1\xe3K`\x7f7\xf2\x82R\xee\xf3\x90\x10\xea\xff\x10\xd1V@39@A)\x86\x84\
\xf05>\xaf \xcb\n\xa9Xt\x9c\xc8\x91\x14\xba~\x1a\xd3\\o\x15\x106\x0c\x97D\
\x17\xf6\xf8\xd5]15\xcf\x7f\xe8\xdd\x15\xcb\n\xa9\xe4\xc8,\xc3C\x93\x9e\xb6:\
Ec\xb5!\xc0%\xceBm\x02\x1f\xb1#\xa6\xda\xc1\x95n"\x06dZ\x9d=\xf3\x1d\x00\xe5\
J\x9e\xb5G\x19\xb6+\x8bhZ]\xc0\xee\x14\x84\rC\x91\x85\xf5c\xf6G\xf2f{BGH\xb3\
\xb8n\x08\x06\x8f\x03\xb0\xbc2\xcd_FN\x00\xf4i1\xa5\xcbw\xd5ve\xb1\xe1\x80C\
\x0e`\xf47D4\xa3\x17\xe2\x03}\t\xa5\xcb\xd3l\x953\xbe\x01N\x9d\xbc\xacb\xd1q\
4-\x04\xc0\xad_\xd2\xecw\xa2o\x86\xd1\x0f,7\x9e\xe5\x93VWt!\x08g!<a\xa8\x9a\
\x94\xc2\xb2Bj\xf4\xdc5t\x99\xd8%\xf8\xdd\xed\xecL\x83\xf9t\x93\xcd\xd2<\x86\
\xb1J\xb5\xba\xday\x19\xb6\x13\xd4\xe2\xcaMX\xef\x87x\x16\x0e|\x91P\x1f\x8c]\
C\xd3BXV\x1dM\x0b\x11\x0c\xc4\xdd\xae\xe5J\x9e\xd5?.\xf3\xef\xce}w\x80@P\xb0\
\xaf&\xa5`\xa2w\x11\xc6\xb2\xe7\xd7o\xb7\xbf\xf6\xd5%\xce\xbf\x97c\xc7\xaaq\
\xe3\xa7\x14\x0f\x1e\xda\xd1nW\x16\xddo\xbd\xe4\x82\x98\x1a\x90i5 \xd3\xcau \
\xbe\xe5\xcf\x83^\xf1\xf6\xd4\xb7\xbcyf\x8ab)\xc7\xf2\xca\x14\x00\xa7NNS,\
\xe5\x9cLW\x00\xc1@\x9c\x13C\x97|9P\xae\xe4\xed)\xa8I)\xc2\x13\x86\x8a\x03\
\xde\xd5\xe0\xc3Y|9\xe1@\x97I\x00\x16\xaeL\xa2_H2\x9a\xba\x06\xc0\x9d{3h\x9a\
\xe7\xf369\xb0]\xf6\xac\x02g-\xbbB\x9a\x91\x85\xf5.N\x1c\xfd$\xc5\xe8\x98M\
\xfe\xf3\xed\x8b\xee:w\xd0.\x07\x00D\xb7\xcd\xc8\x0bo\x85$\x0b\x8f?\r\x030\
\x9a\xca\x109\x92\x02\xa0j\xdcga\xe93\x97<l\x18\xeaYt\x1c\xcb2Z\x88\x1d\xec\
\xeb\x89\x1d\xdb!\xe7W\xff<\xc9\xc7\x1f-\xf9\xde\x17K9n\xdd\xbe\xc8as\xa3!8\
\x0b\xc5\xef\xe79x5\xef\x0f\xe0E\x04x\x91\x1c\x99eg\xa7\xc6\xebV\xcdm[\xb82\
\xc9\xceb\xe3\xd9Y]\xf1\xb3\xbb\rY\xda\x8ax!\x01\x83\xd14\xc5\xd2<\x0f7\xda\
\xbc\xf4\x109\x8e1\xd1y\x85\xf5$\xc0\xb2B\xae\xf2C\xc1\x94\x02(\x96\xe6Q\x91\
\xd6\xbe\xeb\xc7h\x1bm|\xab}{\x8b\x00AL\xbdqbF\xbd\xf3\xd6\x9c\x8aE\xa7\xd4\
\xa1`J]\xfcp\x89\x01\x99V\x00G#),\xab\xce\xe3\xadU\x8f\xc0z\xab\x08\x0f\xba\
\xb9\xb0\x1f\xec-3\x12I\xa1\xcb\xd3n\x1d\x07\x88\x1cI\xb1V\xc8\xa0i!\x92\x89\
Y\xee\xcd\xcf\xa9\xc1\xe88\x9b\xa5y\xb7O\xd5Xe!?\t\xdf4\x8d\xec\xd9#Z\\\xf0\
\xb4\xef\x03\xbbH\x0c\x0fM\xa2\xcb\x04\xc5R\x8e\x85\xa5K\x98O7\x01\xbb\x84\
\x02\x04\x031B#\xb3\x04\x031\xca\xe5\xbc\xcb\xb3\xf4\xeb\x0c\xf5\'\x8d\xe4{^\
\x17\xdcB\xb4V\xc8\xf0\xdb\xdd\x19\x02A!\x9e\x9a\xf6\x96W\xae\xe49ln\xb0V\
\xc80<4Ird\x06\xb0\xe7\xffU\xc1\xcd\x01\xd3\xdc \x10\x14\xe2@_B\x9d\x1f\xbbN\
0\x10\xb3\xa3\xcf6\\\x00\xbb\xd8\xb4\x8b\xf8E\xe1:0\x18\x1dg0:\xae\x9c\x1cX^\
\x99\xe6\xe0\xd5\xbcm\xd9\xad\r\x8a_\xe7\x18\x8c\xa6){v8\x07\x07\xefu&\x08\
\x1bF\xd7#\x9b\xeb\x80.\x13\xe82\xc1Z!\xc3\x0f\xb9$\xcf\ns\xbe\xf9\xaa\x1av\
\xd6\xaf=\x9aC\x94{\x8bn\x1d\xdc\xa5\xd7\xe9\xe0\xe3\xcb\x81\x07\x0fg\x05\
\xc0a\xd3\xdfY\xbf\x90\xe4\xd4\xd84\xe5J\x1e\xc5\xa68y\x1c\xf5\xe7?\xf6\xbbn\
\xd1\xc3n\xd2yv\xd1\xf8V\x07\x01\xa6\xe9/kN\xf4\xfa\x85$\xef\x8f]\x07\xe0\
\xce\xdd\x19_\x9fn\xe4n\t\xf6\x9c3\xe2[\xc0\x84\xff>\xb1\xe7\x91\xac\xaf/\
\xcc\xdf\xe6\x06\xcb+_\x12\xb2\xa7A\x91\xdd\x83|7J\xdf9\x83F\x9b\xb7oG\x07\
\x9c\x13\xd2\xf6\x8fynp\x0e\x80\xea^ji\x8dr\xaf\x8bK\xc7\xf3@\xf3]\xa1\x17R\
\x07\xcfse\xebz \xf1\xde\x96\x9a\x85\xbc\x0ci\xcf\x02\xbcB\x9aK\xcf\xab\xba\
\xb2\xff\x07\n$<\xcc\x9c\x11r\xaf\x00\x00\x00\x00IEND\xaeB`\x82_YY\xda' )
    return a

# The remainder of this file is in the public domain.
# This version acquired from:
# http://www.cherrypy.org/browser/branches/ticket-132/cherrypy/lib/unrepr.py?rev=194
# JC - 7/18/2007 - Added support for True/False, added StringBuilder variant
#    for string-only unrepr operations.
# JC - 9/14/2007 - Added support for negative values.
import compiler

def getObj(s):
    s="a="+s
    return compiler.parse(s).getChildren()[1].getChildren()[0].getChildren()[1]

class UnknownType(Exception):
    pass

class _Builder:
    def build(self, o):
        m = getattr(self, 'build_'+o.__class__.__name__, None)
        if m is None:
            raise UnknownType(o.__class__.__name__)
        return m(o)

class StringBuilder(_Builder):
    def build_Const(self, o):
        if type(o.value) in (str, unicode):
            return o.value
        raise Exception

class Builder(_Builder):
    def build_List(self, o):
        return map(self.build, o.getChildren())
    def build_Const(self, o):
        return o.value
    def build_Dict(self, o):
        d = {}
        i = iter(map(self.build, o.getChildren()))
        for el in i:
            d[el] = i.next()
        return d
    def build_Tuple(self, o):
        return tuple(self.build_List(o))
    def build_Name(self, o):
        if o.name == 'None':
            return None
        elif o.name == 'True':
            return True
        elif o.name == 'False':
            return False
        raise UnknownType('Name: %r'%(o,))
    def build_Add(self, o):
        real, imag = map(self.build_Const, o.getChildren())
        try:
            real = float(real)
        except TypeError:
            raise UnknownType('Add')
        if not isinstance(imag, complex) or imag.real != 0.0:
            raise UnknownType('Add')
        return real+imag
    def build_UnarySub(self, o):
        return -self.build_Const(*o.getChildren())

def unrepr(s):
    return Builder().build(getObj(s))

#variant of 'unreprWrapper' by robinson
def str_unrepr(s):
    if not s:
        return s
    try:
        return StringBuilder().build(getObj(s))
    except:
        return s

class __LINE__(object):
    def __str__(self):
        return str(sys._getframe(1).f_lineno)
__LINE__ = __LINE__()