home *** CD-ROM | disk | FTP | other *** search
/ Freelog 116 / FreelogNo116-JuilletSeptembre2013.iso / GestionFichiers / metamorphose / metamorphose2_0.8.2_setup.exe / metamorphose2.exe / pdb.pyo (.txt) < prev    next >
Python Compiled Bytecode  |  2011-01-12  |  39KB  |  1,285 lines

  1. # Source Generated with Decompyle++
  2. # File: in.pyo (Python 2.6)
  3.  
  4. import sys
  5. import linecache
  6. import cmd
  7. import bdb
  8. from repr import Repr
  9. import os
  10. import re
  11. import pprint
  12. import traceback
  13.  
  14. class Restart(Exception):
  15.     pass
  16.  
  17. _repr = Repr()
  18. _repr.maxstring = 200
  19. _saferepr = _repr.repr
  20. __all__ = [
  21.     'run',
  22.     'pm',
  23.     'Pdb',
  24.     'runeval',
  25.     'runctx',
  26.     'runcall',
  27.     'set_trace',
  28.     'post_mortem',
  29.     'help']
  30.  
  31. def find_function(funcname, filename):
  32.     cre = re.compile('def\\s+%s\\s*[(]' % re.escape(funcname))
  33.     
  34.     try:
  35.         fp = open(filename)
  36.     except IOError:
  37.         return None
  38.  
  39.     lineno = 1
  40.     answer = None
  41.     while None:
  42.         line = fp.readline()
  43.         if line == '':
  44.             break
  45.         
  46.         if cre.match(line):
  47.             answer = (funcname, filename, lineno)
  48.             break
  49.         
  50.         lineno = lineno + 1
  51.         continue
  52.         return answer
  53.  
  54. line_prefix = '\n-> '
  55.  
  56. class Pdb(bdb.Bdb, cmd.Cmd):
  57.     
  58.     def __init__(self, completekey = 'tab', stdin = None, stdout = None):
  59.         bdb.Bdb.__init__(self)
  60.         cmd.Cmd.__init__(self, completekey, stdin, stdout)
  61.         if stdout:
  62.             self.use_rawinput = 0
  63.         
  64.         self.prompt = '(Pdb) '
  65.         self.aliases = { }
  66.         self.mainpyfile = ''
  67.         self._wait_for_mainpyfile = 0
  68.         
  69.         try:
  70.             import readline
  71.         except ImportError:
  72.             pass
  73.  
  74.         self.rcLines = []
  75.         if 'HOME' in os.environ:
  76.             envHome = os.environ['HOME']
  77.             
  78.             try:
  79.                 rcFile = open(os.path.join(envHome, '.pdbrc'))
  80.             except IOError:
  81.                 pass
  82.  
  83.             for line in rcFile.readlines():
  84.                 self.rcLines.append(line)
  85.             
  86.             rcFile.close()
  87.         
  88.         
  89.         try:
  90.             rcFile = open('.pdbrc')
  91.         except IOError:
  92.             pass
  93.  
  94.         for line in rcFile.readlines():
  95.             self.rcLines.append(line)
  96.         
  97.         rcFile.close()
  98.         self.commands = { }
  99.         self.commands_doprompt = { }
  100.         self.commands_silent = { }
  101.         self.commands_defining = False
  102.         self.commands_bnum = None
  103.  
  104.     
  105.     def reset(self):
  106.         bdb.Bdb.reset(self)
  107.         self.forget()
  108.  
  109.     
  110.     def forget(self):
  111.         self.lineno = None
  112.         self.stack = []
  113.         self.curindex = 0
  114.         self.curframe = None
  115.  
  116.     
  117.     def setup(self, f, t):
  118.         self.forget()
  119.         (self.stack, self.curindex) = self.get_stack(f, t)
  120.         self.curframe = self.stack[self.curindex][0]
  121.         self.execRcLines()
  122.  
  123.     
  124.     def execRcLines(self):
  125.         if self.rcLines:
  126.             rcLines = self.rcLines
  127.             self.rcLines = []
  128.             for line in rcLines:
  129.                 line = line[:-1]
  130.                 if len(line) > 0 and line[0] != '#':
  131.                     self.onecmd(line)
  132.                     continue
  133.             
  134.         
  135.  
  136.     
  137.     def user_call(self, frame, argument_list):
  138.         if self._wait_for_mainpyfile:
  139.             return None
  140.  
  141.     
  142.     def user_line(self, frame):
  143.         if self._wait_for_mainpyfile:
  144.             if self.mainpyfile != self.canonic(frame.f_code.co_filename) or frame.f_lineno <= 0:
  145.                 return None
  146.             self._wait_for_mainpyfile = 0
  147.         
  148.         if self.bp_commands(frame):
  149.             self.interaction(frame, None)
  150.         
  151.  
  152.     
  153.     def bp_commands(self, frame):
  154.         if getattr(self, 'currentbp', False) and self.currentbp in self.commands:
  155.             currentbp = self.currentbp
  156.             self.currentbp = 0
  157.             lastcmd_back = self.lastcmd
  158.             self.setup(frame, None)
  159.             for line in self.commands[currentbp]:
  160.                 self.onecmd(line)
  161.             
  162.             self.lastcmd = lastcmd_back
  163.             if not self.commands_silent[currentbp]:
  164.                 self.print_stack_entry(self.stack[self.curindex])
  165.             
  166.             if self.commands_doprompt[currentbp]:
  167.                 self.cmdloop()
  168.             
  169.             self.forget()
  170.             return None
  171.         return 1
  172.  
  173.     
  174.     def user_return(self, frame, return_value):
  175.         frame.f_locals['__return__'] = return_value
  176.         print >>self.stdout, '--Return--'
  177.         self.interaction(frame, None)
  178.  
  179.     
  180.     def user_exception(self, frame, exc_info):
  181.         (exc_type, exc_value, exc_traceback) = exc_info
  182.         frame.f_locals['__exception__'] = (exc_type, exc_value)
  183.         if type(exc_type) == type(''):
  184.             exc_type_name = exc_type
  185.         else:
  186.             exc_type_name = exc_type.__name__
  187.         print >>self.stdout, exc_type_name + ':', _saferepr(exc_value)
  188.         self.interaction(frame, exc_traceback)
  189.  
  190.     
  191.     def interaction(self, frame, traceback):
  192.         self.setup(frame, traceback)
  193.         self.print_stack_entry(self.stack[self.curindex])
  194.         self.cmdloop()
  195.         self.forget()
  196.  
  197.     
  198.     def displayhook(self, obj):
  199.         if obj is not None:
  200.             print repr(obj)
  201.         
  202.  
  203.     
  204.     def default(self, line):
  205.         if line[:1] == '!':
  206.             line = line[1:]
  207.         
  208.         locals = self.curframe.f_locals
  209.         globals = self.curframe.f_globals
  210.         
  211.         try:
  212.             code = compile(line + '\n', '<stdin>', 'single')
  213.             save_stdout = sys.stdout
  214.             save_stdin = sys.stdin
  215.             save_displayhook = sys.displayhook
  216.             
  217.             try:
  218.                 sys.stdin = self.stdin
  219.                 sys.stdout = self.stdout
  220.                 sys.displayhook = self.displayhook
  221.                 exec code in globals, locals
  222.             finally:
  223.                 sys.stdout = save_stdout
  224.                 sys.stdin = save_stdin
  225.                 sys.displayhook = save_displayhook
  226.  
  227.         except:
  228.             (t, v) = sys.exc_info()[:2]
  229.             if type(t) == type(''):
  230.                 exc_type_name = t
  231.             else:
  232.                 exc_type_name = t.__name__
  233.             print >>self.stdout, '***', exc_type_name + ':', v
  234.  
  235.  
  236.     
  237.     def precmd(self, line):
  238.         if not line.strip():
  239.             return line
  240.         args = line.split()
  241.         while args[0] in self.aliases:
  242.             line = self.aliases[args[0]]
  243.             ii = 1
  244.             for tmpArg in args[1:]:
  245.                 line = line.replace('%' + str(ii), tmpArg)
  246.                 ii = ii + 1
  247.             
  248.             line = line.replace('%*', ' '.join(args[1:]))
  249.             args = line.split()
  250.             continue
  251.             line.strip()
  252.         if args[0] != 'alias':
  253.             marker = line.find(';;')
  254.             if marker >= 0:
  255.                 next = line[marker + 2:].lstrip()
  256.                 self.cmdqueue.append(next)
  257.                 line = line[:marker].rstrip()
  258.             
  259.         
  260.         return line
  261.  
  262.     
  263.     def onecmd(self, line):
  264.         if not self.commands_defining:
  265.             return cmd.Cmd.onecmd(self, line)
  266.         return self.handle_command_def(line)
  267.  
  268.     
  269.     def handle_command_def(self, line):
  270.         (cmd, arg, line) = self.parseline(line)
  271.         if cmd == 'silent':
  272.             self.commands_silent[self.commands_bnum] = True
  273.             return None
  274.         if cmd == 'end':
  275.             self.cmdqueue = []
  276.             return 1
  277.         cmdlist = self.commands[self.commands_bnum]
  278.         
  279.         try:
  280.             func = getattr(self, 'do_' + cmd)
  281.         except AttributeError:
  282.             None if arg else cmd == 'silent'
  283.             None if arg else cmd == 'silent'
  284.             func = self.default
  285.         except:
  286.             None if arg else cmd == 'silent'
  287.  
  288.         if func.func_name in self.commands_resuming:
  289.             self.commands_doprompt[self.commands_bnum] = False
  290.             self.cmdqueue = []
  291.             return 1
  292.  
  293.     do_h = cmd.Cmd.do_help
  294.     
  295.     def do_commands(self, arg):
  296.         if not arg:
  297.             bnum = len(bdb.Breakpoint.bpbynumber) - 1
  298.         else:
  299.             
  300.             try:
  301.                 bnum = int(arg)
  302.             except:
  303.                 print >>self.stdout, 'Usage : commands [bnum]\n        ...\n        end'
  304.                 return None
  305.  
  306.         self.commands_bnum = bnum
  307.         self.commands[bnum] = []
  308.         self.commands_doprompt[bnum] = True
  309.         self.commands_silent[bnum] = False
  310.         prompt_back = self.prompt
  311.         self.prompt = '(com) '
  312.         self.commands_defining = True
  313.         self.cmdloop()
  314.         self.commands_defining = False
  315.         self.prompt = prompt_back
  316.  
  317.     
  318.     def do_break(self, arg, temporary = 0):
  319.         if not arg:
  320.             if self.breaks:
  321.                 print >>self.stdout, 'Num Type         Disp Enb   Where'
  322.                 for bp in bdb.Breakpoint.bpbynumber:
  323.                     if bp:
  324.                         bp.bpprint(self.stdout)
  325.                         continue
  326.                 
  327.             
  328.             return None
  329.         filename = None
  330.         lineno = None
  331.         cond = None
  332.         comma = arg.find(',')
  333.         if comma > 0:
  334.             cond = arg[comma + 1:].lstrip()
  335.             arg = arg[:comma].rstrip()
  336.         
  337.         colon = arg.rfind(':')
  338.         funcname = None
  339.         if colon >= 0:
  340.             filename = arg[:colon].rstrip()
  341.             f = self.lookupmodule(filename)
  342.             if not f:
  343.                 print >>self.stdout, '*** ', repr(filename),
  344.                 print >>self.stdout, 'not found from sys.path'
  345.                 return None
  346.             filename = f
  347.             arg = arg[colon + 1:].lstrip()
  348.             
  349.             try:
  350.                 lineno = int(arg)
  351.             except ValueError:
  352.                 f
  353.                 msg = f
  354.                 print >>self.stdout, '*** Bad lineno:', arg
  355.                 return None
  356.             
  357.  
  358.         f<EXCEPTION MATCH>ValueError
  359.         
  360.         try:
  361.             lineno = int(arg)
  362.         except ValueError:
  363.             f
  364.             f
  365.             f
  366.             
  367.             try:
  368.                 func = eval(arg, self.curframe.f_globals, self.curframe.f_locals)
  369.             except:
  370.                 func = arg
  371.  
  372.             
  373.             try:
  374.                 if hasattr(func, 'im_func'):
  375.                     func = func.im_func
  376.                 
  377.                 code = func.func_code
  378.                 funcname = code.co_name
  379.                 lineno = code.co_firstlineno
  380.                 filename = code.co_filename
  381.             (ok, filename, ln) = self.lineinfo(arg)
  382.             if not ok:
  383.                 print >>self.stdout, '*** The specified object',
  384.                 print >>self.stdout, repr(arg),
  385.                 print >>self.stdout, 'is not a function'
  386.                 print >>self.stdout, 'or was not found along sys.path.'
  387.                 return None
  388.             funcname = ok
  389.             lineno = int(ln)
  390.  
  391.         except:
  392.             ok
  393.  
  394.         if not filename:
  395.             filename = self.defaultFile()
  396.         
  397.         line = self.checkline(filename, lineno)
  398.         if line:
  399.             err = self.set_break(filename, line, temporary, cond, funcname)
  400.             if err:
  401.                 print >>self.stdout, '***', err
  402.             else:
  403.                 bp = self.get_breaks(filename, line)[-1]
  404.                 print >>self.stdout, 'Breakpoint %d at %s:%d' % (bp.number, bp.file, bp.line)
  405.         
  406.  
  407.     
  408.     def defaultFile(self):
  409.         filename = self.curframe.f_code.co_filename
  410.         if filename == '<string>' and self.mainpyfile:
  411.             filename = self.mainpyfile
  412.         
  413.         return filename
  414.  
  415.     do_b = do_break
  416.     
  417.     def do_tbreak(self, arg):
  418.         self.do_break(arg, 1)
  419.  
  420.     
  421.     def lineinfo(self, identifier):
  422.         failed = (None, None, None)
  423.         idstring = identifier.split("'")
  424.         if len(idstring) == 1:
  425.             id = idstring[0].strip()
  426.         elif len(idstring) == 3:
  427.             id = idstring[1].strip()
  428.         else:
  429.             return failed
  430.         if len(idstring) == 1 == '':
  431.             return failed
  432.         parts = id.split('.')
  433.         fname = self.defaultFile()
  434.         if len(parts) == 1:
  435.             item = parts[0]
  436.         else:
  437.             f = self.lookupmodule(parts[0])
  438.             if f:
  439.                 fname = f
  440.             
  441.             item = parts[1]
  442.         answer = find_function(item, fname)
  443.         if not answer:
  444.             pass
  445.         return failed
  446.  
  447.     
  448.     def checkline(self, filename, lineno):
  449.         line = linecache.getline(filename, lineno, self.curframe.f_globals)
  450.         if not line:
  451.             print >>self.stdout, 'End of file'
  452.             return 0
  453.         line = line.strip()
  454.         if not line and line[0] == '#' and line[:3] == '"""' or line[:3] == "'''":
  455.             print >>self.stdout, '*** Blank or comment'
  456.             return 0
  457.         return lineno
  458.  
  459.     
  460.     def do_enable(self, arg):
  461.         args = arg.split()
  462.         for i in args:
  463.             
  464.             try:
  465.                 i = int(i)
  466.             except ValueError:
  467.                 print >>self.stdout, 'Breakpoint index %r is not a number' % i
  468.                 continue
  469.  
  470.             if i <= i:
  471.                 pass
  472.             elif not i < len(bdb.Breakpoint.bpbynumber):
  473.                 print >>self.stdout, 'No breakpoint numbered', i
  474.                 continue
  475.             
  476.             bp = bdb.Breakpoint.bpbynumber[i]
  477.             if bp:
  478.                 bp.enable()
  479.                 continue
  480.             0
  481.         
  482.  
  483.     
  484.     def do_disable(self, arg):
  485.         args = arg.split()
  486.         for i in args:
  487.             
  488.             try:
  489.                 i = int(i)
  490.             except ValueError:
  491.                 print >>self.stdout, 'Breakpoint index %r is not a number' % i
  492.                 continue
  493.  
  494.             if i <= i:
  495.                 pass
  496.             elif not i < len(bdb.Breakpoint.bpbynumber):
  497.                 print >>self.stdout, 'No breakpoint numbered', i
  498.                 continue
  499.             
  500.             bp = bdb.Breakpoint.bpbynumber[i]
  501.             if bp:
  502.                 bp.disable()
  503.                 continue
  504.             0
  505.         
  506.  
  507.     
  508.     def do_condition(self, arg):
  509.         args = arg.split(' ', 1)
  510.         
  511.         try:
  512.             bpnum = int(args[0].strip())
  513.         except ValueError:
  514.             print >>self.stdout, 'Breakpoint index %r is not a number' % args[0]
  515.             return None
  516.  
  517.         
  518.         try:
  519.             cond = args[1]
  520.         except:
  521.             cond = None
  522.  
  523.         
  524.         try:
  525.             bp = bdb.Breakpoint.bpbynumber[bpnum]
  526.         except IndexError:
  527.             print >>self.stdout, 'Breakpoint index %r is not valid' % args[0]
  528.             return None
  529.  
  530.         if bp:
  531.             bp.cond = cond
  532.             if not cond:
  533.                 print >>self.stdout, 'Breakpoint', bpnum,
  534.                 print >>self.stdout, 'is now unconditional.'
  535.             
  536.         
  537.  
  538.     
  539.     def do_ignore(self, arg):
  540.         args = arg.split()
  541.         
  542.         try:
  543.             bpnum = int(args[0].strip())
  544.         except ValueError:
  545.             print >>self.stdout, 'Breakpoint index %r is not a number' % args[0]
  546.             return None
  547.  
  548.         
  549.         try:
  550.             count = int(args[1].strip())
  551.         except:
  552.             count = 0
  553.  
  554.         
  555.         try:
  556.             bp = bdb.Breakpoint.bpbynumber[bpnum]
  557.         except IndexError:
  558.             print >>self.stdout, 'Breakpoint index %r is not valid' % args[0]
  559.             return None
  560.  
  561.         if bp:
  562.             bp.ignore = count
  563.             if count > 0:
  564.                 reply = 'Will ignore next '
  565.                 if count > 1:
  566.                     reply = reply + '%d crossings' % count
  567.                 else:
  568.                     reply = reply + '1 crossing'
  569.                 print >>self.stdout, reply + ' of breakpoint %d.' % bpnum
  570.             else:
  571.                 print >>self.stdout, 'Will stop next time breakpoint',
  572.                 print >>self.stdout, bpnum, 'is reached.'
  573.         
  574.  
  575.     
  576.     def do_clear(self, arg):
  577.         if not arg:
  578.             
  579.             try:
  580.                 reply = raw_input('Clear all breaks? ')
  581.             except EOFError:
  582.                 reply = 'no'
  583.  
  584.             reply = reply.strip().lower()
  585.             if reply in ('y', 'yes'):
  586.                 self.clear_all_breaks()
  587.             
  588.             return None
  589.         if ':' in arg:
  590.             i = arg.rfind(':')
  591.             filename = arg[:i]
  592.             arg = arg[i + 1:]
  593.             
  594.             try:
  595.                 lineno = int(arg)
  596.             except ValueError:
  597.                 arg
  598.                 arg
  599.                 err = 'Invalid line number (%s)' % arg
  600.             except:
  601.                 arg
  602.  
  603.             err = self.clear_break(filename, lineno)
  604.             return None
  605.         numberlist = arg.split()
  606.         for i in numberlist:
  607.             
  608.             try:
  609.                 i = int(i)
  610.             except ValueError:
  611.                 ':' in arg
  612.                 ':' in arg
  613.                 arg
  614.                 print >>self.stdout, 'Breakpoint index %r is not a number' % i
  615.                 continue
  616.             except:
  617.                 ':' in arg
  618.  
  619.             if i <= i:
  620.                 pass
  621.             elif not i < len(bdb.Breakpoint.bpbynumber):
  622.                 print >>self.stdout, 'No breakpoint numbered', i
  623.                 continue
  624.             
  625.             err = self.clear_bpbynumber(i)
  626.             if err:
  627.                 print >>self.stdout, '***', err
  628.                 continue
  629.             print >>self.stdout, 'Deleted breakpoint', i
  630.         
  631.  
  632.     do_cl = do_clear
  633.     
  634.     def do_where(self, arg):
  635.         self.print_stack_trace()
  636.  
  637.     do_w = do_where
  638.     do_bt = do_where
  639.     
  640.     def do_up(self, arg):
  641.         if self.curindex == 0:
  642.             print >>self.stdout, '*** Oldest frame'
  643.         else:
  644.             self.curindex = self.curindex - 1
  645.             self.curframe = self.stack[self.curindex][0]
  646.             self.print_stack_entry(self.stack[self.curindex])
  647.             self.lineno = None
  648.  
  649.     do_u = do_up
  650.     
  651.     def do_down(self, arg):
  652.         if self.curindex + 1 == len(self.stack):
  653.             print >>self.stdout, '*** Newest frame'
  654.         else:
  655.             self.curindex = self.curindex + 1
  656.             self.curframe = self.stack[self.curindex][0]
  657.             self.print_stack_entry(self.stack[self.curindex])
  658.             self.lineno = None
  659.  
  660.     do_d = do_down
  661.     
  662.     def do_until(self, arg):
  663.         self.set_until(self.curframe)
  664.         return 1
  665.  
  666.     do_unt = do_until
  667.     
  668.     def do_step(self, arg):
  669.         self.set_step()
  670.         return 1
  671.  
  672.     do_s = do_step
  673.     
  674.     def do_next(self, arg):
  675.         self.set_next(self.curframe)
  676.         return 1
  677.  
  678.     do_n = do_next
  679.     
  680.     def do_run(self, arg):
  681.         if arg:
  682.             import shlex as shlex
  683.             argv0 = sys.argv[0:1]
  684.             sys.argv = shlex.split(arg)
  685.             sys.argv[:0] = argv0
  686.         
  687.         raise Restart
  688.  
  689.     do_restart = do_run
  690.     
  691.     def do_return(self, arg):
  692.         self.set_return(self.curframe)
  693.         return 1
  694.  
  695.     do_r = do_return
  696.     
  697.     def do_continue(self, arg):
  698.         self.set_continue()
  699.         return 1
  700.  
  701.     do_c = do_cont = do_continue
  702.     
  703.     def do_jump(self, arg):
  704.         if self.curindex + 1 != len(self.stack):
  705.             print >>self.stdout, '*** You can only jump within the bottom frame'
  706.             return None
  707.         
  708.         try:
  709.             arg = int(arg)
  710.         except ValueError:
  711.             self.curindex + 1 != len(self.stack)
  712.             self.curindex + 1 != len(self.stack)
  713.             print >>self.stdout, "*** The 'jump' command requires a line number."
  714.         except:
  715.             self.curindex + 1 != len(self.stack)
  716.  
  717.         
  718.         try:
  719.             self.curframe.f_lineno = arg
  720.             self.stack[self.curindex] = (self.stack[self.curindex][0], arg)
  721.             self.print_stack_entry(self.stack[self.curindex])
  722.         except ValueError:
  723.             self.curindex + 1 != len(self.stack)
  724.             e = self.curindex + 1 != len(self.stack)
  725.             print >>self.stdout, '*** Jump failed:', e
  726.         except:
  727.             self.curindex + 1 != len(self.stack)
  728.  
  729.  
  730.     do_j = do_jump
  731.     
  732.     def do_debug(self, arg):
  733.         sys.settrace(None)
  734.         globals = self.curframe.f_globals
  735.         locals = self.curframe.f_locals
  736.         p = Pdb(self.completekey, self.stdin, self.stdout)
  737.         p.prompt = '(%s) ' % self.prompt.strip()
  738.         print >>self.stdout, 'ENTERING RECURSIVE DEBUGGER'
  739.         sys.call_tracing(p.run, (arg, globals, locals))
  740.         print >>self.stdout, 'LEAVING RECURSIVE DEBUGGER'
  741.         sys.settrace(self.trace_dispatch)
  742.         self.lastcmd = p.lastcmd
  743.  
  744.     
  745.     def do_quit(self, arg):
  746.         self._user_requested_quit = 1
  747.         self.set_quit()
  748.         return 1
  749.  
  750.     do_q = do_quit
  751.     do_exit = do_quit
  752.     
  753.     def do_EOF(self, arg):
  754.         print >>self.stdout
  755.         self._user_requested_quit = 1
  756.         self.set_quit()
  757.         return 1
  758.  
  759.     
  760.     def do_args(self, arg):
  761.         f = self.curframe
  762.         co = f.f_code
  763.         dict = f.f_locals
  764.         n = co.co_argcount
  765.         if co.co_flags & 4:
  766.             n = n + 1
  767.         
  768.         if co.co_flags & 8:
  769.             n = n + 1
  770.         
  771.         for i in range(n):
  772.             name = co.co_varnames[i]
  773.             print >>self.stdout, name, '=',
  774.             if name in dict:
  775.                 print >>self.stdout, dict[name]
  776.                 continue
  777.             print >>self.stdout, '*** undefined ***'
  778.         
  779.  
  780.     do_a = do_args
  781.     
  782.     def do_retval(self, arg):
  783.         if '__return__' in self.curframe.f_locals:
  784.             print >>self.stdout, self.curframe.f_locals['__return__']
  785.         else:
  786.             print >>self.stdout, '*** Not yet returned!'
  787.  
  788.     do_rv = do_retval
  789.     
  790.     def _getval(self, arg):
  791.         
  792.         try:
  793.             return eval(arg, self.curframe.f_globals, self.curframe.f_locals)
  794.         except:
  795.             (t, v) = sys.exc_info()[:2]
  796.             if isinstance(t, str):
  797.                 exc_type_name = t
  798.             else:
  799.                 exc_type_name = t.__name__
  800.             print >>self.stdout, '***', exc_type_name + ':', repr(v)
  801.             raise 
  802.  
  803.  
  804.     
  805.     def do_p(self, arg):
  806.         
  807.         try:
  808.             print >>self.stdout, repr(self._getval(arg))
  809.         except:
  810.             pass
  811.  
  812.  
  813.     
  814.     def do_pp(self, arg):
  815.         
  816.         try:
  817.             pprint.pprint(self._getval(arg), self.stdout)
  818.         except:
  819.             pass
  820.  
  821.  
  822.     
  823.     def do_list(self, arg):
  824.         self.lastcmd = 'list'
  825.         last = None
  826.         if arg:
  827.             
  828.             try:
  829.                 x = eval(arg, { }, { })
  830.                 if type(x) == type(()):
  831.                     (first, last) = x
  832.                     first = int(first)
  833.                     last = int(last)
  834.                     if last < first:
  835.                         last = first + last
  836.                     
  837.                 else:
  838.                     first = max(1, int(x) - 5)
  839.             print >>self.stdout, '*** Error in argument:', repr(arg)
  840.             return None
  841.  
  842.         elif self.lineno is None:
  843.             first = max(1, self.curframe.f_lineno - 5)
  844.         else:
  845.             first = self.lineno + 1
  846.         if last is None:
  847.             last = first + 10
  848.         
  849.         filename = self.curframe.f_code.co_filename
  850.         breaklist = self.get_file_breaks(filename)
  851.         
  852.         try:
  853.             for lineno in range(first, last + 1):
  854.                 line = linecache.getline(filename, lineno, self.curframe.f_globals)
  855.                 if not line:
  856.                     print >>self.stdout, '[EOF]'
  857.                     break
  858.                     continue
  859.                 s = repr(lineno).rjust(3)
  860.                 if len(s) < 4:
  861.                     s = s + ' '
  862.                 
  863.                 if lineno in breaklist:
  864.                     s = s + 'B'
  865.                 else:
  866.                     s = s + ' '
  867.                 if lineno == self.curframe.f_lineno:
  868.                     s = s + '->'
  869.                 
  870.                 print >>self.stdout, s + '\t' + line,
  871.                 self.lineno = lineno
  872.         except KeyboardInterrupt:
  873.             pass
  874.  
  875.  
  876.     do_l = do_list
  877.     
  878.     def do_whatis(self, arg):
  879.         
  880.         try:
  881.             value = eval(arg, self.curframe.f_globals, self.curframe.f_locals)
  882.         except:
  883.             (t, v) = sys.exc_info()[:2]
  884.             if type(t) == type(''):
  885.                 exc_type_name = t
  886.             else:
  887.                 exc_type_name = t.__name__
  888.             print >>self.stdout, '***', exc_type_name + ':', repr(v)
  889.             return None
  890.  
  891.         code = None
  892.         
  893.         try:
  894.             code = value.func_code
  895.         except:
  896.             pass
  897.  
  898.         if code:
  899.             print >>self.stdout, 'Function', code.co_name
  900.             return None
  901.         
  902.         try:
  903.             code = value.im_func.func_code
  904.         except:
  905.             code
  906.  
  907.         if code:
  908.             print >>self.stdout, 'Method', code.co_name
  909.             return None
  910.         print >>self.stdout, type(value)
  911.  
  912.     
  913.     def do_alias(self, arg):
  914.         args = arg.split()
  915.         if len(args) == 0:
  916.             keys = self.aliases.keys()
  917.             keys.sort()
  918.             for alias in keys:
  919.                 print >>self.stdout, '%s = %s' % (alias, self.aliases[alias])
  920.             
  921.             return None
  922.  
  923.     
  924.     def do_unalias(self, arg):
  925.         args = arg.split()
  926.         if len(args) == 0:
  927.             return None
  928.         if args[0] in self.aliases:
  929.             del self.aliases[args[0]]
  930.         
  931.  
  932.     commands_resuming = [
  933.         'do_continue',
  934.         'do_step',
  935.         'do_next',
  936.         'do_return',
  937.         'do_quit',
  938.         'do_jump']
  939.     
  940.     def print_stack_trace(self):
  941.         
  942.         try:
  943.             for frame_lineno in self.stack:
  944.                 self.print_stack_entry(frame_lineno)
  945.         except KeyboardInterrupt:
  946.             pass
  947.  
  948.  
  949.     
  950.     def print_stack_entry(self, frame_lineno, prompt_prefix = line_prefix):
  951.         (frame, lineno) = frame_lineno
  952.         if frame is self.curframe:
  953.             print >>self.stdout, '>',
  954.         else:
  955.             print >>self.stdout, ' ',
  956.         print >>self.stdout, self.format_stack_entry(frame_lineno, prompt_prefix)
  957.  
  958.     
  959.     def help_help(self):
  960.         self.help_h()
  961.  
  962.     
  963.     def help_h(self):
  964.         print >>self.stdout, 'h(elp)\nWithout argument, print the list of available commands.\nWith a command name as argument, print help about that command\n"help pdb" pipes the full documentation file to the $PAGER\n"help exec" gives help on the ! command'
  965.  
  966.     
  967.     def help_where(self):
  968.         self.help_w()
  969.  
  970.     
  971.     def help_w(self):
  972.         print >>self.stdout, 'w(here)\nPrint a stack trace, with the most recent frame at the bottom.\nAn arrow indicates the "current frame", which determines the\ncontext of most commands.  \'bt\' is an alias for this command.'
  973.  
  974.     help_bt = help_w
  975.     
  976.     def help_down(self):
  977.         self.help_d()
  978.  
  979.     
  980.     def help_d(self):
  981.         print >>self.stdout, 'd(own)\nMove the current frame one level down in the stack trace\n(to a newer frame).'
  982.  
  983.     
  984.     def help_up(self):
  985.         self.help_u()
  986.  
  987.     
  988.     def help_u(self):
  989.         print >>self.stdout, 'u(p)\nMove the current frame one level up in the stack trace\n(to an older frame).'
  990.  
  991.     
  992.     def help_break(self):
  993.         self.help_b()
  994.  
  995.     
  996.     def help_b(self):
  997.         print >>self.stdout, "b(reak) ([file:]lineno | function) [, condition]\nWith a line number argument, set a break there in the current\nfile.  With a function name, set a break at first executable line\nof that function.  Without argument, list all breaks.  If a second\nargument is present, it is a string specifying an expression\nwhich must evaluate to true before the breakpoint is honored.\n\nThe line number may be prefixed with a filename and a colon,\nto specify a breakpoint in another file (probably one that\nhasn't been loaded yet).  The file is searched for on sys.path;\nthe .py suffix may be omitted."
  998.  
  999.     
  1000.     def help_clear(self):
  1001.         self.help_cl()
  1002.  
  1003.     
  1004.     def help_cl(self):
  1005.         print >>self.stdout, 'cl(ear) filename:lineno'
  1006.         print >>self.stdout, 'cl(ear) [bpnumber [bpnumber...]]\nWith a space separated list of breakpoint numbers, clear\nthose breakpoints.  Without argument, clear all breaks (but\nfirst ask confirmation).  With a filename:lineno argument,\nclear all breaks at that line in that file.\n\nNote that the argument is different from previous versions of\nthe debugger (in python distributions 1.5.1 and before) where\na linenumber was used instead of either filename:lineno or\nbreakpoint numbers.'
  1007.  
  1008.     
  1009.     def help_tbreak(self):
  1010.         print >>self.stdout, 'tbreak  same arguments as break, but breakpoint is\nremoved when first hit.'
  1011.  
  1012.     
  1013.     def help_enable(self):
  1014.         print >>self.stdout, 'enable bpnumber [bpnumber ...]\nEnables the breakpoints given as a space separated list of\nbp numbers.'
  1015.  
  1016.     
  1017.     def help_disable(self):
  1018.         print >>self.stdout, 'disable bpnumber [bpnumber ...]\nDisables the breakpoints given as a space separated list of\nbp numbers.'
  1019.  
  1020.     
  1021.     def help_ignore(self):
  1022.         print >>self.stdout, 'ignore bpnumber count\nSets the ignore count for the given breakpoint number.  A breakpoint\nbecomes active when the ignore count is zero.  When non-zero, the\ncount is decremented each time the breakpoint is reached and the\nbreakpoint is not disabled and any associated condition evaluates\nto true.'
  1023.  
  1024.     
  1025.     def help_condition(self):
  1026.         print >>self.stdout, 'condition bpnumber str_condition\nstr_condition is a string specifying an expression which\nmust evaluate to true before the breakpoint is honored.\nIf str_condition is absent, any existing condition is removed;\ni.e., the breakpoint is made unconditional.'
  1027.  
  1028.     
  1029.     def help_step(self):
  1030.         self.help_s()
  1031.  
  1032.     
  1033.     def help_s(self):
  1034.         print >>self.stdout, 's(tep)\nExecute the current line, stop at the first possible occasion\n(either in a function that is called or in the current function).'
  1035.  
  1036.     
  1037.     def help_until(self):
  1038.         self.help_unt()
  1039.  
  1040.     
  1041.     def help_unt(self):
  1042.         print 'unt(il)\nContinue execution until the line with a number greater than the current\none is reached or until the current frame returns'
  1043.  
  1044.     
  1045.     def help_next(self):
  1046.         self.help_n()
  1047.  
  1048.     
  1049.     def help_n(self):
  1050.         print >>self.stdout, 'n(ext)\nContinue execution until the next line in the current function\nis reached or it returns.'
  1051.  
  1052.     
  1053.     def help_return(self):
  1054.         self.help_r()
  1055.  
  1056.     
  1057.     def help_r(self):
  1058.         print >>self.stdout, 'r(eturn)\nContinue execution until the current function returns.'
  1059.  
  1060.     
  1061.     def help_continue(self):
  1062.         self.help_c()
  1063.  
  1064.     
  1065.     def help_cont(self):
  1066.         self.help_c()
  1067.  
  1068.     
  1069.     def help_c(self):
  1070.         print >>self.stdout, 'c(ont(inue))\nContinue execution, only stop when a breakpoint is encountered.'
  1071.  
  1072.     
  1073.     def help_jump(self):
  1074.         self.help_j()
  1075.  
  1076.     
  1077.     def help_j(self):
  1078.         print >>self.stdout, 'j(ump) lineno\nSet the next line that will be executed.'
  1079.  
  1080.     
  1081.     def help_debug(self):
  1082.         print >>self.stdout, 'debug code\nEnter a recursive debugger that steps through the code argument\n(which is an arbitrary expression or statement to be executed\nin the current environment).'
  1083.  
  1084.     
  1085.     def help_list(self):
  1086.         self.help_l()
  1087.  
  1088.     
  1089.     def help_l(self):
  1090.         print >>self.stdout, 'l(ist) [first [,last]]\nList source code for the current file.\nWithout arguments, list 11 lines around the current line\nor continue the previous listing.\nWith one argument, list 11 lines starting at that line.\nWith two arguments, list the given range;\nif the second argument is less than the first, it is a count.'
  1091.  
  1092.     
  1093.     def help_args(self):
  1094.         self.help_a()
  1095.  
  1096.     
  1097.     def help_a(self):
  1098.         print >>self.stdout, 'a(rgs)\nPrint the arguments of the current function.'
  1099.  
  1100.     
  1101.     def help_p(self):
  1102.         print >>self.stdout, 'p expression\nPrint the value of the expression.'
  1103.  
  1104.     
  1105.     def help_pp(self):
  1106.         print >>self.stdout, 'pp expression\nPretty-print the value of the expression.'
  1107.  
  1108.     
  1109.     def help_exec(self):
  1110.         print >>self.stdout, "(!) statement\nExecute the (one-line) statement in the context of\nthe current stack frame.\nThe exclamation point can be omitted unless the first word\nof the statement resembles a debugger command.\nTo assign to a global variable you must always prefix the\ncommand with a 'global' command, e.g.:\n(Pdb) global list_options; list_options = ['-l']\n(Pdb)"
  1111.  
  1112.     
  1113.     def help_run(self):
  1114.         print 'run [args...]\nRestart the debugged python program. If a string is supplied, it is\nsplitted with "shlex" and the result is used as the new sys.argv.\nHistory, breakpoints, actions and debugger options are preserved.\n"restart" is an alias for "run".'
  1115.  
  1116.     help_restart = help_run
  1117.     
  1118.     def help_quit(self):
  1119.         self.help_q()
  1120.  
  1121.     
  1122.     def help_q(self):
  1123.         print >>self.stdout, 'q(uit) or exit - Quit from the debugger.\nThe program being executed is aborted.'
  1124.  
  1125.     help_exit = help_q
  1126.     
  1127.     def help_whatis(self):
  1128.         print >>self.stdout, 'whatis arg\nPrints the type of the argument.'
  1129.  
  1130.     
  1131.     def help_EOF(self):
  1132.         print >>self.stdout, 'EOF\nHandles the receipt of EOF as a command.'
  1133.  
  1134.     
  1135.     def help_alias(self):
  1136.         print >>self.stdout, 'alias [name [command [parameter parameter ...] ]]\nCreates an alias called \'name\' the executes \'command\'.  The command\nmust *not* be enclosed in quotes.  Replaceable parameters are\nindicated by %1, %2, and so on, while %* is replaced by all the\nparameters.  If no command is given, the current alias for name\nis shown. If no name is given, all aliases are listed.\n\nAliases may be nested and can contain anything that can be\nlegally typed at the pdb prompt.  Note!  You *can* override\ninternal pdb commands with aliases!  Those internal commands\nare then hidden until the alias is removed.  Aliasing is recursively\napplied to the first word of the command line; all other words\nin the line are left alone.\n\nSome useful aliases (especially when placed in the .pdbrc file) are:\n\n#Print instance variables (usage "pi classInst")\nalias pi for k in %1.__dict__.keys(): print "%1.",k,"=",%1.__dict__[k]\n\n#Print instance variables in self\nalias ps pi self\n'
  1137.  
  1138.     
  1139.     def help_unalias(self):
  1140.         print >>self.stdout, 'unalias name\nDeletes the specified alias.'
  1141.  
  1142.     
  1143.     def help_commands(self):
  1144.         print >>self.stdout, "commands [bpnumber]\n(com) ...\n(com) end\n(Pdb)\n\nSpecify a list of commands for breakpoint number bpnumber.  The\ncommands themselves appear on the following lines.  Type a line\ncontaining just 'end' to terminate the commands.\n\nTo remove all commands from a breakpoint, type commands and\nfollow it immediately with  end; that is, give no commands.\n\nWith no bpnumber argument, commands refers to the last\nbreakpoint set.\n\nYou can use breakpoint commands to start your program up again.\nSimply use the continue command, or step, or any other\ncommand that resumes execution.\n\nSpecifying any command resuming execution (currently continue,\nstep, next, return, jump, quit and their abbreviations) terminates\nthe command list (as if that command was immediately followed by end).\nThis is because any time you resume execution\n(even with a simple next or step), you may encounter\nanother breakpoint--which could have its own command list, leading to\nambiguities about which list to execute.\n\n   If you use the 'silent' command in the command list, the\nusual message about stopping at a breakpoint is not printed.  This may\nbe desirable for breakpoints that are to print a specific message and\nthen continue.  If none of the other commands print anything, you\nsee no sign that the breakpoint was reached.\n"
  1145.  
  1146.     
  1147.     def help_pdb(self):
  1148.         help()
  1149.  
  1150.     
  1151.     def lookupmodule(self, filename):
  1152.         if os.path.isabs(filename) and os.path.exists(filename):
  1153.             return filename
  1154.         f = os.path.join(sys.path[0], filename)
  1155.         if os.path.exists(f) and self.canonic(f) == self.mainpyfile:
  1156.             return f
  1157.         (root, ext) = os.path.splitext(filename)
  1158.         if os.path.isabs(filename):
  1159.             return filename
  1160.         for dirname in sys.path:
  1161.             while os.path.islink(dirname):
  1162.                 dirname = os.readlink(dirname)
  1163.                 continue
  1164.                 os.path.isabs(filename)
  1165.             fullname = os.path.join(dirname, filename)
  1166.             if os.path.exists(fullname):
  1167.                 return fullname
  1168.         
  1169.  
  1170.     
  1171.     def _runscript(self, filename):
  1172.         import __main__
  1173.         __main__.__dict__.clear()
  1174.         __main__.__dict__.update({
  1175.             '__name__': '__main__',
  1176.             '__file__': filename,
  1177.             '__builtins__': __builtins__ })
  1178.         self._wait_for_mainpyfile = 1
  1179.         self.mainpyfile = self.canonic(filename)
  1180.         self._user_requested_quit = 0
  1181.         statement = 'execfile( "%s")' % filename
  1182.         self.run(statement)
  1183.  
  1184.  
  1185.  
  1186. def run(statement, globals = None, locals = None):
  1187.     Pdb().run(statement, globals, locals)
  1188.  
  1189.  
  1190. def runeval(expression, globals = None, locals = None):
  1191.     return Pdb().runeval(expression, globals, locals)
  1192.  
  1193.  
  1194. def runctx(statement, globals, locals):
  1195.     run(statement, globals, locals)
  1196.  
  1197.  
  1198. def runcall(*args, **kwds):
  1199.     return Pdb().runcall(*args, **kwds)
  1200.  
  1201.  
  1202. def set_trace():
  1203.     Pdb().set_trace(sys._getframe().f_back)
  1204.  
  1205.  
  1206. def post_mortem(t = None):
  1207.     if t is None:
  1208.         t = sys.exc_info()[2]
  1209.         if t is None:
  1210.             raise ValueError('A valid traceback must be passed if no exception is being handled')
  1211.         t is None
  1212.     
  1213.     p = Pdb()
  1214.     p.reset()
  1215.     p.interaction(None, t)
  1216.  
  1217.  
  1218. def pm():
  1219.     post_mortem(sys.last_traceback)
  1220.  
  1221. TESTCMD = 'import x; x.main()'
  1222.  
  1223. def test():
  1224.     run(TESTCMD)
  1225.  
  1226.  
  1227. def help():
  1228.     for dirname in sys.path:
  1229.         fullname = os.path.join(dirname, 'pdb.doc')
  1230.         if os.path.exists(fullname):
  1231.             sts = os.system('${PAGER-more} ' + fullname)
  1232.             if sts:
  1233.                 print '*** Pager exit status:', sts
  1234.             
  1235.             break
  1236.             continue
  1237.     else:
  1238.         print 'Sorry, can\'t find the help file "pdb.doc"', 'along the Python search path'
  1239.  
  1240.  
  1241. def main():
  1242.     if not sys.argv[1:] or sys.argv[1] in ('--help', '-h'):
  1243.         print 'usage: pdb.py scriptfile [arg] ...'
  1244.         sys.exit(2)
  1245.     
  1246.     mainpyfile = sys.argv[1]
  1247.     if not os.path.exists(mainpyfile):
  1248.         print 'Error:', mainpyfile, 'does not exist'
  1249.         sys.exit(1)
  1250.     
  1251.     del sys.argv[0]
  1252.     sys.path[0] = os.path.dirname(mainpyfile)
  1253.     pdb = Pdb()
  1254.     while None:
  1255.         
  1256.         try:
  1257.             pdb._runscript(mainpyfile)
  1258.             if pdb._user_requested_quit:
  1259.                 break
  1260.             
  1261.             print 'The program finished and will be restarted'
  1262.         continue
  1263.         except Restart:
  1264.             print 'Restarting', mainpyfile, 'with arguments:'
  1265.             print '\t' + ' '.join(sys.argv[1:])
  1266.             continue
  1267.             except SystemExit:
  1268.                 print 'The program exited via sys.exit(). Exit status: ', sys.exc_info()[1]
  1269.                 continue
  1270.                 traceback.print_exc()
  1271.                 print 'Uncaught exception. Entering post mortem debugging'
  1272.                 print "Running 'cont' or 'step' will restart the program"
  1273.                 t = sys.exc_info()[2]
  1274.                 pdb.interaction(None, t)
  1275.                 print 'Post mortem debugger finished. The ' + mainpyfile + ' will be restarted'
  1276.                 continue
  1277.             
  1278.             return None
  1279.  
  1280.  
  1281. if __name__ == '__main__':
  1282.     import pdb
  1283.     pdb.main()
  1284.  
  1285.