Home | History | Annotate | Download | only in python2.7

Lines Matching full:none

16 def print_list(extracted_list, file=None):
19 if file is None:
35 whose source text line is not None.
46 def print_tb(tb, limit=None, file=None):
49 If 'limit' is omitted or None, all entries are printed. If 'file'
50 is omitted or None, the output goes to sys.stderr; otherwise
54 if file is None:
56 if limit is None:
60 while tb is not None and (limit is None or n < limit):
74 def format_tb(tb, limit = None):
78 def extract_tb(tb, limit = None):
82 'limit' is omitted or None, all entries are extracted. A
87 available it is None.
89 if limit is None:
94 while tb is not None and (limit is None or n < limit):
103 else: line = None
110 def print_exception(etype, value, tb, limit=None, file=None):
114 traceback is not None, it prints a header "Traceback (most recent
121 if file is None:
130 def format_exception(etype, value, tb, limit = None):
172 etype is None or type(etype) is str):
189 if badline is not None:
191 if offset is not None:
205 if value is None or not valuestr:
224 def print_exc(limit=None, file=None):
228 if file is None:
234 etype = value = tb = None
237 def format_exc(limit=None):
243 etype = value = tb = None
246 def print_last(limit=None, file=None):
251 if file is None:
257 def print_stack(f=None, limit=None, file=None):
264 if f is None:
271 def format_stack(f=None, limit=None):
273 if f is None:
280 def extract_stack(f=None, limit = None):
289 if f is None:
294 if limit is None:
299 while f is not None and (limit is None or n < limit):
307 else: line = None