Because, you know, I don't need to know about lxml preserving the case of my doctype every single time I run piccolo.
import warnings
from html5lib.constants import DataLossWarning
warnings.simplefilter("ignore", DataLossWarning)
from lxml import etree
Joe Gregorio