This file is indexed.

/usr/lib/python3/dist-packages/pyraf/irafhelp.py is in python3-pyraf 2.1.14+dfsg-6.

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
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
"""Give help on variables, functions, modules, classes, IRAF tasks,
IRAF packages, etc.

- help() with no arguments will list all the defined variables.
- help("taskname") or help(IrafTaskObject) display the IRAF help for the task
- help("taskname",html=1) or help(IrafTaskObject,html=1) will direct a browser
  to display the HTML version of IRAF help for the task
- help(object) where object is a module, instance, ? will display
  information on the attributes and methods of the object (or the
  variables, functions, and classes in the module)
- help(function) will give the calling sequence for the function (except
  for built-in functions)

and so on.  There are optional keyword arguments to help that specify
what information is to be printed:

variables=1     Print info on variables/attributes
functions=1     Print info on function/method calls
modules=1       Print info on modules
tasks=0         Print info on IrafTask objects
packages=0      Print info on IrafPkg objects
hidden=0        Print info on hidden variables/attributes (starting with '_')
html=0          Use HTML help instead of standard IRAF help for tasks

regexp=None     Specify a regular expression that matches the names of
                        variables of interest.  E.g. help(sys, regexp='std') will
                        give help on all attributes of sys that start with std.
                        regexp can use all the re patterns.

The padchars keyword determines some details of the format of the output.

The **kw argument allows minimum matching for the keyword arguments
(so help(func=1) will work).

$Id$

R. White, 1999 September 23
"""
 # confidence high

import __main__, re, os, sys, types
try:
    import io
except ImportError: # only for Python 2.5
    io = None

from stsci.tools import minmatch, irafutils
from stsci.tools.irafglobals import IrafError, IrafTask, IrafPkg
from stsci.tools.for2to3 import PY3K
from . import describe

# use this form since the iraf import is circular
import pyraf.iraf


# print info on numpy arrays if numpy is available

try:
    import numpy
    _numpyArrayType = numpy.ndarray
except ImportError:
    # no numpy available, so we won't encounter arrays
    _numpyArrayType = None

_MODULE = 0
_FUNCTION = 1
_METHOD = 2
_OTHER = 3

_functionTypes = (types.BuiltinFunctionType,
                  types.FunctionType,
                  types.LambdaType)

_methodTypes = (types.BuiltinMethodType,
                types.MethodType)

if not PY3K:
   # in PY3K, UnboundMethodType is simply FunctionType
   _methodTypes += (types.UnboundMethodType,)

_listTypes = (list, tuple, dict)

_numericTypes = (float, int, int, complex)
if 'bool' in globals():
    _numericTypes = _numericTypes + (bool,)

_allSingleTypes = _functionTypes + _methodTypes + _listTypes + _numericTypes

# set up minimum-match dictionary with function keywords

kwnames = ( 'variables', 'functions', 'modules',
                'tasks', 'packages', 'hidden', 'padchars', 'regexp', 'html' )
_kwdict = minmatch.MinMatchDict()
for key in kwnames: _kwdict.add(key,key)
del kwnames, key

# additional keywords for IRAF help task

irafkwnames = ( 'file_template', 'all',
                'parameter', 'section', 'option', 'page', 'nlpp', 'lmargin',
                'rmargin', 'curpack', 'device', 'helpdb', 'mode' )
_irafkwdict = {}
for key in irafkwnames:
    _kwdict.add(key,key)
    _irafkwdict[key] = 1
del irafkwnames, key

def _isinstancetype(an_obj):
    """ Transitional function to handle all basic cases which we care
    about, in both Python 2 and 3, with both old and new-style classes.
    Return True if the passed object is an instance of a class, else False. """
    if an_obj is None: return False
    if not PY3K:
        return isinstance(an_obj, types.InstanceType)
    typstr = str(type(an_obj))
    # the following logic works, as PyRAF users expect, in both v2 and v3
    return typstr=="<type 'instance'>" or \
           (typstr.startswith("<class '") and ('.' in typstr))


def help(an_obj=__main__, variables=1, functions=1, modules=1,
         tasks=0, packages=0, hidden=0, padchars=16, regexp=None, html=0,
         **kw):

    """List the type and value of all the variables in the specified object.

- help() with no arguments will list all the defined variables.
- help("taskname") or help(IrafTaskObject) displays IRAF help for the task
- help(object) where object is a module, instance, etc., will display
information on the attributes and methods of the object.
- help(function) will give the calling sequence for the function.

Optional keyword arguments specify what information is to be printed.
The keywords can be abbreviated:

variables=1 Print info on variables/attributes
functions=1 Print info on function/method calls
modules=1   Print info on modules
tasks=0     Print info on IrafTask objects
packages=0  Print info on IrafPkg objects
hidden=0    Print info on hidden variables/attributes (starting with '_')
html=0      Use HTML help instead of standard IRAF help for tasks

regexp=None Specify a regular expression that matches the names of variables of
        interest.  E.g., help(sys, regexp='std') will give help on all attr-
        ibutes of sys that start with std.  All the re patterns can be used.

Other keywords are passed on to the IRAF help task if it is called.
"""

    # handle I/O redirection keywords
    redirKW, closeFHList = pyraf.iraf.redirProcess(kw)
    if '_save' in kw: del kw['_save']

    # get the keywords using minimum-match
    irafkw = {}
    for key in list(kw.keys()):
        try:
            fullkey = _kwdict[key]
            if fullkey in _irafkwdict:
                # this is an IRAF help keyword
                irafkw[fullkey] = kw[key]
            else:
                # this is a Python help function keyword
                exec(fullkey+' = '+repr(kw[key]))
        except KeyError as e:
            raise e.__class__("Error in keyword "+key+"\n"+str(e))

    resetList = pyraf.iraf.redirApply(redirKW)

    # try block for I/O redirection

    try:
        _help(an_obj, variables, functions, modules,
                tasks, packages, hidden, padchars, regexp, html, irafkw)
    finally:
        rv = pyraf.iraf.redirReset(resetList, closeFHList)
    return rv

def _help(an_obj, variables, functions, modules,
                tasks, packages, hidden, padchars, regexp, html, irafkw):

    # for IrafTask object, display help and also print info on the object
    # for string parameter, if it looks like a task name try getting help
    # on it too (XXX this is a bit risky, but I suppose people will not
    # often be asking for help with simple strings as an argument...)

    if isinstance(an_obj,IrafTask):
        if _printIrafHelp(an_obj, html, irafkw): return

    if isinstance(an_obj,str):
        # Python task names
        if an_obj in sys.modules: # e.g. help drizzlepac
            theMod = sys.modules[an_obj]
            if hasattr(theMod, 'help'):
                theMod.help()
                return
        # sub-module Python task names
        else: # e.g. help astrodrizzle (when really drizzlepac.astrodrizzle)
            keyMatches = \
                [m for m in list(sys.modules.keys()) if m.endswith('.'+an_obj)]
            for theKey in keyMatches:
                theMod = sys.modules[theKey]
                if hasattr(theMod, 'help'):
                    theMod.help()
                    return
        # IRAF task names
        if re.match(r'[A-Za-z_][A-Za-z0-9_.]*$',an_obj) or \
          (re.match(r'[^\0]*$',an_obj) and \
                    os.path.exists(pyraf.iraf.Expand(an_obj, noerror=1))):
            if _printIrafHelp(an_obj, html, irafkw): return

    vlist = None
    if not isinstance(an_obj, _allSingleTypes):
        try:
            vlist = vars(an_obj)
        except TypeError:
            pass
    if vlist is None:
        # simple object with no vars()
        _valueHelp(an_obj, padchars)
        return

    # look inside the object

    tasklist, pkglist, functionlist, methodlist, modulelist, otherlist = \
            _getContents(vlist, regexp, an_obj)

    if _isinstancetype(an_obj):
        # for instances, print a help line for the object itself first
        _valueHelp(an_obj, padchars=0)

    if modules and modulelist:
        # modules get listed in simple column format
        print("Modules:")
        irafutils.printCols([x[0] for x in modulelist])
        print()

    if functions and functionlist:
        _printValueList(functionlist, hidden, padchars)

    if functions and methodlist:
        _printValueList(methodlist, hidden, padchars)

    if variables and otherlist:
        _printValueList(otherlist, hidden, padchars)

    # IRAF packages and tasks get listed in simple column format
    if packages and pkglist:
        print("IRAF Packages:")
        irafutils.printCols(pkglist)
        print()

    if tasks and tasklist:
        print("IRAF Tasks:")
        irafutils.printCols(tasklist)
        print()

    if _isinstancetype(an_obj) and functions:
        # for instances, call recursively to list class methods
        help(an_obj.__class__, functions=functions, tasks=tasks,
                packages=packages, variables=variables, hidden=hidden,
                padchars=padchars, regexp=regexp)

#------------------------------------
# helper functions
#------------------------------------

# return 1 if they handle the object, 0 if they don't

def _printIrafHelp(an_obj, html, irafkw):
    if html:
        _htmlHelp(an_obj)
        return 0
    else:
        return _irafHelp(an_obj, irafkw)

def _valueHelp(an_obj, padchars):
    # just print info on the object itself
    vstr = _valueString(an_obj,verbose=1)
    try:
        name = an_obj.__name__
    except AttributeError:
        name = ''
    name = name + (padchars-len(name))*" "
    if name and len(name.strip()) > 0:
        print(name, ":", vstr)
    else:
        # omit the colon if name is null
        print(vstr)

def _getContents(vlist, regexp, an_obj):
    # Make one pass through names getting the type and sort order
    # Also split IrafTask and IrafPkg objects into separate lists and
    #  look into base classes if object is a class.
    # Returns lists of various types of included objects
    if regexp: re_check = re.compile(regexp)
    tasklist = []
    pkglist = []
    # lists for functions, modules, other types
    functionlist = []
    methodlist = []
    modulelist = []
    otherlist = []
    sortlist = 4*[None]
    sortlist[_FUNCTION] = functionlist
    sortlist[_METHOD] = methodlist
    sortlist[_MODULE] = modulelist
    sortlist[_OTHER] = otherlist
    namedict = {}
    names = list(vlist.keys())
    for vname in names:
        if (regexp is None) or re_check.match(vname):
            value = vlist[vname]
            if isinstance(value,IrafPkg):
                pkglist.append(vname + '/')
            elif isinstance(value,IrafTask):
                tasklist.append(vname)
            else:
                vorder = _sortOrder(type(value))
                sortlist[vorder].append((vname,value))
                namedict[vname] = 1
    # add methods from base classes if this is a class
    if (not PY3K and isinstance(an_obj, type)) or \
       (PY3K and type(an_obj)==type(object)): # i.e. "<class 'type'>"
        classlist = list(an_obj.__bases__)
        for c in classlist:
            classlist.extend(list(c.__bases__))
            for vname, value in list(vars(c).items()):
                if not vname in namedict and \
                  ((regexp is None) or re_check.match(vname)):
                    vorder = _sortOrder(type(value))
                    sortlist[vorder].append((vname,value))
                    namedict[vname] = 1
    # sort into alphabetical order by name
    tasklist.sort()
    pkglist.sort()
    functionlist.sort()
    methodlist.sort()
    modulelist.sort()
    otherlist.sort()
    return tasklist, pkglist, functionlist, methodlist, modulelist, otherlist

def _printValueList(varlist, hidden, padchars):
    # special hidden methods to keep (because they are widely useful)
    _specialHidden = ['__init__', '__call__']
    for vname, value in varlist:
        if (hidden or vname[0:1] != '_' or vname in _specialHidden):
            vstr = _valueString(value)
            # pad name to padchars chars if shorter
            if len(vname) < padchars:
                vname = vname + (padchars-len(vname))*" "
            print(vname, ":", vstr)



def _sortOrder(type):
    if issubclass(type, types.ModuleType):
        v = _MODULE
    elif issubclass(type, _functionTypes):
        v = _FUNCTION
    elif issubclass(type, _methodTypes):
        v = _METHOD
    else:
        v = _OTHER
    return v

def _valueString(value,verbose=0):
    """Returns name and, for some types, value of the variable as a string."""

    t = type(value)
    vstr = t.__name__
    if issubclass(t, str):
        if len(value)>42:
            vstr = vstr + ", value = "+ repr(value[:39]) + '...'
        else:
            vstr = vstr + ", value = "+ repr(value)
    elif issubclass(t, _listTypes):
        return "%s [%d entries]" % (vstr, len(value))
    elif (PY3K and issubclass(t, io.IOBase)) or \
         (not PY3K and issubclass(t, file)):
        vstr = vstr + ", "+ repr(value)
    elif issubclass(t, _numericTypes):
        vstr = vstr + ", value = "+ repr(value)
    elif _isinstancetype(value):
        cls = value.__class__
        if cls.__module__ == '__main__':
            vstr = 'instance of class ' + cls.__name__
        else:
            vstr = 'instance of class ' + cls.__module__ + '.' + cls.__name__
    elif issubclass(t, _functionTypes+_methodTypes):
        # try using Fredrik Lundh's describe on functions
        try:
            vstr = vstr + ' ' + describe.describe(value)
            try:
                if verbose and value.__doc__:
                    vstr = vstr + "\n" + value.__doc__
            except AttributeError:
                pass
        except (AttributeError, TypeError):
            # oh well, just have to live with type string alone
            pass
    elif issubclass(t, _numpyArrayType):
        vstr = vstr + " " + str(value.dtype) + "["
        for k in range(len(value.shape)):
            if k:
                vstr = vstr + "," + repr(value.shape[k])
            else:
                vstr = vstr + repr(value.shape[k])
        vstr = vstr + "]"
    else:
        # default -- just return the type
        pass
    return vstr


def _irafHelp(taskname, irafkw):
    """Display IRAF help for given task.
    Task can be either a name or an IrafTask object.
    Returns 1 on success or 0 on failure."""

    if isinstance(taskname,IrafTask):
        taskname = taskname.getName()
    else:
        # expand IRAF variables in case this is name of a help file
        taskname = pyraf.iraf.Expand(taskname,noerror=1)
    try:
        if not 'page' in irafkw: irafkw['page'] = 1
        pyraf.iraf.system.help(taskname, **irafkw)
        return 1
    except IrafError as e:
        print(str(e))
        return 0

_HelpURL = "http://stsdas.stsci.edu/cgi-bin/gethelp.cgi?task="
_Browser = "netscape"

def _htmlHelp(taskname):
    """Display HTML help for given IRAF task in a browser.
    Task can be either a name or an IrafTask object. """

    if isinstance(taskname,IrafTask):
        taskname = taskname.getName()
    url = _HelpURL + taskname

    irafutils.launchBrowser(url, brow_bin=_Browser, subj=taskname)