MCPcopy Index your code
hub / github.com/python/cpython / fatal

Method fatal

Lib/logging/__init__.py:1572–1576  ·  view source on GitHub ↗

Don't use this method, use critical() instead.

(self, msg, *args, **kwargs)

Source from the content-addressed store, hash-verified

1570 self._log(CRITICAL, msg, args, **kwargs)
1571
1572 def fatal(self, msg, *args, **kwargs):
1573 """
1574 Don't use this method, use critical() instead.
1575 """
1576 self.critical(msg, *args, **kwargs)
1577
1578 def log(self, level, msg, *args, **kwargs):
1579 """

Callers

nothing calls this directly

Calls 1

criticalMethod · 0.95

Tested by

no test coverage detected