>>> import albatross >>> class Ctx(albatross.SimpleContext, albatross.HiddenFieldSessionMixin): ... def __init__(self): ... albatross.SimpleContext.__init__(self, '.') ... ... >>> ctx = Ctx() >>> ctx.locals.__dict__.keys() [] >>> albatross.Template(ctx, '', ''' ... ... ... ... ''').to_html(ctx) >>> ctx.flush_content() 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 >>> ctx.locals.__dict__.keys() ['i']