1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682
|
# (c) 2005 Ian Bicking and contributors; written for Paste (http://pythonpaste.org)
# Licensed under the MIT license: http://www.opensource.org/licenses/mit-license.php
"""
Formatters for the exception data that comes from ExceptionCollector.
"""
# @@: TODO:
# Use this: http://www.zope.org/Members/tino/VisualTraceback/VisualTracebackNews
import cgi
import re
import sys
from weberror.util import escaping
from xml.dom.minidom import getDOMImplementation
from pygments import highlight as pygments_highlight
from pygments.lexers import ClassNotFound, PythonLexer, TextLexer, \
get_lexer_for_filename
from pygments.formatters import HtmlFormatter
try:
import pkg_resources
except ImportError:
pkg_resources = None
def html_quote(s):
return cgi.escape(str(s), True)
pygments_css = HtmlFormatter().get_style_defs('.highlight')
def highlight(filename, code, linenos=False, lineanchors=None,
cssclass='highlight'):
if lineanchors is None and linenos:
lineanchors = 'code'
lexer = None
if filename:
if filename.endswith('.py'):
# XXX: Pygments gives back NumPyLexer for some reason, which
# we don't need
lexer = PythonLexer()
else:
try:
lexer = get_lexer_for_filename(filename)
except ClassNotFound:
pass
if not lexer:
lexer = TextLexer()
formatter = HtmlFormatter(linenos=linenos, lineanchors=lineanchors,
cssclass=cssclass)
return pygments_highlight(code, lexer, formatter)
class AbstractFormatter(object):
general_data_order = ['object', 'source_url']
def __init__(self, show_hidden_frames=False, include_reusable=True,
show_extra_data=True, trim_source_paths=(), **kwargs):
self.show_hidden_frames = show_hidden_frames
self.trim_source_paths = trim_source_paths
self.include_reusable = include_reusable
self.show_extra_data = show_extra_data
self.extra_kwargs = kwargs
def format_collected_data(self, exc_data):
general_data = {}
if self.show_extra_data:
for name, value_list in exc_data.extra_data.items():
if isinstance(name, tuple):
importance, title = name
else:
importance, title = 'normal', name
for value in value_list:
general_data[(importance, name)] = self.format_extra_data(
importance, title, value)
lines = []
frames = self.filter_frames(exc_data.frames)
for frame in frames:
self.frame = frame
res = self.format_frame_start(frame)
if res:
lines.append(res)
sup = frame.supplement
if sup:
if sup.object:
general_data[('important', 'object')] = self.format_sup_object(
sup.object)
if sup.source_url:
general_data[('important', 'source_url')] = self.format_sup_url(
sup.source_url)
if sup.line:
lines.append(self.format_sup_line_pos(sup.line, sup.column))
if sup.expression:
lines.append(self.format_sup_expression(sup.expression))
if sup.warnings:
for warning in sup.warnings:
lines.append(self.format_sup_warning(warning))
if sup.info:
lines.extend(self.format_sup_info(sup.info))
if frame.supplement_exception:
lines.append('Exception in supplement:')
lines.append(self.quote_long(frame.supplement_exception))
if frame.traceback_info:
lines.append(self.format_traceback_info(frame.traceback_info))
filename = frame.filename
if filename and self.trim_source_paths:
for path, repl in self.trim_source_paths:
if filename.startswith(path):
filename = repl + filename[len(path):]
break
lines.append(self.format_source_line(filename or '?', frame))
source = frame.get_source_line()
long_source = frame.get_source_line(2)
if source:
lines.append(self.format_long_source(filename, source,
long_source))
res = self.format_frame_end(frame)
if res:
lines.append(res)
etype = exc_data.exception_type
if not isinstance(etype, basestring):
etype = etype.__name__
exc_info = self.format_exception_info(
etype,
exc_data.exception_value)
data_by_importance = {'important': [], 'normal': [],
'supplemental': [], 'extra': []}
for (importance, name), value in general_data.items():
data_by_importance[importance].append(
(name, value))
for value in data_by_importance.values():
value.sort()
return self.format_combine(data_by_importance, lines, exc_info)
def filter_frames(self, frames):
"""
Removes any frames that should be hidden, according to the
values of traceback_hide, self.show_hidden_frames, and the
hidden status of the final frame.
"""
if self.show_hidden_frames:
return frames
new_frames = []
hidden = False
for frame in frames:
hide = frame.traceback_hide
# @@: It would be nice to signal a warning if an unknown
# hide string was used, but I'm not sure where to put
# that warning.
if hide == 'before':
new_frames = []
hidden = False
elif hide == 'before_and_this':
new_frames = []
hidden = False
continue
elif hide == 'reset':
hidden = False
elif hide == 'reset_and_this':
hidden = False
continue
elif hide == 'after':
hidden = True
elif hide == 'after_and_this':
hidden = True
continue
elif hide:
continue
elif hidden:
continue
new_frames.append(frame)
if frames[-1] not in new_frames:
# We must include the last frame; that we don't indicates
# that the error happened where something was "hidden",
# so we just have to show everything
return frames
return new_frames
def format_frame_start(self, frame):
"""
Called before each frame starts; may return None to output no text.
"""
return None
def format_frame_end(self, frame):
"""
Called after each frame ends; may return None to output no text.
"""
return None
def pretty_string_repr(self, s):
"""
Formats the string as a triple-quoted string when it contains
newlines.
"""
if '\n' in s:
s = repr(s)
s = s[0]*3 + s[1:-1] + s[-1]*3
s = s.replace('\\n', '\n')
return s
else:
return repr(s)
def long_item_list(self, lst):
"""
Returns true if the list contains items that are long, and should
be more nicely formatted.
"""
how_many = 0
for item in lst:
if len(repr(item)) > 40:
how_many += 1
if how_many >= 3:
return True
return False
class TextFormatter(AbstractFormatter):
def quote(self, s):
if isinstance(s, str) and hasattr(self, 'frame'):
s = s.decode(self.frame.source_encoding, 'replace')
return s.encode('latin1', 'htmlentityreplace')
def quote_long(self, s):
return self.quote(s)
def emphasize(self, s):
return s
def format_sup_object(self, obj):
return 'In object: %s' % self.emphasize(self.quote(repr(obj)))
def format_sup_url(self, url):
return 'URL: %s' % self.quote(url)
def format_sup_line_pos(self, line, column):
if column:
return self.emphasize('Line %i, Column %i' % (line, column))
else:
return self.emphasize('Line %i' % line)
def format_sup_expression(self, expr):
return self.emphasize('In expression: %s' % self.quote(expr))
def format_sup_warning(self, warning):
return 'Warning: %s' % self.quote(warning)
def format_sup_info(self, info):
return [self.quote_long(info)]
def format_source_line(self, filename, frame):
return 'File %r, line %s in %s' % (
filename, frame.lineno or '?', frame.name or '?')
def format_long_source(self, filename, source, long_source):
return self.format_source(filename, source)
def format_source(self, filename, source_line):
return ' ' + self.quote(source_line.strip())
def format_exception_info(self, etype, evalue):
return self.emphasize(
'%s: %s' % (self.quote(etype), self.quote(evalue)))
def format_traceback_info(self, info):
return info
def format_combine(self, data_by_importance, lines, exc_info):
lines[:0] = [value for n, value in data_by_importance['important']]
lines.append(exc_info)
for name in 'normal', 'supplemental', 'extra':
lines.extend([value for n, value in data_by_importance[name]])
return self.format_combine_lines(lines), ''
def format_combine_lines(self, lines):
return '\n'.join([convert_to_str(line) for line in lines])
def format_extra_data(self, importance, title, value):
if isinstance(value, str):
s = self.pretty_string_repr(value)
if '\n' in s:
return '%s:\n%s' % (title, s)
else:
return '%s: %s' % (title, s)
elif isinstance(value, dict):
lines = ['\n', title, '-'*len(title)]
items = value.items()
items.sort()
for n, v in items:
try:
v = repr(v)
except Exception, e:
v = 'Cannot display: %s' % e
v = truncate(v)
lines.append(' %s: %s' % (n, v))
return '\n'.join(lines)
elif (isinstance(value, (list, tuple))
and self.long_item_list(value)):
parts = [truncate(repr(v)) for v in value]
return '%s: [\n %s]' % (
title, ',\n '.join(parts))
else:
return '%s: %s' % (title, truncate(repr(value)))
class HTMLFormatter(TextFormatter):
def quote(self, s):
if isinstance(s, str) and hasattr(self, 'frame'):
s = s.decode(self.frame.source_encoding, 'replace')
s = s.encode('latin1', 'htmlentityreplace')
return html_quote(s)
def quote_long(self, s):
return '<pre>%s</pre>' % self.quote(s)
def emphasize(self, s):
return '<b>%s</b>' % s
def format_sup_url(self, url):
return 'URL: <a href="%s">%s</a>' % (url, url)
def format_combine_lines(self, lines):
## FIXME: this is horrible:
new_lines = []
for line in lines:
if not line.startswith('<div') and not line.endswith('</div>'):
line += '<br>'
new_lines.append(convert_to_str(line))
return '\n'.join(new_lines)
def format_source_line(self, filename, frame):
self.frame = frame
name = self.quote(frame.name or '?')
return 'Module <span class="module" title="%s">%s</span>:<b>%s</b> in <code>%s</code>' % (
filename, frame.modname or '?', frame.lineno or '?',
name)
def format_long_source(self, filename, source, long_source):
q_long_source = str2html(long_source, False, 4, True, getattr(self, 'frame', None),
filename=filename)
q_source = str2html(source, True, 0, False, getattr(self, 'frame', None),
filename=filename)
return ('<div style="display: none" class="source highlight" source-type="long"><a class="switch_source" onclick="return switch_source(this, \'long\')" href="#"><< </a>%s</div>'
'<div class="source highlight" source-type="short"><a onclick="return switch_source(this, \'short\')" class="switch_source" href="#">>> </a>%s</div>'
% (q_long_source,
q_source))
def format_source(self, filename, source_line):
return ' <code class="source">%s</code>' % self.quote(source_line.strip())
def format_traceback_info(self, info):
return '<pre>%s</pre>' % self.quote(info)
def format_frame_start(self, frame):
## FIXME: make it zebra?
return '<div class="frame">'
def format_frame_end(self, frame):
return '</div>'
def format_extra_data(self, importance, title, value):
if isinstance(value, str):
s = self.pretty_string_repr(value)
if '\n' in s:
return '%s:<br><pre>%s</pre>' % (title, self.quote(s))
else:
return '%s: <tt>%s</tt>' % (title, self.quote(s))
elif isinstance(value, dict):
return self.zebra_table(title, value)
elif (isinstance(value, (list, tuple))
and self.long_item_list(value)):
return '%s: <tt>[<br>\n %s]</tt>' % (
title, ',<br> '.join(map(self.quote, map(repr, value))))
else:
return '%s: <tt>%s</tt>' % (title, self.quote(repr(value)))
def format_combine(self, data_by_importance, lines, exc_info):
lines[:0] = [value for n, value in data_by_importance['important']]
lines.append(exc_info)
for name in 'normal', 'supplemental':
lines.extend([value for n, value in data_by_importance[name]])
extra_data = []
if data_by_importance['extra']:
extra_data.extend([value for n, value in data_by_importance['extra']])
text = self.format_combine_lines(lines)
## FIXME: something about this is wrong:
if self.include_reusable:
return text, extra_data
else:
# Usually because another error is already on this page,
# and so the js & CSS are unneeded
return text, extra_data
def zebra_table(self, title, rows, table_class="variables"):
if isinstance(rows, dict):
rows = rows.items()
rows.sort()
table = ['<table class="%s">' % table_class,
'<tr class="header"><th colspan="2">%s</th></tr>'
% self.quote(title)]
odd = False
for name, value in rows:
try:
value = repr(value)
except Exception, e:
value = 'Cannot print: %s' % e
odd = not odd
table.append(
'<tr class="%s"><td>%s</td>'
% (odd and 'odd' or 'even', self.quote(name)))
table.append(
'<td><tt>%s</tt></td></tr>'
% make_wrappable(self.quote(truncate(value))))
table.append('</table>')
return '\n'.join(table)
def get_dependencies(circ_check, lib, working_set):
libs = {}
for proj in working_set.by_key[lib].requires():
if proj.key in circ_check:
continue
circ_check[proj.key] = True
libs[proj.key] = working_set.by_key[proj.key].version
libs.update(get_dependencies(circ_check, proj.key, working_set))
return libs
def get_libraries(libs=None):
"""Return a dict of the desired libraries and their version if
active in the environment"""
if pkg_resources and libs:
libraries = {}
working_set = pkg_resources.working_set
for lib in libs:
# Put libs we've either check dependencies on, or are in progress
# of checking here, to avoid circular references going forever
circ_check = {}
if lib in working_set.by_key:
if lib in circ_check:
continue
circ_check[lib] = True
libraries[lib] = working_set.by_key[lib].version
libraries.update(
get_dependencies(circ_check, lib, working_set))
return libraries
else:
return {}
def create_text_node(doc, elem, text):
if not isinstance(text, basestring):
try:
text = escaping.removeIllegalChars(repr(text))
except:
text = 'UNABLE TO GET TEXT REPRESENTATION'
new_elem = doc.createElement(elem)
new_elem.appendChild(doc.createTextNode(text))
return new_elem
class XMLFormatter(AbstractFormatter):
def format_collected_data(self, exc_data):
impl = getDOMImplementation()
newdoc = impl.createDocument(None, "traceback", None)
top_element = newdoc.documentElement
sysinfo = newdoc.createElement('sysinfo')
language = create_text_node(newdoc, 'language', 'Python')
language.attributes['version'] = sys.version.split(' ')[0]
language.attributes['full_version'] = sys.version
language.attributes['platform'] = sys.platform
sysinfo.appendChild(language)
# Pull out pkg_resource libraries for set libraries
libs = get_libraries(self.extra_kwargs.get('libraries'))
if libs:
libraries = newdoc.createElement('libraries')
for k, v in libs.iteritems():
lib = newdoc.createElement('library')
lib.attributes['version'] = v
lib.attributes['name'] = k
libraries.appendChild(lib)
sysinfo.appendChild(libraries)
top_element.appendChild(sysinfo)
frames = self.filter_frames(exc_data.frames)
stack = newdoc.createElement('stack')
top_element.appendChild(stack)
for frame in frames:
xml_frame = newdoc.createElement('frame')
stack.appendChild(xml_frame)
filename = frame.filename
if filename and self.trim_source_paths:
for path, repl in self.trim_source_paths:
if filename.startswith(path):
filename = repl + filename[len(path):]
break
self.format_source_line(filename or '?', frame, newdoc, xml_frame)
source = frame.get_source_line()
long_source = frame.get_source_line(2)
if source:
self.format_long_source(filename,
source.decode(frame.source_encoding, 'replace'),
long_source.decode(frame.source_encoding, 'replace'),
newdoc, xml_frame)
# @@@ TODO: Put in a way to optionally toggle including variables
# variables = newdoc.createElement('variables')
# xml_frame.appendChild(variables)
# for name, value in frame.locals.iteritems():
# if isinstance(value, unicode):
# value = value.encode('ascii', 'xmlcharrefreplace')
# variable = newdoc.createElement('variable')
# variable.appendChild(create_text_node(newdoc, 'name', name))
# variable.appendChild(create_text_node(newdoc, 'value', value))
# variables.appendChild(variable)
etype = exc_data.exception_type
if not isinstance(etype, basestring):
etype = etype.__name__
top_element.appendChild(self.format_exception_info(
etype, exc_data.exception_value, newdoc, frame))
return newdoc.toxml(), ''
def format_source_line(self, filename, frame, newdoc, xml_frame):
name = frame.name or '?'
xml_frame.appendChild(create_text_node(newdoc, 'module', frame.modname or '?'))
xml_frame.appendChild(create_text_node(newdoc, 'filename', filename))
xml_frame.appendChild(create_text_node(newdoc, 'line', str(frame.lineno) or '?'))
xml_frame.appendChild(create_text_node(newdoc, 'function', name))
def format_long_source(self, filename, source, long_source, newdoc, xml_frame):
source = source.encode('ascii', 'xmlcharrefreplace')
long_source = long_source.encode('ascii', 'xmlcharrefreplace')
xml_frame.appendChild(create_text_node(newdoc, 'operation', source.strip()))
xml_frame.appendChild(create_text_node(newdoc, 'operation_context', long_source))
def format_exception_info(self, etype, evalue, newdoc, frame):
exception = newdoc.createElement('exception')
evalue = evalue.decode(
frame.source_encoding, 'replace').encode('ascii',
'xmlcharrefreplace')
exception.appendChild(create_text_node(newdoc, 'type', etype))
exception.appendChild(create_text_node(newdoc, 'value', evalue))
return exception
def format_html(exc_data, include_hidden_frames=False, **ops):
if not include_hidden_frames:
return HTMLFormatter(**ops).format_collected_data(exc_data)
short_er = None
if not include_hidden_frames:
short_er, head_html = format_html(exc_data, show_hidden_frames=False, **ops)
ops['include_reusable'] = False
ops['show_extra_data'] = False
long_er, head_html = format_html(exc_data, show_hidden_frames=True, **ops)
if not include_hidden_frames and short_er == long_er:
# Suppress the short error if it is identical to the long one
short_er = None
text_er, head_text = format_text(exc_data, show_hidden_frames=True, **ops)
xml_er, head_xml = format_xml(exc_data, show_hidden_frames=True, **ops)
if short_er:
short_er = '<div id="short_traceback">%s</div>\n' % short_er
return """
%s
%s
<div id="full_traceback" class="hidden-data">
%s
</div>
<div id="text_version" class="hidden-data">
<textarea style="width: 100%%" rows=10 cols=60>%s</textarea>
</div>
<div id="xml_version" class="hidden-data">
<textarea style="width: 100%%" rows=10 cols=60>%s</textarea>
</div>
""" % ('\n'.join(head_html), short_er or '', long_er, cgi.escape(text_er), cgi.escape(xml_er))
def format_text(exc_data, **ops):
return TextFormatter(**ops).format_collected_data(exc_data)
def format_xml(exc_data, **ops):
return XMLFormatter(**ops).format_collected_data(exc_data)
whitespace_re = re.compile(r' +')
pre_re = re.compile(r'</?pre.*?>')
error_re = re.compile(r'<h3>ERROR: .*?</h3>')
def str2html(src, strip=False, indent_subsequent=0,
highlight_inner=False, frame=None, filename=None):
"""
Convert a string to HTML. Try to be really safe about it,
returning a quoted version of the string if nothing else works.
"""
try:
return _str2html(src, strip=strip,
indent_subsequent=indent_subsequent,
highlight_inner=highlight_inner, frame=frame,
filename=filename)
except:
if isinstance(src, str) and frame:
src = src.decode(frame.source_encoding, 'replace')
src = src.encode('latin1', 'htmlentityreplace')
return src
return html_quote(src)
def _str2html(src, strip=False, indent_subsequent=0,
highlight_inner=False, frame=None, filename=None):
if strip:
src = src.strip()
orig_src = src
try:
src = highlight(filename, src)
src = error_re.sub('', src)
src = pre_re.sub('', src)
src = re.sub(r'^[\n\r]{0,1}', '', src)
src = re.sub(r'[\n\r]{0,1}$', '', src)
# This gets rid of the <div> that Pygments adds:
if src.strip().startswith('<div class="highlight">') and \
src.strip().endswith('</div>'):
src = src.strip()[len('<div class="highlight">'):-len('</div>')]
if isinstance(src, str) and frame:
src = src.decode(frame.source_encoding, 'replace')
src = src.encode('latin1', 'htmlentityreplace')
except:
if isinstance(src, str) and frame:
src = src.decode(frame.source_encoding, 'replace')
src = src.encode('latin1', 'htmlentityreplace')
else:
src = html_quote(orig_src)
lines = src.splitlines()
if len(lines) == 1:
return lines[0]
# XXX: Lame variable width font, I think, requires +3 padding
indent_subsequent += 3
indent = ' '*indent_subsequent
for i in range(1, len(lines)):
lines[i] = indent+lines[i]
if highlight_inner and i == len(lines)/2:
lines[i] = '<span class="source-highlight">%s</span>' % lines[i]
src = '<br>\n'.join(lines)
src = whitespace_re.sub(
lambda m: ' '*(len(m.group(0))-1) + ' ', src)
return src
def truncate(string, limit=1000):
"""
Truncate the string to the limit number of
characters
"""
if len(string) > limit:
return string[:limit-20]+'...'+string[-17:]
else:
return string
def make_wrappable(html, wrap_limit=60,
split_on=';?&@!$#-/\\"\''):
# Currently using <wbr>, maybe should use ​
# http://www.cs.tut.fi/~jkorpela/html/nobr.html
if len(html) <= wrap_limit:
return html
words = html.split()
new_words = []
for word in words:
wrapped_word = ''
while len(word) > wrap_limit:
for char in split_on:
if char in word:
first, rest = word.split(char, 1)
wrapped_word += first+char+'<wbr>'
word = rest
break
else:
for i in range(0, len(word), wrap_limit):
wrapped_word += word[i:i+wrap_limit]+'<wbr>'
word = ''
wrapped_word += word
new_words.append(wrapped_word)
return ' '.join(new_words)
def make_pre_wrappable(html, wrap_limit=60,
split_on=';?&@!$#-/\\"\''):
"""
Like ``make_wrappable()`` but intended for text that will
go in a ``<pre>`` block, so wrap on a line-by-line basis.
"""
lines = html.splitlines()
new_lines = []
for line in lines:
if len(line) > wrap_limit:
for char in split_on:
if char in line:
parts = line.split(char)
line = '<wbr>'.join(parts)
break
new_lines.append(line)
return '\n'.join(lines)
def convert_to_str(s):
if isinstance(s, unicode):
return s.encode('utf8')
return s
|