#! /usr/bin/env/python # -*- coding: iso-8859-1 -*- ## Copyright 1999-2006 by LivingLogic AG, Bayreuth/Germany. ## Copyright 1999-2006 by Walter Dörwald ## ## All Rights Reserved ## ## See xist/__init__.py for the license import cPickle from ll.xist import xsc from ll.xist.ns import xml, html, chars, abbr, php def test_pickle(): e = xsc.Frag( xml.XML10(), html.DocTypeXHTML10transitional(), xsc.Comment("foo"), html.html(xml.Attrs(lang="de"), lang="de"), php.expression("$foo"), chars.nbsp(), abbr.xml(), ) e.append(e[3]) e2 = cPickle.loads(cPickle.dumps(e)) assert e == e2 assert e2[3] is e2[-1]