DEBFIND Suche nach Debian-Paketen

Suchplatform für Softwarepakete und Archive Debian-basierter Linux-Distributionen

beta ! Diese website wird noch weiterentwickelt.

Liste aller Kategorien/Sektionen | Suchmaske | Haftungsausschluß

Paketbeschreibung


Paketnamepython3-markupsafe
BeschreibungXML/HTML/XHTML Markup safe string for Python3
Archiv/RepositoryOffizielles Debian Archiv squeeze (main)
Version0.9.2-3
Sektionpython
Prioritätoptional
Installierte Größe112 Byte
Hängt ab vonpython3 (>= 3.1.2-8~), libc6 (>= 2.3.6-6~)
Empfohlene Pakete
PaketbetreuerPiotr Ożarowski
Quellemarkupsafe
Paketgröße12250 Byte
Prüfsumme MD5cf0fb2f5c23064e8e87e947c6421a0ab
Prüfsumme SHA1c7881230b237b2c1adcc1647ae7c36867776ecd4
Prüfsumme SHA256ff89ffd709a8536c79e0fe16753abe0fc780aa17258f38573805e7e5f596af37
Link zum Herunterladenpython3-markupsafe_0.9.2-3_i386.deb
Ausführliche BeschreibungMarkupSafe implements a unicode subclass that supports HTML strings: . >>> from markupsafe import Markup, escape >>> escape("") Markup('<script>alert(document.cookie);</script>') >>> tmpl = Markup("%s") >>> tmpl % "Peter > Lustig" Markup('Peter > Lustig') . 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) '42' >>> soft_unicode(Markup('foo')) Markup('foo')


Impressum
Linux is a registered trademark of Linus Torvalds