python-markupsafe binary package in Ubuntu Precise powerpc

 MarkupSafe implements a unicode subclass that supports HTML strings:
 .
  >>> from markupsafe import Markup, escape
  >>> escape("<script>alert(document.cookie);</script>")
  Markup(u'&lt;script&gt;alert(document.cookie);&lt;/script&gt;')
  >>> tmpl = Markup("<em>%s</em>")
  >>> tmpl % "Peter > Lustig"
  Markup(u'<em>Peter &gt; Lustig</em>')
 .
 If you want to make an object unicode that is not yet unicode
 but don't want to lose the taint information, you can use the
 `soft_unicode` function:
 .
  >>> from markupsafe import soft_unicode
  >>> soft_unicode(42)
  u'42'
  >>> soft_unicode(Markup('foo'))
  Markup(u'foo')

Publishing history

Date Status Target Pocket Component Section Priority Phased updates Version
  2011-10-17 15:04:23 UTC Published Ubuntu Precise powerpc release main python Optional 0.15-1
  • Published
  2011-10-17 15:08:00 UTC Superseded Ubuntu Precise powerpc release main python Optional 0.12-2build1
  • Removed from disk .
  • Removal requested .
  • Superseded by powerpc build of markupsafe 0.15-1 in ubuntu precise RELEASE
  • Published
  • Copied from ubuntu oneiric-release powerpc in Primary Archive for Ubuntu