Consolata Kline

Sister Consolata M. Kline (October 8, 1916 – November 7, 2016)[1] was a religious sister of the Catholic Church and the Executive Director of the St. Elizabeth Hospital Medical Center.[2]

Career

Consolata Kline was born in Cleveland, Ohio on October 8, 1916, where she graduated from Lincoln High School in 1935. She entered the Sisters of Humility of Mary in 1943 after working through the Great Depression. She made her first profession of vows in July 1945 and her perpetual vows in 1948.[3][4]

Kline attended St. Louis University where she received her bachelor of science in commerce and her masters in hospital administration.[2][3] She was hired at the St. Elizabeth Hospital Medical Center in 1945 as business office manager in Youngstown, Ohio and eventually became the hospital's Executive Director.[2][3]

During her tenure, she grew the hospital from a general medical-surgical hospital to a health care center offering the latest in technology and facilities. She retired in 2001 when she was elected Major Superior of the Sisters of Humility of Mary.[2]

Kline was inducted into the Ohio Women's Hall of Fame in 1978.[2] In 2000, she received the papal honor "Cross Pro-Ecclesia et Pontifice" for her service to the Church.[1]

Death

Sister Kline died November 7, 2016, in Villa Maria, PA at age 100. She was preceded in death by her sister Betty Ondus and her brothers Thomas Kline, Rev. John J. Kline, and Rev. Robert W. Kline[1]

gollark: Oh, right, array indexing.
gollark: ```python# parsita-based pseudocode syntax parserfrom stmt import *from parsita import *from parsita.util import constantdef compose(f, g): return lambda x: f(g(x))def map_expr(x): start, end = x if end == "": return start return Op([start, end[1]], end[0])def map_unop_expr(x): return Op(x[1], x[0])def aliases(name, aliases): p = lit(name) for alias in aliases: p |= (lit(alias) > (lambda _: name)) return pclass ExprParser(TextParsers): ε = lit("") IntLit = reg("\-?[0-9]+") > compose(IntLit, int) StrLit = "'" >> reg("[^']*") << "'" > StrLit # TODO escapes (not in "spec" but could be needed) FloatLit = reg("\-?[0-9]+\.[0-9]+") > compose(FloatLit, float) Identifier = reg("[a-zA-Z_]+[a-zA-Z_0-9]*") > Var BracketedExpr = "(" >> Expr << ")" UnaryOperator = lit("NOT") Start = FloatLit | StrLit | IntLit | BracketedExpr | (UnaryOperator & Expr > map_unop_expr) | Identifier # avoid left recursion problems by not doing left recursion # AQA pseudocode does not appear to have a notion of "operator precedence", simplifying parsing logic nicely BinaryOperator = aliases("≤", ["<="]) | aliases("≠", ["!="]) | aliases("≥", [">="]) | lit("DIV") | lit("MOD") | lit("AND") | lit("OR") | reg("[+/*\-=<>]") End = (BinaryOperator & Expr) | ε Expr = (Start & End) > map_exprparse = ExprParser.Expr.parsex = parse("1+2+3 != 6 AND NOT 4 AND x + y")if isinstance(x, Failure): print(x.message)else: print(x.value)```
gollark: <@332271551481118732> Expression parsing is done, I think.
gollark: I wonder if AQA pseudocode *does* have operator precedence. We may need to harvest exam papers.
gollark: This will allow 3% more efficient harnessing of character set anomalies.

References

  1. "Sister Consolata Kline, H.M., the former Rita Kline, died Mon., Nov. 7, 2016 at Villa Maria Community Center". Humility Of Mary. Retrieved 2016-11-15.
  2. "Ohio Women's Hall of Fame". odjfs.state.oh.us. Retrieved 2016-01-16.
  3. "Sister COnsolata Kline Interviewed by Matthew T. Butts on June 21, 1992" (PDF). Youngstown State University Oral History Program. 1992. Retrieved 2016-01-16.
  4. "The Catholic Exponent". The Catholic Exponent. Retrieved 2016-01-16.



This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.