| 1 |  |  | from __future__ import absolute_import | 
            
                                                                                                            
                            
            
                                    
            
            
                | 2 |  |  |  | 
            
                                                                                                            
                            
            
                                    
            
            
                | 3 |  |  | import ast | 
            
                                                                                                            
                            
            
                                    
            
            
                | 4 |  |  | import os | 
            
                                                                                                            
                            
            
                                    
            
            
                | 5 |  |  | import pdb | 
            
                                                                                                            
                            
            
                                    
            
            
                | 6 |  |  | import sys | 
            
                                                                                                            
                            
            
                                    
            
            
                | 7 |  |  |  | 
            
                                                                                                            
                            
            
                                    
            
            
                | 8 |  |  | from colorama import AnsiToWin32 | 
            
                                                                                                            
                            
            
                                    
            
            
                | 9 |  |  | from colorama import Back | 
            
                                                                                                            
                            
            
                                    
            
            
                | 10 |  |  | from colorama import Fore | 
            
                                                                                                            
                            
            
                                    
            
            
                | 11 |  |  | from colorama import Style | 
            
                                                                                                            
                            
            
                                    
            
            
                | 12 |  |  | from fields import Fields | 
            
                                                                                                            
                            
            
                                    
            
            
                | 13 |  |  | from six import string_types | 
            
                                                                                                            
                            
            
                                    
            
            
                | 14 |  |  |  | 
            
                                                                                                            
                            
            
                                    
            
            
                | 15 |  |  | DEFAULT_MIN_FILENAME_ALIGNMENT = 40 | 
            
                                                                                                            
                            
            
                                    
            
            
                | 16 |  |  | NO_COLORS = { | 
            
                                                                                                            
                            
            
                                    
            
            
                | 17 |  |  |     'reset': '', | 
            
                                                                                                            
                            
            
                                    
            
            
                | 18 |  |  |     'filename': '', | 
            
                                                                                                            
                            
            
                                    
            
            
                | 19 |  |  |     'colon': '', | 
            
                                                                                                            
                            
            
                                    
            
            
                | 20 |  |  |     'lineno': '', | 
            
                                                                                                            
                            
            
                                    
            
            
                | 21 |  |  |     'kind': '', | 
            
                                                                                                            
                            
            
                                    
            
            
                | 22 |  |  |     'continuation': '', | 
            
                                                                                                            
                            
            
                                    
            
            
                | 23 |  |  |     'return': '', | 
            
                                                                                                            
                            
            
                                    
            
            
                | 24 |  |  |     'exception': '', | 
            
                                                                                                            
                            
            
                                    
            
            
                | 25 |  |  |     'detail': '', | 
            
                                                                                                            
                            
            
                                    
            
            
                | 26 |  |  |     'vars': '', | 
            
                                                                                                            
                            
            
                                    
            
            
                | 27 |  |  |     'vars-name': '', | 
            
                                                                                                            
                            
            
                                    
            
            
                | 28 |  |  |     'call': '', | 
            
                                                                                                            
                            
            
                                    
            
            
                | 29 |  |  |     'line': '', | 
            
                                                                                                            
                            
            
                                    
            
            
                | 30 |  |  |     'internal-failure': '', | 
            
                                                                                                            
                            
            
                                    
            
            
                | 31 |  |  |     'internal-detail': '', | 
            
                                                                                                            
                            
            
                                    
            
            
                | 32 |  |  |     'source-failure': '', | 
            
                                                                                                            
                            
            
                                    
            
            
                | 33 |  |  |     'source-detail': '', | 
            
                                                                                                            
                            
            
                                    
            
            
                | 34 |  |  | } | 
            
                                                                                                            
                            
            
                                    
            
            
                | 35 |  |  | EVENT_COLORS = { | 
            
                                                                                                            
                            
            
                                    
            
            
                | 36 |  |  |     'reset': Style.RESET_ALL, | 
            
                                                                                                            
                            
            
                                    
            
            
                | 37 |  |  |     'filename': '', | 
            
                                                                                                            
                            
            
                                    
            
            
                | 38 |  |  |     'colon': Fore.BLACK + Style.BRIGHT, | 
            
                                                                                                            
                            
            
                                    
            
            
                | 39 |  |  |     'lineno': Style.RESET_ALL, | 
            
                                                                                                            
                            
            
                                    
            
            
                | 40 |  |  |     'kind': Fore.CYAN, | 
            
                                                                                                            
                            
            
                                    
            
            
                | 41 |  |  |     'continuation': Fore.BLUE, | 
            
                                                                                                            
                            
            
                                    
            
            
                | 42 |  |  |     'return': Style.BRIGHT + Fore.GREEN, | 
            
                                                                                                            
                            
            
                                    
            
            
                | 43 |  |  |     'exception': Style.BRIGHT + Fore.RED, | 
            
                                                                                                            
                            
            
                                    
            
            
                | 44 |  |  |     'detail': Style.NORMAL, | 
            
                                                                                                            
                            
            
                                    
            
            
                | 45 |  |  |     'vars': Style.RESET_ALL + Fore.MAGENTA, | 
            
                                                                                                            
                            
            
                                    
            
            
                | 46 |  |  |     'vars-name': Style.BRIGHT, | 
            
                                                                                                            
                            
            
                                    
            
            
                | 47 |  |  |     'internal-failure': Back.RED + Style.BRIGHT + Fore.RED, | 
            
                                                                                                            
                            
            
                                    
            
            
                | 48 |  |  |     'internal-detail': Fore.WHITE, | 
            
                                                                                                            
                            
            
                                    
            
            
                | 49 |  |  |     'source-failure': Style.BRIGHT + Back.YELLOW + Fore.YELLOW, | 
            
                                                                                                            
                            
            
                                    
            
            
                | 50 |  |  |     'source-detail': Fore.WHITE, | 
            
                                                                                                            
                            
            
                                    
            
            
                | 51 |  |  | } | 
            
                                                                                                            
                            
            
                                    
            
            
                | 52 |  |  | CODE_COLORS = { | 
            
                                                                                                            
                            
            
                                    
            
            
                | 53 |  |  |     'call': Fore.RESET + Style.BRIGHT, | 
            
                                                                                                            
                            
            
                                    
            
            
                | 54 |  |  |     'line': Fore.RESET, | 
            
                                                                                                            
                            
            
                                    
            
            
                | 55 |  |  |     'return': Fore.YELLOW, | 
            
                                                                                                            
                            
            
                                    
            
            
                | 56 |  |  |     'exception': Fore.RED, | 
            
                                                                                                            
                            
            
                                    
            
            
                | 57 |  |  | } | 
            
                                                                                                            
                            
            
                                    
            
            
                | 58 |  |  |  | 
            
                                                                                                            
                            
            
                                    
            
            
                | 59 |  |  |  | 
            
                                                                                                            
                            
            
                                    
            
            
                | 60 |  |  | class Action(object): | 
            
                                                                                                            
                            
            
                                    
            
            
                | 61 |  |  |     def __call__(self, event): | 
            
                                                                                                            
                            
            
                                    
            
            
                | 62 |  |  |         raise NotImplementedError() | 
            
                                                                                                            
                            
            
                                    
            
            
                | 63 |  |  |  | 
            
                                                                                                            
                            
            
                                    
            
            
                | 64 |  |  |  | 
            
                                                                                                            
                            
            
                                    
            
            
                | 65 |  |  | class Debugger(Fields.klass.kwargs, Action): | 
            
                                                                                                            
                            
            
                                    
            
            
                | 66 |  |  |     """ | 
            
                                                                                                            
                            
            
                                    
            
            
                | 67 |  |  |     An action that starts ``pdb``. | 
            
                                                                                                            
                            
            
                                    
            
            
                | 68 |  |  |     """ | 
            
                                                                                                            
                            
            
                                    
            
            
                | 69 |  |  |  | 
            
                                                                                                            
                            
            
                                    
            
            
                | 70 |  |  |     def __init__(self, klass=pdb.Pdb, **kwargs): | 
            
                                                                                                            
                            
            
                                    
            
            
                | 71 |  |  |         self.klass = klass | 
            
                                                                                                            
                            
            
                                    
            
            
                | 72 |  |  |         self.kwargs = kwargs | 
            
                                                                                                            
                            
            
                                    
            
            
                | 73 |  |  |  | 
            
                                                                                                            
                            
            
                                    
            
            
                | 74 |  |  |     def __call__(self, event): | 
            
                                                                                                            
                            
            
                                    
            
            
                | 75 |  |  |         """ | 
            
                                                                                                            
                            
            
                                    
            
            
                | 76 |  |  |         Runs a ``pdb.set_trace`` at the matching frame. | 
            
                                                                                                            
                            
            
                                    
            
            
                | 77 |  |  |         """ | 
            
                                                                                                            
                            
            
                                    
            
            
                | 78 |  |  |         self.klass(**self.kwargs).set_trace(event.frame) | 
            
                                                                                                            
                            
            
                                    
            
            
                | 79 |  |  |  | 
            
                                                                                                            
                            
            
                                    
            
            
                | 80 |  |  |  | 
            
                                                                                                            
                            
            
                                    
            
            
                | 81 |  |  | class ColorStreamAction(Action): | 
            
                                                                                                            
                            
            
                                    
            
            
                | 82 |  |  |     _stream_cache = {} | 
            
                                                                                                            
                            
            
                                    
            
            
                | 83 |  |  |     _stream = None | 
            
                                                                                                            
                            
            
                                    
            
            
                | 84 |  |  |     _tty = None | 
            
                                                                                                            
                            
            
                                    
            
            
                | 85 |  |  |     default_stream = sys.stderr | 
            
                                                                                                            
                            
            
                                    
            
            
                | 86 |  |  |     force_colors = False | 
            
                                                                                                            
                                                                
            
                                    
            
            
                | 87 |  |  |  | 
            
                                                                        
                            
            
                                    
            
            
                | 88 |  |  |     @property | 
            
                                                                        
                            
            
                                    
            
            
                | 89 |  |  |     def stream(self): | 
            
                                                                        
                            
            
                                    
            
            
                | 90 |  |  |         return self._stream | 
            
                                                                                                            
                            
            
                                    
            
            
                | 91 |  |  |  | 
            
                                                                                                            
                            
            
                                    
            
            
                | 92 |  |  |     @stream.setter | 
            
                                                                                                            
                            
            
                                    
            
            
                | 93 |  |  |     def stream(self, value): | 
            
                                                                                                            
                            
            
                                    
            
            
                | 94 |  |  |         if isinstance(value, string_types): | 
            
                                                                                                            
                            
            
                                    
            
            
                | 95 |  |  |             if value in self._stream_cache: | 
            
                                                                                                            
                            
            
                                    
            
            
                | 96 |  |  |                 value = self._stream_cache[value] | 
            
                                                                                                            
                            
            
                                    
            
            
                | 97 |  |  |             else: | 
            
                                                                                                            
                            
            
                                    
            
            
                | 98 |  |  |                 value = self._stream_cache[value] = open(value, 'a', buffering=0) | 
            
                                                                                                            
                            
            
                                    
            
            
                | 99 |  |  |  | 
            
                                                                                                            
                            
            
                                    
            
            
                | 100 |  |  |         isatty = getattr(value, 'isatty', None) | 
            
                                                                                                            
                            
            
                                    
            
            
                | 101 |  |  |         if self.force_colors or (isatty and isatty() and os.name != 'java'): | 
            
                                                                                                            
                            
            
                                    
            
            
                | 102 |  |  |             self._stream = AnsiToWin32(value) | 
            
                                                                                                            
                            
            
                                    
            
            
                | 103 |  |  |             self._tty = True | 
            
                                                                                                            
                            
            
                                    
            
            
                | 104 |  |  |             self.event_colors = EVENT_COLORS | 
            
                                                                                                            
                            
            
                                    
            
            
                | 105 |  |  |             self.code_colors = CODE_COLORS | 
            
                                                                                                            
                            
            
                                    
            
            
                | 106 |  |  |         else: | 
            
                                                                                                            
                            
            
                                    
            
            
                | 107 |  |  |             self._tty = False | 
            
                                                                                                            
                            
            
                                    
            
            
                | 108 |  |  |             self._stream = value | 
            
                                                                                                            
                            
            
                                    
            
            
                | 109 |  |  |             self.event_colors = NO_COLORS | 
            
                                                                                                            
                            
            
                                    
            
            
                | 110 |  |  |             self.code_colors = NO_COLORS | 
            
                                                                                                            
                            
            
                                    
            
            
                | 111 |  |  |  | 
            
                                                                                                            
                            
            
                                    
            
            
                | 112 |  |  |     def _safe_repr(self, obj): | 
            
                                                                                                            
                            
            
                                    
            
            
                | 113 |  |  |         try: | 
            
                                                                                                            
                            
            
                                    
            
            
                | 114 |  |  |             return repr(obj) | 
            
                                                                                                            
                            
            
                                    
            
            
                | 115 |  |  |         except Exception as exc: | 
            
                                                                                                            
                            
            
                                    
            
            
                | 116 |  |  |             return "{internal-failure}!!! FAILED REPR: {internal-detail}{!r}".format(exc, **self.event_colors) | 
            
                                                                                                            
                            
            
                                    
            
            
                | 117 |  |  |  | 
            
                                                                                                            
                            
            
                                    
            
            
                | 118 |  |  |  | 
            
                                                                                                            
                            
            
                                    
            
            
                | 119 |  |  | class CodePrinter(Fields.stream.filename_alignment, ColorStreamAction): | 
            
                                                                                                            
                            
            
                                    
            
            
                | 120 |  |  |     """ | 
            
                                                                                                            
                            
            
                                    
            
            
                | 121 |  |  |     An action that just prints the code being executed. | 
            
                                                                                                            
                            
            
                                    
            
            
                | 122 |  |  |  | 
            
                                                                                                            
                            
            
                                    
            
            
                | 123 |  |  |     Args: | 
            
                                                                                                            
                            
            
                                    
            
            
                | 124 |  |  |         stream (file-like): Stream to write to. Default: ``sys.stderr``. | 
            
                                                                                                            
                            
            
                                    
            
            
                | 125 |  |  |         filename_alignment (int): Default size for the filename column (files are right-aligned). Default: ``40``. | 
            
                                                                                                            
                            
            
                                    
            
            
                | 126 |  |  |     """ | 
            
                                                                                                            
                            
            
                                    
            
            
                | 127 |  |  |  | 
            
                                                                                                            
                            
            
                                    
            
            
                | 128 |  |  |     def __init__(self, | 
            
                                                                                                            
                            
            
                                    
            
            
                | 129 |  |  |                  stream=ColorStreamAction.default_stream, force_colors=False, | 
            
                                                                                                            
                            
            
                                    
            
            
                | 130 |  |  |                  filename_alignment=DEFAULT_MIN_FILENAME_ALIGNMENT): | 
            
                                                                                                            
                            
            
                                    
            
            
                | 131 |  |  |         self.stream = stream | 
            
                                                                                                            
                            
            
                                    
            
            
                | 132 |  |  |         self.force_colors = force_colors | 
            
                                                                                                            
                            
            
                                    
            
            
                | 133 |  |  |         self.filename_alignment = max(5, filename_alignment) | 
            
                                                                                                            
                            
            
                                    
            
            
                | 134 |  |  |  | 
            
                                                                                                            
                            
            
                                    
            
            
                | 135 |  |  |     def _safe_source(self, event): | 
            
                                                                                                            
                            
            
                                    
            
            
                | 136 |  |  |         try: | 
            
                                                                                                            
                            
            
                                    
            
            
                | 137 |  |  |             lines = event._raw_fullsource.rstrip().splitlines() | 
            
                                                                                                            
                            
            
                                    
            
            
                | 138 |  |  |             if lines: | 
            
                                                                                                            
                            
            
                                    
            
            
                | 139 |  |  |                 return lines | 
            
                                                                                                            
                            
            
                                    
            
            
                | 140 |  |  |             else: | 
            
                                                                                                            
                            
            
                                    
            
            
                | 141 |  |  |                 return "{source-failure}??? NO SOURCE: {source-detail}" \ | 
            
                                                                                                            
                            
            
                                    
            
            
                | 142 |  |  |                        "Source code string for module {!r} is empty.".format(event.module, **self.event_colors), | 
            
                                                                                                            
                            
            
                                    
            
            
                | 143 |  |  |             return lines | 
            
                                                                                                            
                            
            
                                    
            
            
                | 144 |  |  |         except Exception as exc: | 
            
                                                                                                            
                            
            
                                    
            
            
                | 145 |  |  |             return "{source-failure}??? NO SOURCE: {source-detail}{!r}".format(exc, **self.event_colors), | 
            
                                                                                                            
                            
            
                                    
            
            
                | 146 |  |  |  | 
            
                                                                                                            
                            
            
                                    
            
            
                | 147 |  |  |     def __call__(self, event, sep=os.path.sep, join=os.path.join): | 
            
                                                                                                            
                            
            
                                    
            
            
                | 148 |  |  |         """ | 
            
                                                                                                            
                            
            
                                    
            
            
                | 149 |  |  |         Handle event and print filename, line number and source code. If event.kind is a `return` or `exception` also | 
            
                                                                                                            
                            
            
                                    
            
            
                | 150 |  |  |         prints values. | 
            
                                                                                                            
                            
            
                                    
            
            
                | 151 |  |  |         """ | 
            
                                                                                                            
                            
            
                                    
            
            
                | 152 |  |  |         filename = event.filename or "<???>" | 
            
                                                                                                            
                            
            
                                    
            
            
                | 153 |  |  |         if len(filename) > self.filename_alignment: | 
            
                                                                                                            
                            
            
                                    
            
            
                | 154 |  |  |             filename = '[...]{}'.format(filename[5 - self.filename_alignment:]) | 
            
                                                                                                            
                            
            
                                    
            
            
                | 155 |  |  |  | 
            
                                                                                                            
                            
            
                                    
            
            
                | 156 |  |  |         # context = event.tracer | 
            
                                                                                                            
                            
            
                                    
            
            
                | 157 |  |  |         # alignment = context.filename_alignment = max( | 
            
                                                                                                            
                            
            
                                    
            
            
                | 158 |  |  |         #     getattr(context, 'filename_alignment', 5), | 
            
                                                                                                            
                            
            
                                    
            
            
                | 159 |  |  |         #     len(filename) | 
            
                                                                                                            
                            
            
                                    
            
            
                | 160 |  |  |         # ) | 
            
                                                                                                            
                            
            
                                    
            
            
                | 161 |  |  |         lines = self._safe_source(event) | 
            
                                                                                                            
                            
            
                                    
            
            
                | 162 |  |  |         self.stream.write("{filename}{:>{align}}{colon}:{lineno}{:<5} {kind}{:9} {code}{}{reset}\n".format( | 
            
                                                                                                            
                            
            
                                    
            
            
                | 163 |  |  |             filename, | 
            
                                                                                                            
                            
            
                                    
            
            
                | 164 |  |  |             event.lineno, | 
            
                                                                                                            
                            
            
                                    
            
            
                | 165 |  |  |             event.kind, | 
            
                                                                                                            
                            
            
                                    
            
            
                | 166 |  |  |             lines[0], | 
            
                                                                                                            
                            
            
                                    
            
            
                | 167 |  |  |             align=self.filename_alignment, | 
            
                                                                                                            
                            
            
                                    
            
            
                | 168 |  |  |             code=self.code_colors[event.kind], | 
            
                                                                                                            
                            
            
                                    
            
            
                | 169 |  |  |             **self.event_colors | 
            
                                                                                                            
                            
            
                                    
            
            
                | 170 |  |  |         )) | 
            
                                                                                                            
                            
            
                                    
            
            
                | 171 |  |  |         for line in lines[1:]: | 
            
                                                                                                            
                            
            
                                    
            
            
                | 172 |  |  |             self.stream.write("{:>{align}}       {kind}{:9} {code}{}{reset}\n".format( | 
            
                                                                                                            
                            
            
                                    
            
            
                | 173 |  |  |                 "", | 
            
                                                                                                            
                            
            
                                    
            
            
                | 174 |  |  |                 r"   |", | 
            
                                                                                                            
                            
            
                                    
            
            
                | 175 |  |  |                 line, | 
            
                                                                                                            
                            
            
                                    
            
            
                | 176 |  |  |                 align=self.filename_alignment, | 
            
                                                                                                            
                            
            
                                    
            
            
                | 177 |  |  |                 code=self.code_colors[event.kind], | 
            
                                                                                                            
                            
            
                                    
            
            
                | 178 |  |  |                 **self.event_colors | 
            
                                                                                                            
                            
            
                                    
            
            
                | 179 |  |  |             )) | 
            
                                                                                                            
                            
            
                                    
            
            
                | 180 |  |  |  | 
            
                                                                                                            
                            
            
                                    
            
            
                | 181 |  |  |         if event.kind in ('return', 'exception'): | 
            
                                                                                                            
                            
            
                                    
            
            
                | 182 |  |  |             self.stream.write("{:>{align}}       {continuation}{:9} {color}{} value: {detail}{}{reset}\n".format( | 
            
                                                                                                            
                            
            
                                    
            
            
                | 183 |  |  |                 "", | 
            
                                                                                                            
                            
            
                                    
            
            
                | 184 |  |  |                 "...", | 
            
                                                                                                            
                            
            
                                    
            
            
                | 185 |  |  |                 event.kind, | 
            
                                                                                                            
                            
            
                                    
            
            
                | 186 |  |  |                 self._safe_repr(event.arg), | 
            
                                                                                                            
                            
            
                                    
            
            
                | 187 |  |  |                 align=self.filename_alignment, | 
            
                                                                                                            
                            
            
                                    
            
            
                | 188 |  |  |                 color=self.event_colors[event.kind], | 
            
                                                                                                            
                            
            
                                    
            
            
                | 189 |  |  |                 **self.event_colors | 
            
                                                                                                            
                            
            
                                    
            
            
                | 190 |  |  |             )) | 
            
                                                                                                            
                            
            
                                    
            
            
                | 191 |  |  |  | 
            
                                                                                                            
                            
            
                                    
            
            
                | 192 |  |  |  | 
            
                                                                                                            
                            
            
                                    
            
            
                | 193 |  |  | class VarsPrinter(Fields.names.globals.stream.filename_alignment, ColorStreamAction): | 
            
                                                                                                            
                            
            
                                    
            
            
                | 194 |  |  |     """ | 
            
                                                                                                            
                            
            
                                    
            
            
                | 195 |  |  |     An action that prints local variables and optionally global variables visible from the current executing frame. | 
            
                                                                                                            
                            
            
                                    
            
            
                | 196 |  |  |  | 
            
                                                                                                            
                            
            
                                    
            
            
                | 197 |  |  |     Args: | 
            
                                                                                                            
                            
            
                                    
            
            
                | 198 |  |  |         *names (strings): | 
            
                                                                                                            
                            
            
                                    
            
            
                | 199 |  |  |             Names to evaluate. Expressions can be used (will only try to evaluate if all the variables are present on | 
            
                                                                                                            
                            
            
                                    
            
            
                | 200 |  |  |             the frame. | 
            
                                                                                                            
                            
            
                                    
            
            
                | 201 |  |  |         stream (file-like): Stream to write to. Default: ``sys.stderr``. | 
            
                                                                                                            
                            
            
                                    
            
            
                | 202 |  |  |         filename_alignment (int): Default size for the filaneme column (files are right-aligned). Default: ``40``. | 
            
                                                                                                            
                            
            
                                    
            
            
                | 203 |  |  |         globals (bool): Allow access to globals. Default: ``False`` (only looks at locals). | 
            
                                                                                                            
                            
            
                                    
            
            
                | 204 |  |  |     """ | 
            
                                                                                                            
                            
            
                                    
            
            
                | 205 |  |  |  | 
            
                                                                                                            
                            
            
                                    
            
            
                | 206 |  |  |     def __init__(self, *names, **options): | 
            
                                                                                                            
                            
            
                                    
            
            
                | 207 |  |  |         if not names: | 
            
                                                                                                            
                            
            
                                    
            
            
                | 208 |  |  |             raise TypeError("Must give at least one name/expression.") | 
            
                                                                                                            
                            
            
                                    
            
            
                | 209 |  |  |         self.stream = options.pop('stream', self.default_stream) | 
            
                                                                                                            
                            
            
                                    
            
            
                | 210 |  |  |         self.force_colors = options.pop('force_colors', False) | 
            
                                                                                                            
                            
            
                                    
            
            
                | 211 |  |  |         self.filename_alignment = max(5, options.pop('filename_alignment', DEFAULT_MIN_FILENAME_ALIGNMENT)) | 
            
                                                                                                            
                            
            
                                    
            
            
                | 212 |  |  |         self.names = { | 
            
                                                                                                            
                            
            
                                    
            
            
                | 213 |  |  |             name: set(self._iter_symbols(name)) | 
            
                                                                                                            
                            
            
                                    
            
            
                | 214 |  |  |             for name in names | 
            
                                                                                                            
                            
            
                                    
            
            
                | 215 |  |  |             } | 
            
                                                                                                            
                            
            
                                    
            
            
                | 216 |  |  |         self.globals = options.pop('globals', False) | 
            
                                                                                                            
                            
            
                                    
            
            
                | 217 |  |  |  | 
            
                                                                                                            
                            
            
                                    
            
            
                | 218 |  |  |     @staticmethod | 
            
                                                                                                            
                            
            
                                    
            
            
                | 219 |  |  |     def _iter_symbols(code): | 
            
                                                                                                            
                            
            
                                    
            
            
                | 220 |  |  |         """ | 
            
                                                                                                            
                            
            
                                    
            
            
                | 221 |  |  |         Iterate all the variable names in the given expression. | 
            
                                                                                                            
                            
            
                                    
            
            
                | 222 |  |  |  | 
            
                                                                                                            
                            
            
                                    
            
            
                | 223 |  |  |         Example: | 
            
                                                                                                            
                            
            
                                    
            
            
                | 224 |  |  |  | 
            
                                                                                                            
                            
            
                                    
            
            
                | 225 |  |  |         * ``self.foobar`` yields ``self`` | 
            
                                                                                                            
                            
            
                                    
            
            
                | 226 |  |  |         * ``self[foobar]`` yields `self`` and ``foobar`` | 
            
                                                                                                            
                            
            
                                    
            
            
                | 227 |  |  |         """ | 
            
                                                                                                            
                            
            
                                    
            
            
                | 228 |  |  |         for node in ast.walk(ast.parse(code)): | 
            
                                                                                                            
                            
            
                                    
            
            
                | 229 |  |  |             if isinstance(node, ast.Name): | 
            
                                                                                                            
                            
            
                                    
            
            
                | 230 |  |  |                 yield node.id | 
            
                                                                                                            
                            
            
                                    
            
            
                | 231 |  |  |  | 
            
                                                                                                            
                            
            
                                    
            
            
                | 232 |  |  |     def _safe_eval(self, code, event): | 
            
                                                                                                            
                            
            
                                    
            
            
                | 233 |  |  |         """ | 
            
                                                                                                            
                            
            
                                    
            
            
                | 234 |  |  |         Try to evaluate the given code on the given frame. If failure occurs, returns some ugly string with exception. | 
            
                                                                                                            
                            
            
                                    
            
            
                | 235 |  |  |         """ | 
            
                                                                                                            
                            
            
                                    
            
            
                | 236 |  |  |         try: | 
            
                                                                                                            
                            
            
                                    
            
            
                | 237 |  |  |             return eval(code, event.globals if self.globals else {}, event.locals) | 
            
                                                                                                            
                            
            
                                    
            
            
                | 238 |  |  |         except Exception as exc: | 
            
                                                                                                            
                            
            
                                    
            
            
                | 239 |  |  |             return "{internal-failure}FAILED EVAL: {internal-detail}{!r}".format(exc, **self.event_colors) | 
            
                                                                                                            
                            
            
                                    
            
            
                | 240 |  |  |  | 
            
                                                                                                            
                            
            
                                    
            
            
                | 241 |  |  |     def __call__(self, event): | 
            
                                                                                                            
                            
            
                                    
            
            
                | 242 |  |  |         """ | 
            
                                                                                                            
                            
            
                                    
            
            
                | 243 |  |  |         Handle event and print the specified variables. | 
            
                                                                                                            
                            
            
                                    
            
            
                | 244 |  |  |         """ | 
            
                                                                                                            
                            
            
                                    
            
            
                | 245 |  |  |         first = True | 
            
                                                                                                            
                            
            
                                    
            
            
                | 246 |  |  |         frame_symbols = set(event.locals) | 
            
                                                                                                            
                            
            
                                    
            
            
                | 247 |  |  |         if self.globals: | 
            
                                                                                                            
                            
            
                                    
            
            
                | 248 |  |  |             frame_symbols |= set(event.globals) | 
            
                                                                                                            
                            
            
                                    
            
            
                | 249 |  |  |  | 
            
                                                                                                            
                            
            
                                    
            
            
                | 250 |  |  |         for code, symbols in self.names.items(): | 
            
                                                                                                            
                            
            
                                    
            
            
                | 251 |  |  |             try: | 
            
                                                                                                            
                            
            
                                    
            
            
                | 252 |  |  |                 obj = eval(code, event.globals if self.globals else {}, event.locals) | 
            
                                                                                                            
                            
            
                                    
            
            
                | 253 |  |  |             except AttributeError: | 
            
                                                                                                            
                            
            
                                    
            
            
                | 254 |  |  |                 continue | 
            
                                                                                                            
                            
            
                                    
            
            
                | 255 |  |  |             except Exception as exc: | 
            
                                                                                                            
                            
            
                                    
            
            
                | 256 |  |  |                 printout = "{internal-failure}FAILED EVAL: {internal-detail}{!r}".format(exc, **self.event_colors) | 
            
                                                                                                            
                            
            
                                    
            
            
                | 257 |  |  |             else: | 
            
                                                                                                            
                            
            
                                    
            
            
                | 258 |  |  |                 printout = self._safe_repr(obj) | 
            
                                                                                                            
                            
            
                                    
            
            
                | 259 |  |  |  | 
            
                                                                                                            
                            
            
                                    
            
            
                | 260 |  |  |             if frame_symbols >= symbols: | 
            
                                                                                                            
                            
            
                                    
            
            
                | 261 |  |  |                 self.stream.write("{:>{align}}       {vars}{:9} {vars-name}{} {vars}=> {reset}{}{reset}\n".format( | 
            
                                                                                                            
                            
            
                                    
            
            
                | 262 |  |  |                     "", | 
            
                                                                                                            
                            
            
                                    
            
            
                | 263 |  |  |                     "vars" if first else "...", | 
            
                                                                                                            
                            
            
                                    
            
            
                | 264 |  |  |                     code, | 
            
                                                                                                            
                            
            
                                    
            
            
                | 265 |  |  |                     printout, | 
            
                                                                                                            
                            
            
                                    
            
            
                | 266 |  |  |                     align=self.filename_alignment, | 
            
                                                                                                            
                            
            
                                    
            
            
                | 267 |  |  |                     **self.event_colors | 
            
                                                                                                            
                            
            
                                    
            
            
                | 268 |  |  |                 )) | 
            
                                                                                                            
                                                                
            
                                    
            
            
                | 269 |  |  |                 first = False | 
            
                                                        
            
                                    
            
            
                | 270 |  |  |  |