# HG changeset patch # User cmlenz # Date 1164285403 0 # Node ID 9aa6aa18fa3529fdc2bb0999d25c58bcf264c9d6 # Parent 0e0952d85d97b390595b781fd9deb215e0fbe1e0 Add `Attrs` class to `genshi.core.__all__`, so that it can be imported directly from the `genshi` package. diff --git a/genshi/core.py b/genshi/core.py --- a/genshi/core.py +++ b/genshi/core.py @@ -17,7 +17,8 @@ import operator import re -__all__ = ['Stream', 'Markup', 'escape', 'unescape', 'Namespace', 'QName'] +__all__ = ['Stream', 'Markup', 'escape', 'unescape', 'Attrs', 'Namespace', + 'QName'] class StreamEventKind(str):