From ad2734a2b453be98519445b93c78c29ca1a43b89 Mon Sep 17 00:00:00 2001 From: Armin Ronacher Date: Fri, 13 Aug 2010 00:56:28 +0200 Subject: Improved description --- README.rst | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.rst b/README.rst index 2f9bdac..83b6236 100644 --- a/README.rst +++ b/README.rst @@ -43,6 +43,8 @@ object, you can create your own subclass that does that:: from markupsafe import Markup, escape_silent as escape class SilentMarkup(Markup): + __slots__ = () + @classmethod def escape(cls, s): return cls(escape(s)) -- cgit v1.2.1