Katherine de la Pole

Katherine de la Pole (1410/11 – 1473)[1] was the oldest daughter of Michael de la Pole, 2nd Earl of Suffolk and Katherine de Stafford.

She became abbess of Barking Abbey in January 1433[1]. In this capacity, between 1437 and 1440[1], she took care of Edmund and Jasper Tudor, the two eldest sons of Catherine of Valois (widowed queen of King Henry V of England) by her second husband Owen Tudor.[2] Katherine persuaded King Henry VI to take an interest in the boys, who were his half-brothers. Henry later ennobled them, thereby taking one of the important steps that would later enable Edmund's son Henry Tudor to claim the English throne. Edmund's wife Lady Margaret Beaufort, mother of Henry Tudor, had been a ward of Katherine's brother, William de la Pole, steward of the royal household.

Notes

  1. Bush, Ruth. "Pole, Katherine de la", Oxford Dictionary of National Biography, 04 October 2012. Accessed 5 February 2019.
  2. Hilton, Lisa (2008). Queens Consort, England's Medieval Queens. Great Britain: Weidenfeld & Nichelson. p. 387. ISBN 978-0-7538-2611-9.
gollark: If you configured it wrong during setup of whatever this is somehow, then it won't match. PotatOS has the law enforcement access mechanism (PS#7D7499AB) which also currently doubles as "forgot password" handling, but not every OS does that.
gollark: How do you know your password is the right one?
gollark: I should assign unique IDs to the other sandbox escape bugs.
gollark: My "fix" is this:```lua--[["Fix" for bug PS#E9DCC81BSummary: `pcall(getfenv, -1)` seemingly returned the environment outside the sandbox.Based on some testing, this seems like some bizarre optimization-type feature gone wrong.It seems that something is simplifying `pcall(getfenv)` to just directly calling `getfenv` and ignoring the environment... as well as, *somehow*, `function() return getfenv() end` and such.The initial attempt at making this work did `return (fn(...))` instead of `return fn(...)` in an attempt to make it not do this, but of course that somehow broke horribly. I don't know what's going on at this point.This is probably a bit of a performance hit, and more problematically liable to go away if this is actually some bizarre interpreter feature and the fix gets optimized away.Unfortunately I don't have any better ideas. Also, I haven't tried this with xpcall, but it's probably possible, so I'm attempting to fix that too.]]local real_pcall = pcallfunction _G.pcall(fn, ...) return real_pcall(function(...) local ret = {fn(...)} return unpack(ret) end, ...)end local real_xpcall = xpcallfunction _G.xpcall(fn, handler) return real_xpcall(function() local ret = {fn()} return unpack(ret) end, handler)end```which appears to work at least?
gollark: Fixed, but I don't really know how or why.
This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.