[Python-checkins] bpo-38631: Avoid Py_FatalError() in float.__getformat__() (GH-17232)

Victor Stinner webhook-mailer at python.org
Mon Nov 18 11:39:52 EST 2019


https://github.com/python/cpython/commit/04394df74b3d0783893da7dafa7803a003516402
commit: 04394df74b3d0783893da7dafa7803a003516402
branch: master
author: Victor Stinner <vstinner at python.org>
committer: GitHub <noreply at github.com>
date: 2019-11-18T17:39:48+01:00
summary:

bpo-38631: Avoid Py_FatalError() in float.__getformat__() (GH-17232)

Replace Py_FatalError() with a regular RuntimeError exception in
float.__getformat__().

files:
A Misc/NEWS.d/next/Core and Builtins/2019-11-18-17-10-20.bpo-38631.tRHaAk.rst
M Objects/floatobject.c

diff --git a/Misc/NEWS.d/next/Core and Builtins/2019-11-18-17-10-20.bpo-38631.tRHaAk.rst b/Misc/NEWS.d/next/Core and Builtins/2019-11-18-17-10-20.bpo-38631.tRHaAk.rst
new file mode 100644
index 0000000000000..d05ad05941ecf
--- /dev/null
+++ b/Misc/NEWS.d/next/Core and Builtins/2019-11-18-17-10-20.bpo-38631.tRHaAk.rst	
@@ -0,0 +1,2 @@
+Replace ``Py_FatalError()`` call with a regular :exc:`RuntimeError`
+exception in :meth:`float.__getformat__`.
diff --git a/Objects/floatobject.c b/Objects/floatobject.c
index 8c08866d73725..3f9bbde2abe03 100644
--- a/Objects/floatobject.c
+++ b/Objects/floatobject.c
@@ -1726,7 +1726,8 @@ float___getformat___impl(PyTypeObject *type, const char *typestr)
     case ieee_big_endian_format:
         return PyUnicode_FromString("IEEE, big-endian");
     default:
-        Py_FatalError("insane float_format or double_format");
+        PyErr_SetString(PyExc_RuntimeError,
+                        "insane float_format or double_format");
         return NULL;
     }
 }



More information about the Python-checkins mailing list