"\n" +
"";
//we'll actually treat this as a try..finally with a body with try..except..else
Module mod = (Module) parseLegalDocStr(str);
assertEquals(1, mod.body.length);
TryFinally f = (TryFinally) mod.body[0];
assertEquals(1, f.body.length);
TryExcept exc = (TryExcept) f.body[0];
assertTrue(exc.orelse != null);
assertEquals(1, exc.handlers.length);