Jean Benedicti

Jean Benedicti was a French Franciscan theologian of the sixteenth century.

He belonged to the Observantine Province of Tours and Poitiers. He became in time secretary of the order and in this capacity accompanied the minister-general, Christopher a Capite Fontium, throughout the whole of Europe in the latter's canonical visitation of Franciscan houses.

Afterwards he was made commissary-general of the French and visitor of many Italian Provinces, and in order to fulfill a vow went on a pilgrimage to Palestine. Luke Wadding says that he was a man of distinguished parts and great culture, having mastered the learning of his day and being conversant with the Hebrew, Greek, and Latin tongues.

His remains were interred in the Friary at Laval.

Works

In 1599 the first edition of his "Somme des péchés et le remède d'iceux comprenant tous les cas de conscience" was published in Paris and was immediately in demand among confessors. After having been revised, corrected, and augmented by the Theological Faculty of Paris it reached a fifteenth edition.

He also wrote "La triomphante victoire de la Sainte Vierge" which tells of an exorcism in the church of the Cordeliers at Lyon.

gollark: ```python#!/usr/bin/env python3from flask import Flask, jsonifyfrom wsgiref.simple_server import make_serverimport subprocessimport randomfrom mpd import MPDClientimport threadingimport timempd_client = MPDClient()mpd_client.connect("localhost", 6600)print("connected, mpd is", mpd_client.mpd_version)app = Flask(__name__)@app.route("/")def index(): return "Hello, World!"@app.route("/fortune/")def fortune(): return subprocess.run(["fortune"], stdout=subprocess.PIPE).stdoutcurrent_song = Nonedef mpd_loop(): print("mpd query loop started") while True: global current_song current_song = mpd_client.currentsong() current_song["status"] = mpd_client.status() time.sleep(0.2)threading.Thread(target=mpd_loop).start()@app.route("/current-song")def get_current_song(): return jsonify(current_song)with make_server('', 1337, app) as httpd: print("Serving HTTP...") httpd.serve_forever()```
gollark: It doesn't require classes. Hold on.
gollark: I saw `getunicode`, which seems python2-ish since python3 has better unicode handling.
gollark: Also, please use Flask and Python3.
gollark: Any good static-file server will ALREADY probably support the `Range` header.

References

    Attribution
    •  This article incorporates text from a publication now in the public domain: Herbermann, Charles, ed. (1913). "Jean Benedicti". Catholic Encyclopedia. New York: Robert Appleton Company. The entry cites:
    This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.